EC2 / Client / get_ipam_routing_policy_registration_deltas
get_ipam_routing_policy_registration_deltas¶
- EC2.Client.get_ipam_routing_policy_registration_deltas(**kwargs)¶
Retrieves the history of routing policy registration changes for an IPAM internet registry association. We recommend using pagination to ensure that the operation returns quickly and successfully.
See also: AWS API Documentation
Request Syntax
response = client.get_ipam_routing_policy_registration_deltas( DryRun=True|False, IpamInternetRegistryAssociationId='string', DeltaId='string', StartTime=datetime(2015, 1, 1), EndTime=datetime(2015, 1, 1), ChronologicalOrder='forward'|'reverse', MaxResults=123, NextToken='string' )
- Parameters:
DryRun (boolean) – Checks whether you have the required permissions for the operation, without actually making the request, and provides an error response. If you have the required permissions, the error response is
DryRunOperation. Otherwise, it isUnauthorizedOperation.IpamInternetRegistryAssociationId (string) –
[REQUIRED]
The ID of the IPAM internet registry association.
DeltaId (string) – Filter results to a specific delta ID.
StartTime (datetime) – The start of the time range to filter deltas by.
EndTime (datetime) – The end of the time range to filter deltas by.
ChronologicalOrder (string) – The chronological order to return results in. Valid values:
forward|reverse.MaxResults (integer) – The maximum number of results to return in a single call. If not specified, all available results are returned. To retrieve the remaining results, make another call with the returned
nextTokenvalue.NextToken (string) – The token for the next page of results.
- Return type:
dict
- Returns:
Response Syntax
{ 'IpamRoutingPolicyRegistrationDeltas': [ { 'DeltaId': 'string', 'DeltaJson': 'string', 'State': 'pending'|'published'|'failed', 'StateMessage': 'string' }, ], 'NextToken': 'string' }
Response Structure
(dict) –
IpamRoutingPolicyRegistrationDeltas (list) –
The routing policy registration deltas.
(dict) –
Contains information about a routing policy registration change, including the changes applied and their publication state.
DeltaId (string) –
The unique identifier of the delta.
DeltaJson (string) –
The JSON specification describing the changes applied in this delta.
State (string) –
The state of the delta. Valid values:
pending|published|failed.StateMessage (string) –
A message describing the current state, including error information if the delta failed.
NextToken (string) –
The token to use to retrieve the next page of results.