List Asset Bundle Import Jobs
quicksight_list_asset_bundle_import_jobs | R Documentation |
Lists all asset bundle import jobs that have taken place in the last 14 days¶
Description¶
Lists all asset bundle import jobs that have taken place in the last 14
days. Jobs created more than 14 days ago are deleted forever and are not
returned. If you are using the same job ID for multiple jobs,
list_asset_bundle_import_jobs
only returns the most recent job that
uses the repeated job ID.
Usage¶
Arguments¶
AwsAccountId
[required] The ID of the Amazon Web Services account that the import jobs were executed in.
NextToken
The token for the next set of results, or null if there are no more results.
MaxResults
The maximum number of results to be returned per request.
Value¶
A list with the following syntax:
list(
AssetBundleImportJobSummaryList = list(
list(
JobStatus = "QUEUED_FOR_IMMEDIATE_EXECUTION"|"IN_PROGRESS"|"SUCCESSFUL"|"FAILED"|"FAILED_ROLLBACK_IN_PROGRESS"|"FAILED_ROLLBACK_COMPLETED"|"FAILED_ROLLBACK_ERROR",
Arn = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
AssetBundleImportJobId = "string",
FailureAction = "DO_NOTHING"|"ROLLBACK"
)
),
NextToken = "string",
RequestId = "string",
Status = 123
)