CloudFormation / Paginator / ListExports

ListExports#

class CloudFormation.Paginator.ListExports#
paginator = client.get_paginator('list_exports')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from CloudFormation.Client.list_exports().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters:

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.

  • StartingToken (string) –

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

Return type:

dict

Returns:

Response Syntax

{
    'Exports': [
        {
            'ExportingStackId': 'string',
            'Name': 'string',
            'Value': 'string'
        },
    ],

}

Response Structure

  • (dict) –

    • Exports (list) –

      The output for the ListExports action.

      • (dict) –

        The Export structure describes the exported output values for a stack.

        • ExportingStackId (string) –

          The stack that contains the exported output name and value.

        • Name (string) –

          The name of exported output value. Use this name and the Fn::ImportValue function to import the associated value into other stacks. The name is defined in the Export field in the associated stack’s Outputs section.

        • Value (string) –

          The value of the exported output, such as a resource physical ID. This value is defined in the Export field in the associated stack’s Outputs section.