Proton / Paginator / ListServiceInstanceProvisionedResources
ListServiceInstanceProvisionedResources#
- class Proton.Paginator.ListServiceInstanceProvisionedResources#
paginator = client.get_paginator('list_service_instance_provisioned_resources')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
Proton.Client.list_service_instance_provisioned_resources()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( serviceInstanceName='string', serviceName='string', PaginationConfig={ 'MaxItems': 123, 'StartingToken': 'string' } )
- Parameters:
serviceInstanceName (string) –
[REQUIRED]
The name of the service instance whose provisioned resources you want.
serviceName (string) –
[REQUIRED]
The name of the service that
serviceInstanceName
is associated to.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.StartingToken (string) –
A token to specify where to start paginating. This is the
NextToken
from a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'provisionedResources': [ { 'identifier': 'string', 'name': 'string', 'provisioningEngine': 'CLOUDFORMATION'|'TERRAFORM' }, ], 'NextToken': 'string' }
Response Structure
(dict) –
provisionedResources (list) –
An array of provisioned resources for a service instance.
(dict) –
Detail data for a provisioned resource.
identifier (string) –
The provisioned resource identifier.
name (string) –
The provisioned resource name.
provisioningEngine (string) –
The resource provisioning engine. At this time,
CLOUDFORMATION
can be used for Amazon Web Services-managed provisioning, andTERRAFORM
can be used for self-managed provisioning.For more information, see Self-managed provisioning in the Proton User Guide.
NextToken (string) –
A token to resume pagination.