BedrockAgentCoreControl / Paginator / ListPaymentManagers

ListPaymentManagers

class BedrockAgentCoreControl.Paginator.ListPaymentManagers
paginator = client.get_paginator('list_payment_managers')
paginate(**kwargs)

Creates an iterator that will paginate through responses from BedrockAgentCoreControl.Client.list_payment_managers().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 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.

  • 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

{
    'paymentManagers': [
        {
            'paymentManagerArn': 'string',
            'paymentManagerId': 'string',
            'name': 'string',
            'description': 'string',
            'authorizerType': 'CUSTOM_JWT'|'AWS_IAM',
            'roleArn': 'string',
            'status': 'CREATING'|'UPDATING'|'DELETING'|'READY'|'CREATE_FAILED'|'UPDATE_FAILED'|'DELETE_FAILED',
            'createdAt': datetime(2015, 1, 1),
            'lastUpdatedAt': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • paymentManagers (list) –

      The list of payment manager summaries. For details about the fields in each summary, see the PaymentManagerSummary data type.

      • (dict) –

        Contains summary information about a payment manager.

        • paymentManagerArn (string) –

          The Amazon Resource Name (ARN) of the payment manager.

        • paymentManagerId (string) –

          The unique identifier of the payment manager.

        • name (string) –

          The name of the payment manager.

        • description (string) –

          The description of the payment manager.

        • authorizerType (string) –

          The type of authorizer used by the payment manager.

          • CUSTOM_JWT - Authorize with a bearer token.

          • AWS_IAM - Authorize with your Amazon Web Services IAM credentials.

        • roleArn (string) –

          The Amazon Resource Name (ARN) of the IAM role associated with the payment manager.

        • status (string) –

          The current status of the payment manager. Possible values include CREATING, READY, UPDATING, DELETING, CREATE_FAILED, UPDATE_FAILED, and DELETE_FAILED.

        • createdAt (datetime) –

          The timestamp when the payment manager was created.

        • lastUpdatedAt (datetime) –

          The timestamp when the payment manager was last updated.

    • NextToken (string) –

      A token to resume pagination.