IoT.Paginator.
ListTopicRuleDestinations
¶paginator = client.get_paginator('list_topic_rule_destinations')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from IoT.Client.list_topic_rule_destinations()
.
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.
{
'destinationSummaries': [
{
'arn': 'string',
'status': 'ENABLED'|'IN_PROGRESS'|'DISABLED'|'ERROR'|'DELETING',
'createdAt': datetime(2015, 1, 1),
'lastUpdatedAt': datetime(2015, 1, 1),
'statusReason': 'string',
'httpUrlSummary': {
'confirmationUrl': 'string'
},
'vpcDestinationSummary': {
'subnetIds': [
'string',
],
'securityGroups': [
'string',
],
'vpcId': 'string',
'roleArn': 'string'
}
},
],
'NextToken': 'string'
}
Response Structure
Information about a topic rule destination.
Information about the topic rule destination.
The topic rule destination ARN.
The status of the topic rule destination. Valid values are:
IN_PROGRESS
A topic rule destination was created but has not been confirmed. You can set status
to IN_PROGRESS
by calling UpdateTopicRuleDestination
. Calling UpdateTopicRuleDestination
causes a new confirmation challenge to be sent to your confirmation endpoint.
ENABLED
Confirmation was completed, and traffic to this destination is allowed. You can set status
to DISABLED
by calling UpdateTopicRuleDestination
.
DISABLED
Confirmation was completed, and traffic to this destination is not allowed. You can set status
to ENABLED
by calling UpdateTopicRuleDestination
.
ERROR
Confirmation could not be completed, for example if the confirmation timed out. You can call GetTopicRuleDestination
for details about the error. You can set status
to IN_PROGRESS
by calling UpdateTopicRuleDestination
. Calling UpdateTopicRuleDestination
causes a new confirmation challenge to be sent to your confirmation endpoint.
The date and time when the topic rule destination was created.
The date and time when the topic rule destination was last updated.
The reason the topic rule destination is in the current status.
Information about the HTTP URL.
The URL used to confirm ownership of or access to the HTTP topic rule destination URL.
Information about the virtual private cloud (VPC) connection.
The subnet IDs of the VPC destination.
The security groups of the VPC destination.
The ID of the VPC.
The ARN of a role that has permission to create and attach to elastic network interfaces (ENIs).
A token to resume pagination.