List Asset Bundle Export Jobs
quicksight_list_asset_bundle_export_jobs | R Documentation |
Lists all asset bundle export jobs that have been taken place in the last 14 days¶
Description¶
Lists all asset bundle export jobs that have been 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_export_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 export 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(
AssetBundleExportJobSummaryList = list(
list(
JobStatus = "QUEUED_FOR_IMMEDIATE_EXECUTION"|"IN_PROGRESS"|"SUCCESSFUL"|"FAILED",
Arn = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
AssetBundleExportJobId = "string",
IncludeAllDependencies = TRUE|FALSE,
ExportFormat = "CLOUDFORMATION_JSON"|"QUICKSIGHT_JSON",
IncludePermissions = TRUE|FALSE,
IncludeTags = TRUE|FALSE
)
),
NextToken = "string",
RequestId = "string",
Status = 123
)