NetworkManager.Paginator.
GetCoreNetworkChangeEvents
¶paginator = client.get_paginator('get_core_network_change_events')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from NetworkManager.Client.get_core_network_change_events()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
CoreNetworkId='string',
PolicyVersionId=123,
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
[REQUIRED]
The ID of a core network.
[REQUIRED]
The ID of the policy version.
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.
dict
Response Syntax
{
'CoreNetworkChangeEvents': [
{
'Type': 'CORE_NETWORK_SEGMENT'|'CORE_NETWORK_EDGE'|'ATTACHMENT_MAPPING'|'ATTACHMENT_ROUTE_PROPAGATION'|'ATTACHMENT_ROUTE_STATIC'|'CORE_NETWORK_CONFIGURATION'|'SEGMENTS_CONFIGURATION'|'SEGMENT_ACTIONS_CONFIGURATION'|'ATTACHMENT_POLICIES_CONFIGURATION',
'Action': 'ADD'|'MODIFY'|'REMOVE',
'IdentifierPath': 'string',
'EventTime': datetime(2015, 1, 1),
'Status': 'NOT_STARTED'|'IN_PROGRESS'|'COMPLETE'|'FAILED',
'Values': {
'EdgeLocation': 'string',
'SegmentName': 'string',
'AttachmentId': 'string',
'Cidr': 'string'
}
},
],
}
Response Structure
(dict) --
CoreNetworkChangeEvents (list) --
The response to GetCoreNetworkChangeEventsRequest
.
(dict) --
Describes a core network change event. This can be a change to a segment, attachment, route, etc.
Type (string) --
Describes the type of change event.
Action (string) --
The action taken for the change event.
IdentifierPath (string) --
Uniquely identifies the path for a change within the changeset. For example, the IdentifierPath
for a core network segment change might be "CORE_NETWORK_SEGMENT/us-east-1/devsegment"
.
EventTime (datetime) --
The timestamp for an event change in status.
Status (string) --
The status of the core network change event.
Values (dict) --
Details of the change event.
EdgeLocation (string) --
The edge location for the core network change event.
SegmentName (string) --
The segment name if the change event is associated with a segment.
AttachmentId (string) --
The ID of the attachment if the change event is associated with an attachment.
Cidr (string) --
For a STATIC_ROUTE
event, this is the IP address.