List Audience Export Jobs
cleanroomsml_list_audience_export_jobs | R Documentation |
Returns a list of the audience export jobs¶
Description¶
Returns a list of the audience export jobs.
Usage¶
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.
audienceGenerationJobArn
The Amazon Resource Name (ARN) of the audience generation job that you are interested in.
Value¶
A list with the following syntax:
list(
nextToken = "string",
audienceExportJobs = list(
list(
createTime = as.POSIXct(
"2015-01-01"
),
updateTime = as.POSIXct(
"2015-01-01"
),
name = "string",
audienceGenerationJobArn = "string",
audienceSize = list(
type = "ABSOLUTE"|"PERCENTAGE",
value = 123
),
description = "string",
status = "CREATE_PENDING"|"CREATE_IN_PROGRESS"|"CREATE_FAILED"|"ACTIVE",
statusDetails = list(
statusCode = "string",
message = "string"
),
outputLocation = "string"
)
)
)