Skip to main content

ipam_routing_policy_registration_deltas

Creates, updates, deletes, gets or lists an ipam_routing_policy_registration_deltas resource.

Overview

Nameipam_routing_policy_registration_deltas
TypeResource
Idaws.ec2.ipam_routing_policy_registration_deltas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
delta_idstringThe unique identifier of the delta.
delta_jsonstringThe JSON specification describing the changes applied in this delta.
statestringThe state of the delta. Valid values: pending | published | failed.
state_messagestringA message describing the current state, including error information if the delta failed.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_ipam_routing_policy_registration_deltasselectIpamInternetRegistryAssociationId, regionDryRun, DeltaId, StartTime, EndTime, ChronologicalOrder, MaxResults, NextTokenRetrieves 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
IpamInternetRegistryAssociationIdstringThe ID of the IPAM internet registry association.
regionstringAWS region (default: us-east-1)
ChronologicalOrderstringThe chronological order to return results in. Valid values: forward | reverse.
DeltaIdstringFilter results to a specific delta ID.
DryRunbooleanChecks 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 is UnauthorizedOperation.
EndTimestring (date-time)The end of the time range to filter deltas by.
MaxResultsintegerThe 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 nextToken value.
NextTokenstringThe token for the next page of results.
StartTimestring (date-time)The start of the time range to filter deltas by.

SELECT examples

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.

SELECT
delta_id,
delta_json,
state,
state_message
FROM aws.ec2.ipam_routing_policy_registration_deltas
WHERE IpamInternetRegistryAssociationId = '{{ IpamInternetRegistryAssociationId }}' -- required
AND region = '{{ region }}' -- required
AND DryRun = '{{ DryRun }}'
AND DeltaId = '{{ DeltaId }}'
AND StartTime = '{{ StartTime }}'
AND EndTime = '{{ EndTime }}'
AND ChronologicalOrder = '{{ ChronologicalOrder }}'
AND MaxResults = '{{ MaxResults }}'
AND NextToken = '{{ NextToken }}'
;