SSMIncidents / Client / list_response_plans

list_response_plans#

SSMIncidents.Client.list_response_plans(**kwargs)#

Lists all response plans in your account.

See also: AWS API Documentation

Request Syntax

response = client.list_response_plans(
    maxResults=123,
    nextToken='string'
)
Parameters:
  • maxResults (integer) – The maximum number of response plans per page.

  • nextToken (string) – The pagination token for the next set of items to return. (You received this token from a previous call.)

Return type:

dict

Returns:

Response Syntax

{
    'nextToken': 'string',
    'responsePlanSummaries': [
        {
            'arn': 'string',
            'displayName': 'string',
            'name': 'string'
        },
    ]
}

Response Structure

  • (dict) –

    • nextToken (string) –

      The pagination token to use when requesting the next set of items. If there are no additional items to return, the string is null.

    • responsePlanSummaries (list) –

      Details of each response plan.

      • (dict) –

        Details of the response plan that are used when creating an incident.

        • arn (string) –

          The Amazon Resource Name (ARN) of the response plan.

        • displayName (string) –

          The human readable name of the response plan. This can include spaces.

        • name (string) –

          The name of the response plan. This can’t include spaces.

Exceptions

  • SSMIncidents.Client.exceptions.ThrottlingException

  • SSMIncidents.Client.exceptions.AccessDeniedException

  • SSMIncidents.Client.exceptions.ValidationException

  • SSMIncidents.Client.exceptions.InternalServerException