ResilienceHubV2 / Paginator / ListFailureModeFindings

ListFailureModeFindings

class ResilienceHubV2.Paginator.ListFailureModeFindings
paginator = client.get_paginator('list_failure_mode_findings')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ResilienceHubV2.Client.list_failure_mode_findings().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    serviceArn='string',
    severity='LOW'|'MEDIUM'|'HIGH',
    failureCategory='SHARED_FATE'|'EXCESSIVE_LOAD'|'EXCESSIVE_LATENCY'|'MISCONFIGURATION_AND_BUGS'|'SINGLE_POINT_OF_FAILURE',
    status='OPEN'|'RESOLVED'|'IRRELEVANT',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • serviceArn (string) –

    [REQUIRED]

    ARN identifier.

  • severity (string) – Filter findings by severity.

  • failureCategory (string) – Filter findings by failure category.

  • status (string) – Filter findings by status.

  • PaginationConfig (dict) –

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) –

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) –

      The size of each page.

    • StartingToken (string) –

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type:

dict

Returns:

Response Syntax

{
    'findingsSummary': [
        {
            'serviceArn': 'string',
            'findingId': 'string',
            'name': 'string',
            'description': 'string',
            'failureCategory': 'SHARED_FATE'|'EXCESSIVE_LOAD'|'EXCESSIVE_LATENCY'|'MISCONFIGURATION_AND_BUGS'|'SINGLE_POINT_OF_FAILURE',
            'severity': 'LOW'|'MEDIUM'|'HIGH',
            'status': 'OPEN'|'RESOLVED'|'IRRELEVANT',
            'policyComponent': 'AVAILABILITY_SLO'|'MULTI_AZ_DISASTER_RECOVERY'|'MULTI_REGION_DISASTER_RECOVERY'|'DATA_RECOVERY',
            'updatedAt': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • findingsSummary (list) –

      The list of finding summaries.

      • (dict) –

        Contains summary information about a finding.

        • serviceArn (string) –

          ARN identifier.

        • findingId (string) –

          The unique identifier of the finding.

        • name (string) –

          The name of the finding.

        • description (string) –

          Resource description.

        • failureCategory (string) –

          The failure category of the finding.

        • severity (string) –

          The severity of the finding.

        • status (string) –

          The current status of the finding.

        • policyComponent (string) –

          The policy component associated with the finding.

        • updatedAt (datetime) –

          The timestamp when the finding was last updated.

    • NextToken (string) –

      A token to resume pagination.