IoT.Paginator.
ListProvisioningTemplates
¶paginator = client.get_paginator('list_provisioning_templates')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from IoT.Client.list_provisioning_templates()
.
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.
{
'templates': [
{
'templateArn': 'string',
'templateName': 'string',
'description': 'string',
'creationDate': datetime(2015, 1, 1),
'lastModifiedDate': datetime(2015, 1, 1),
'enabled': True|False,
'type': 'FLEET_PROVISIONING'|'JITP'
},
],
'NextToken': 'string'
}
Response Structure
A list of provisioning templates
A summary of information about a provisioning template.
The ARN of the provisioning template.
The name of the provisioning template.
The description of the provisioning template.
The date when the provisioning template summary was created.
The date when the provisioning template summary was last modified.
True if the fleet provision template is enabled, otherwise false.
The type you define in a provisioning template. You can create a template with only one type. You can't change the template type after its creation. The default value is FLEET_PROVISIONING
. For more information about provisioning template, see: Provisioning template.
A token to resume pagination.