DeviceFarm.Paginator.
ListVPCEConfigurations
¶paginator = client.get_paginator('list_vpce_configurations')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from DeviceFarm.Client.list_vpce_configurations()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
A dictionary that provides parameters to control pagination.
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.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
{
'vpceConfigurations': [
{
'arn': 'string',
'vpceConfigurationName': 'string',
'vpceServiceName': 'string',
'serviceDnsName': 'string',
'vpceConfigurationDescription': 'string'
},
],
'NextToken': 'string'
}
Response Structure
An array of VPCEConfiguration
objects that contain information about your VPC endpoint configuration.
Represents an Amazon Virtual Private Cloud (VPC) endpoint configuration.
The Amazon Resource Name (ARN) of the VPC endpoint configuration.
The friendly name you give to your VPC endpoint configuration to manage your configurations more easily.
The name of the VPC endpoint service running in your AWS account that you want Device Farm to test.
The DNS name that maps to the private IP address of the service you want to access.
An optional description that provides details about your VPC endpoint configuration.
A token to resume pagination.