Update Configured Audience Model
cleanroomsml_update_configured_audience_model | R Documentation |
Provides the information necessary to update a configured audience model¶
Description¶
Provides the information necessary to update a configured audience model. Updates that impact audience generation jobs take effect when a new job starts, but do not impact currently running jobs.
Usage¶
cleanroomsml_update_configured_audience_model(
configuredAudienceModelArn, outputConfig, audienceModelArn,
sharedAudienceMetrics, minMatchingSeedSize, audienceSizeConfig,
description)
Arguments¶
configuredAudienceModelArn
[required] The Amazon Resource Name (ARN) of the configured audience model that you want to update.
outputConfig
The new output configuration.
audienceModelArn
The Amazon Resource Name (ARN) of the new audience model that you want to use.
sharedAudienceMetrics
The new value for whether to share audience metrics.
minMatchingSeedSize
The minimum number of users from the seed audience that must match with users in the training data of the audience model.
audienceSizeConfig
The new audience size configuration.
description
The new description of the configured audience model.
Value¶
A list with the following syntax:
Request syntax¶
svc$update_configured_audience_model(
configuredAudienceModelArn = "string",
outputConfig = list(
destination = list(
s3Destination = list(
s3Uri = "string"
)
),
roleArn = "string"
),
audienceModelArn = "string",
sharedAudienceMetrics = list(
"ALL"|"NONE"
),
minMatchingSeedSize = 123,
audienceSizeConfig = list(
audienceSizeType = "ABSOLUTE"|"PERCENTAGE",
audienceSizeBins = list(
123
)
),
description = "string"
)