ListManagedResources

class ARCZonalShift.Paginator.ListManagedResources
paginator = client.get_paginator('list_managed_resources')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ARCZonalShift.Client.list_managed_resources().

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
{
    'items': [
        {
            'arn': 'string',
            'availabilityZones': [
                'string',
            ],
            'name': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --
    • items (list) --

      The items in the response list.

      • (dict) --

        A complex structure for a managed resource in an account.

        A managed resource is a Network Load Balancer or Application Load Balancer that has been registered with Route 53 ARC by Elastic Load Balancing. You can start a zonal shift in Route 53 ARC for a managed resource to temporarily move traffic for the resource away from an Availability Zone in an AWS Region.

        Note

        At this time, you can only start a zonal shift for Network Load Balancers and Application Load Balancers with cross-zone load balancing turned off.

        • arn (string) --

          The Amazon Resource Name (ARN) for the managed resource.

        • availabilityZones (list) --

          The Availability Zones that a resource is deployed in.

          • (string) --
        • name (string) --

          The name of the managed resource.

    • NextToken (string) --

      A token to resume pagination.