Create Configured Model Algorithm Association
cleanroomsml_create_configured_model_algorithm_association | R Documentation |
Associates a configured model algorithm to a collaboration for use by any member of the collaboration¶
Description¶
Associates a configured model algorithm to a collaboration for use by any member of the collaboration.
Usage¶
cleanroomsml_create_configured_model_algorithm_association(
membershipIdentifier, configuredModelAlgorithmArn, name, description,
privacyConfiguration, tags)
Arguments¶
membershipIdentifier |
[required] The membership ID of the member who is associating this configured model algorithm. |
configuredModelAlgorithmArn |
[required] The Amazon Resource Name (ARN) of the configured model algorithm that you want to associate. |
name |
[required] The name of the configured model algorithm association. |
description |
The description of the configured model algorithm association. |
privacyConfiguration |
Specifies the privacy configuration information for the configured model algorithm association. This information includes the maximum data size that can be exported. |
tags |
The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. The following basic restrictions apply to tags:
|
Value¶
A list with the following syntax:
list(
configuredModelAlgorithmAssociationArn = "string"
)
Request syntax¶
svc$create_configured_model_algorithm_association(
membershipIdentifier = "string",
configuredModelAlgorithmArn = "string",
name = "string",
description = "string",
privacyConfiguration = list(
policies = list(
trainedModels = list(
containerLogs = list(
list(
allowedAccountIds = list(
"string"
),
filterPattern = "string"
)
),
containerMetrics = list(
noiseLevel = "HIGH"|"MEDIUM"|"LOW"|"NONE"
)
),
trainedModelExports = list(
maxSize = list(
unit = "GB",
value = 123.0
),
filesToExport = list(
"MODEL"|"OUTPUT"
)
),
trainedModelInferenceJobs = list(
containerLogs = list(
list(
allowedAccountIds = list(
"string"
),
filterPattern = "string"
)
),
maxOutputSize = list(
unit = "GB",
value = 123.0
)
)
)
),
tags = list(
"string"
)
)