Backup / Client / list_copy_job_summaries

list_copy_job_summaries#

Backup.Client.list_copy_job_summaries(**kwargs)#

This request obtains a list of copy jobs created or running within the the most recent 30 days. You can include parameters AccountID, State, ResourceType, MessageCategory, AggregationPeriod, MaxResults, or NextToken to filter results.

This request returns a summary that contains Region, Account, State, RestourceType, MessageCategory, StartTime, EndTime, and Count of included jobs.

See also: AWS API Documentation

Request Syntax

response = client.list_copy_job_summaries(
    AccountId='string',
    State='CREATED'|'RUNNING'|'ABORTING'|'ABORTED'|'COMPLETING'|'COMPLETED'|'FAILING'|'FAILED'|'PARTIAL'|'AGGREGATE_ALL'|'ANY',
    ResourceType='string',
    MessageCategory='string',
    AggregationPeriod='ONE_DAY'|'SEVEN_DAYS'|'FOURTEEN_DAYS',
    MaxResults=123,
    NextToken='string'
)
Parameters:
  • AccountId (string) –

    Returns the job count for the specified account.

    If the request is sent from a member account or an account not part of Amazon Web Services Organizations, jobs within requestor’s account will be returned.

    Root, admin, and delegated administrator accounts can use the value ANY to return job counts from every account in the organization.

    AGGREGATE_ALL aggregates job counts from all accounts within the authenticated organization, then returns the sum.

  • State (string) –

    This parameter returns the job count for jobs with the specified state.

    The the value ANY returns count of all states.

    AGGREGATE_ALL aggregates job counts for all states and returns the sum.

  • ResourceType (string) –

    Returns the job count for the specified resource type. Use request GetSupportedResourceTypes to obtain strings for supported resource types.

    The the value ANY returns count of all resource types.

    AGGREGATE_ALL aggregates job counts for all resource types and returns the sum.

    The type of Amazon Web Services resource to be backed up; for example, an Amazon Elastic Block Store (Amazon EBS) volume or an Amazon Relational Database Service (Amazon RDS) database.

  • MessageCategory (string) –

    This parameter returns the job count for the specified message category.

    Example accepted strings include AccessDenied, Success, and InvalidParameters. See Monitoring for a list of accepted MessageCategory strings.

    The the value ANY returns count of all message categories.

    AGGREGATE_ALL aggregates job counts for all message categories and returns the sum.

  • AggregationPeriod (string) –

    This is the period that sets the boundaries for returned results.

    • ONE_DAY for daily job count for the prior 14 days.

    • SEVEN_DAYS for the aggregated job count for the prior 7 days.

    • FOURTEEN_DAYS for aggregated job count for prior 14 days.

  • MaxResults (integer) –

    This parameter sets the maximum number of items to be returned.

    The value is an integer. Range of accepted values is from 1 to 500.

  • NextToken (string) – The next item following a partial list of returned resources. For example, if a request is made to return MaxResults number of resources, NextToken allows you to return more items in your list starting at the location pointed to by the next token.

Return type:

dict

Returns:

Response Syntax

{
    'CopyJobSummaries': [
        {
            'Region': 'string',
            'AccountId': 'string',
            'State': 'CREATED'|'RUNNING'|'ABORTING'|'ABORTED'|'COMPLETING'|'COMPLETED'|'FAILING'|'FAILED'|'PARTIAL'|'AGGREGATE_ALL'|'ANY',
            'ResourceType': 'string',
            'MessageCategory': 'string',
            'Count': 123,
            'StartTime': datetime(2015, 1, 1),
            'EndTime': datetime(2015, 1, 1)
        },
    ],
    'AggregationPeriod': 'string',
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • CopyJobSummaries (list) –

      This return shows a summary that contains Region, Account, State, ResourceType, MessageCategory, StartTime, EndTime, and Count of included jobs.

      • (dict) –

        This is a summary of copy jobs created or running within the most recent 30 days.

        The returned summary may contain the following: Region, Account, State, RestourceType, MessageCategory, StartTime, EndTime, and Count of included jobs.

        • Region (string) –

          This is the Amazon Web Services Regions within the job summary.

        • AccountId (string) –

          The account ID that owns the jobs within the summary.

        • State (string) –

          This value is job count for jobs with the specified state.

        • ResourceType (string) –

          This value is the job count for the specified resource type. The request GetSupportedResourceTypes returns strings for supported resource types

        • MessageCategory (string) –

          This parameter is the job count for the specified message category.

          Example strings include AccessDenied, Success, and InvalidParameters. See Monitoring for a list of MessageCategory strings.

          The the value ANY returns count of all message categories.

          AGGREGATE_ALL aggregates job counts for all message categories and returns the sum.

        • Count (integer) –

          The value as a number of jobs in a job summary.

        • StartTime (datetime) –

          The value of time in number format of a job start time.

          This value is the time in Unix format, Coordinated Universal Time (UTC), and accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.

        • EndTime (datetime) –

          The value of time in number format of a job end time.

          This value is the time in Unix format, Coordinated Universal Time (UTC), and accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.

    • AggregationPeriod (string) –

      This is the period that sets the boundaries for returned results.

      • ONE_DAY for daily job count for the prior 14 days.

      • SEVEN_DAYS for the aggregated job count for the prior 7 days.

      • FOURTEEN_DAYS for aggregated job count for prior 14 days.

    • NextToken (string) –

      The next item following a partial list of returned resources. For example, if a request is made to return MaxResults number of resources, NextToken allows you to return more items in your list starting at the location pointed to by the next token.

Exceptions