List Configured Audience Models
| cleanroomsml_list_configured_audience_models | R Documentation | 
Returns a list of the configured audience models¶
Description¶
Returns a list of the configured audience models.
Usage¶
cleanroomsml_list_configured_audience_models(nextToken, maxResults)
Arguments¶
| nextToken | The token value retrieved from a previous call to access the next page of results. | 
| maxResults | The maximum size of the results that is returned per call. | 
Value¶
A list with the following syntax:
list(
  nextToken = "string",
  configuredAudienceModels = list(
    list(
      createTime = as.POSIXct(
        "2015-01-01"
      ),
      updateTime = as.POSIXct(
        "2015-01-01"
      ),
      name = "string",
      audienceModelArn = "string",
      outputConfig = list(
        destination = list(
          s3Destination = list(
            s3Uri = "string"
          )
        ),
        roleArn = "string"
      ),
      description = "string",
      configuredAudienceModelArn = "string",
      status = "ACTIVE"
    )
  )
)
Request syntax¶
svc$list_configured_audience_models(
  nextToken = "string",
  maxResults = 123
)