VPCLattice / Paginator / ListServiceNetworkVpcAssociations

ListServiceNetworkVpcAssociations#

class VPCLattice.Paginator.ListServiceNetworkVpcAssociations#
paginator = client.get_paginator('list_service_network_vpc_associations')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from VPCLattice.Client.list_service_network_vpc_associations().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    serviceNetworkIdentifier='string',
    vpcIdentifier='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • serviceNetworkIdentifier (string) – The ID or Amazon Resource Name (ARN) of the service network.

  • vpcIdentifier (string) – The ID or Amazon Resource Name (ARN) of the VPC.

  • 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

{
    'items': [
        {
            'arn': 'string',
            'createdAt': datetime(2015, 1, 1),
            'createdBy': 'string',
            'id': 'string',
            'lastUpdatedAt': datetime(2015, 1, 1),
            'serviceNetworkArn': 'string',
            'serviceNetworkId': 'string',
            'serviceNetworkName': 'string',
            'status': 'CREATE_IN_PROGRESS'|'ACTIVE'|'UPDATE_IN_PROGRESS'|'DELETE_IN_PROGRESS'|'CREATE_FAILED'|'DELETE_FAILED'|'UPDATE_FAILED',
            'vpcId': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • items (list) –

      Information about the associations.

      • (dict) –

        Summary information about an association between a service network and a VPC.

        • arn (string) –

          The Amazon Resource Name (ARN) of the association.

        • createdAt (datetime) –

          The date and time that the association was created, specified in ISO-8601 format.

        • createdBy (string) –

          The account that created the association.

        • id (string) –

          The ID of the association.

        • lastUpdatedAt (datetime) –

          The date and time that the association was last updated, specified in ISO-8601 format.

        • serviceNetworkArn (string) –

          The Amazon Resource Name (ARN) of the service network.

        • serviceNetworkId (string) –

          The ID of the service network.

        • serviceNetworkName (string) –

          The name of the service network.

        • status (string) –

          The status.

        • vpcId (string) –

          The ID of the VPC.

    • NextToken (string) –

      A token to resume pagination.