VPCLattice / Paginator / ListResourceConfigurations
ListResourceConfigurations#
- class VPCLattice.Paginator.ListResourceConfigurations#
paginator = client.get_paginator('list_resource_configurations')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
VPCLattice.Client.list_resource_configurations()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( resourceConfigurationGroupIdentifier='string', resourceGatewayIdentifier='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
resourceConfigurationGroupIdentifier (string) – The ID of the group resource configuration.
resourceGatewayIdentifier (string) – The ID of the resource gateway for the resource configuration.
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': [ { 'amazonManaged': True|False, 'arn': 'string', 'createdAt': datetime(2015, 1, 1), 'id': 'string', 'lastUpdatedAt': datetime(2015, 1, 1), 'name': 'string', 'resourceConfigurationGroupId': 'string', 'resourceGatewayId': 'string', 'status': 'ACTIVE'|'CREATE_IN_PROGRESS'|'UPDATE_IN_PROGRESS'|'DELETE_IN_PROGRESS'|'CREATE_FAILED'|'UPDATE_FAILED'|'DELETE_FAILED', 'type': 'GROUP'|'CHILD'|'SINGLE'|'ARN' }, ], 'NextToken': 'string' }
Response Structure
(dict) –
items (list) –
Information about the resource configurations.
(dict) –
Summary information about a resource configuration.
amazonManaged (boolean) –
Indicates whether the resource configuration was created and is managed by Amazon.
arn (string) –
The Amazon Resource Name (ARN) of the resource configuration.
createdAt (datetime) –
The date and time that the resource configuration was created, in ISO-8601 format.
id (string) –
The ID of the resource configuration.
lastUpdatedAt (datetime) –
The most recent date and time that the resource configuration was updated, in ISO-8601 format.
name (string) –
The name of the resource configuration.
resourceConfigurationGroupId (string) –
The ID of the group resource configuration.
resourceGatewayId (string) –
The ID of the resource gateway.
status (string) –
The status of the resource configuration.
type (string) –
The type of resource configuration.
SINGLE
- A single resource.GROUP
- A group of resources.CHILD
- A single resource that is part of a group resource configuration.ARN
- An Amazon Web Services resource.
NextToken (string) –
A token to resume pagination.