QuickSight / Client / list_asset_bundle_export_jobs

list_asset_bundle_export_jobs#

QuickSight.Client.list_asset_bundle_export_jobs(**kwargs)#

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, ListAssetBundleExportJobs only returns the most recent job that uses the repeated job ID.

See also: AWS API Documentation

Request Syntax

response = client.list_asset_bundle_export_jobs(
    AwsAccountId='string',
    NextToken='string',
    MaxResults=123
)
Parameters:
  • AwsAccountId (string) –

    [REQUIRED]

    The ID of the Amazon Web Services account that the export jobs were executed in.

  • NextToken (string) – The token for the next set of results, or null if there are no more results.

  • MaxResults (integer) – The maximum number of results to be returned per request.

Return type:

dict

Returns:

Response Syntax

{
    'AssetBundleExportJobSummaryList': [
        {
            'JobStatus': 'QUEUED_FOR_IMMEDIATE_EXECUTION'|'IN_PROGRESS'|'SUCCESSFUL'|'FAILED',
            'Arn': 'string',
            'CreatedTime': datetime(2015, 1, 1),
            'AssetBundleExportJobId': 'string',
            'IncludeAllDependencies': True|False,
            'ExportFormat': 'CLOUDFORMATION_JSON'|'QUICKSIGHT_JSON',
            'IncludePermissions': True|False,
            'IncludeTags': True|False
        },
    ],
    'NextToken': 'string',
    'RequestId': 'string',
    'Status': 123
}

Response Structure

  • (dict) –

    • AssetBundleExportJobSummaryList (list) –

      A list of export job summaries.

      • (dict) –

        A summary of the export job that includes details of the job’s configuration and its current status.

        • JobStatus (string) –

          The current status of the export job.

        • Arn (string) –

          The ARN of the export job.

        • CreatedTime (datetime) –

          The time that the export job was created.

        • AssetBundleExportJobId (string) –

          The ID of the export job.

        • IncludeAllDependencies (boolean) –

          The flag that determines the inclusion of resource dependencies in the returned asset bundle.

        • ExportFormat (string) –

          The format for the export job.

        • IncludePermissions (boolean) –

          The flag that determines the inclusion of permissions associated with each resource ARN.

        • IncludeTags (boolean) –

          The flag that determines the inclusion of tags associated with each resource ARN.

    • NextToken (string) –

      The token for the next set of results, or null if there are no more results.

    • RequestId (string) –

      The Amazon Web Services request ID for this operation.

    • Status (integer) –

      The HTTP status of the request.

Exceptions

  • QuickSight.Client.exceptions.UnsupportedUserEditionException

  • QuickSight.Client.exceptions.ThrottlingException

  • QuickSight.Client.exceptions.AccessDeniedException

  • QuickSight.Client.exceptions.InvalidNextTokenException

  • QuickSight.Client.exceptions.ResourceNotFoundException