Create Configured Audience Model
| cleanroomsml_create_configured_audience_model | R Documentation | 
Defines the information necessary to create a configured audience model¶
Description¶
Defines the information necessary to create a configured audience model.
Usage¶
cleanroomsml_create_configured_audience_model(name, audienceModelArn,
  outputConfig, description, sharedAudienceMetrics, minMatchingSeedSize,
  audienceSizeConfig, tags, childResourceTagOnCreatePolicy)
Arguments¶
| name | [required] The name of the configured audience model. | 
| audienceModelArn | [required] The Amazon Resource Name (ARN) of the audience model to use for the configured audience model. | 
| outputConfig | [required] Configure the Amazon S3 location and IAM Role for
audiences created using this configured audience model. Each audience
will have a unique location. The IAM Role must have
 | 
| description | The description of the configured audience model. | 
| sharedAudienceMetrics | [required] Whether audience metrics are shared. | 
| minMatchingSeedSize | The minimum number of users from the seed audience that must match with users in the training data of the audience model. The default value is 500. | 
| audienceSizeConfig | Configure the list of output sizes of audiences that can be
created using this configured audience model. A request to
 | 
| 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: 
 | 
| childResourceTagOnCreatePolicy | Configure how the service tags audience generation jobs created
using this configured audience model. If you specify  When the client is in a different account than the configured audience model, the tags from the client are never applied to a resource in the caller's account. | 
Value¶
A list with the following syntax:
list(
  configuredAudienceModelArn = "string"
)
Request syntax¶
svc$create_configured_audience_model(
  name = "string",
  audienceModelArn = "string",
  outputConfig = list(
    destination = list(
      s3Destination = list(
        s3Uri = "string"
      )
    ),
    roleArn = "string"
  ),
  description = "string",
  sharedAudienceMetrics = list(
    "ALL"|"NONE"
  ),
  minMatchingSeedSize = 123,
  audienceSizeConfig = list(
    audienceSizeType = "ABSOLUTE"|"PERCENTAGE",
    audienceSizeBins = list(
      123
    )
  ),
  tags = list(
    "string"
  ),
  childResourceTagOnCreatePolicy = "FROM_PARENT_RESOURCE"|"NONE"
)