List Audience Generation Jobs
cleanroomsml_list_audience_generation_jobs | R Documentation |
Returns a list of audience generation jobs¶
Description¶
Returns a list of audience generation jobs.
Usage¶
cleanroomsml_list_audience_generation_jobs(nextToken, maxResults,
configuredAudienceModelArn, collaborationId)
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.
configuredAudienceModelArn
The Amazon Resource Name (ARN) of the configured audience model that was used for the audience generation jobs that you are interested in.
collaborationId
The identifier of the collaboration that contains the audience generation jobs that you are interested in.
Value¶
A list with the following syntax:
list(
nextToken = "string",
audienceGenerationJobs = list(
list(
createTime = as.POSIXct(
"2015-01-01"
),
updateTime = as.POSIXct(
"2015-01-01"
),
audienceGenerationJobArn = "string",
name = "string",
description = "string",
status = "CREATE_PENDING"|"CREATE_IN_PROGRESS"|"CREATE_FAILED"|"ACTIVE"|"DELETE_PENDING"|"DELETE_IN_PROGRESS"|"DELETE_FAILED",
configuredAudienceModelArn = "string",
collaborationId = "string",
startedBy = "string"
)
)
)