Synthetics / Client / describe_canaries_last_run

describe_canaries_last_run#

Synthetics.Client.describe_canaries_last_run(**kwargs)#

Use this operation to see information from the most recent run of each canary that you have created.

This operation supports resource-level authorization using an IAM policy and the Names parameter. If you specify the Names parameter, the operation is successful only if you have authorization to view all the canaries that you specify in your request. If you do not have permission to view any of the canaries, the request fails with a 403 response.

You are required to use the Names parameter if you are logged on to a user or role that has an IAM policy that restricts which canaries that you are allowed to view. For more information, see Limiting a user to viewing specific canaries.

See also: AWS API Documentation

Request Syntax

response = client.describe_canaries_last_run(
    NextToken='string',
    MaxResults=123,
    Names=[
        'string',
    ]
)
Parameters:
  • NextToken (string) – A token that indicates that there is more data available. You can use this token in a subsequent DescribeCanariesLastRun operation to retrieve the next set of results.

  • MaxResults (integer) – Specify this parameter to limit how many runs are returned each time you use the DescribeLastRun operation. If you omit this parameter, the default of 100 is used.

  • Names (list) –

    Use this parameter to return only canaries that match the names that you specify here. You can specify as many as five canary names.

    If you specify this parameter, the operation is successful only if you have authorization to view all the canaries that you specify in your request. If you do not have permission to view any of the canaries, the request fails with a 403 response.

    You are required to use the Names parameter if you are logged on to a user or role that has an IAM policy that restricts which canaries that you are allowed to view. For more information, see Limiting a user to viewing specific canaries.

    • (string) –

Return type:

dict

Returns:

Response Syntax

{
    'CanariesLastRun': [
        {
            'CanaryName': 'string',
            'LastRun': {
                'Id': 'string',
                'Name': 'string',
                'Status': {
                    'State': 'RUNNING'|'PASSED'|'FAILED',
                    'StateReason': 'string',
                    'StateReasonCode': 'CANARY_FAILURE'|'EXECUTION_FAILURE'
                },
                'Timeline': {
                    'Started': datetime(2015, 1, 1),
                    'Completed': datetime(2015, 1, 1)
                },
                'ArtifactS3Location': 'string'
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • CanariesLastRun (list) –

      An array that contains the information from the most recent run of each canary.

      • (dict) –

        This structure contains information about the most recent run of a single canary.

        • CanaryName (string) –

          The name of the canary.

        • LastRun (dict) –

          The results from this canary’s most recent run.

          • Id (string) –

            A unique ID that identifies this canary run.

          • Name (string) –

            The name of the canary.

          • Status (dict) –

            The status of this run.

            • State (string) –

              The current state of the run.

            • StateReason (string) –

              If run of the canary failed, this field contains the reason for the error.

            • StateReasonCode (string) –

              If this value is CANARY_FAILURE, an exception occurred in the canary code. If this value is EXECUTION_FAILURE, an exception occurred in CloudWatch Synthetics.

          • Timeline (dict) –

            A structure that contains the start and end times of this run.

            • Started (datetime) –

              The start time of the run.

            • Completed (datetime) –

              The end time of the run.

          • ArtifactS3Location (string) –

            The location where the canary stored artifacts from the run. Artifacts include the log file, screenshots, and HAR files.

    • NextToken (string) –

      A token that indicates that there is more data available. You can use this token in a subsequent DescribeCanariesLastRun operation to retrieve the next set of results.

Exceptions