ipam_routing_policy_registration_deltas
Creates, updates, deletes, gets or lists an ipam_routing_policy_registration_deltas resource.
Overview
| Name | ipam_routing_policy_registration_deltas |
| Type | Resource |
| Id | aws.ec2.ipam_routing_policy_registration_deltas |
Fields
The following fields are returned by SELECT queries:
- get_ipam_routing_policy_registration_deltas
| Name | Datatype | Description |
|---|---|---|
delta_id | string | The unique identifier of the delta. |
delta_json | string | The JSON specification describing the changes applied in this delta. |
state | string | The state of the delta. Valid values: pending | published | failed. |
state_message | string | A message describing the current state, including error information if the delta failed. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_ipam_routing_policy_registration_deltas | select | IpamInternetRegistryAssociationId, region | DryRun, DeltaId, StartTime, EndTime, ChronologicalOrder, MaxResults, NextToken | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
IpamInternetRegistryAssociationId | string | The ID of the IPAM internet registry association. |
region | string | AWS region (default: us-east-1) |
ChronologicalOrder | string | The chronological order to return results in. Valid values: forward | reverse. |
DeltaId | string | Filter results to a specific delta ID. |
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 is UnauthorizedOperation. |
EndTime | string (date-time) | The end of the time range to filter deltas by. |
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 nextToken value. |
NextToken | string | The token for the next page of results. |
StartTime | string (date-time) | The start of the time range to filter deltas by. |
SELECT examples
- get_ipam_routing_policy_registration_deltas
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 }}'
;