ipam_route_protection_findings
Creates, updates, deletes, gets or lists an ipam_route_protection_findings resource.
Overview
| Name | ipam_route_protection_findings |
| Type | Resource |
| Id | aws.ec2.ipam_route_protection_findings |
Fields
The following fields are returned by SELECT queries:
- get_ipam_route_protection_findings
| Name | Datatype | Description |
|---|---|---|
ipam_id | string | The ID of the IPAM. |
next_token | string | The token to use to retrieve the next page of results. |
route_protection_findings | string | The route protection findings. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_ipam_route_protection_findings | select | IpamId, region | DryRun, Filter, NextToken, MaxResults | Retrieves route protection findings for an IPAM. Route protection findings show the Resource Public Key Infrastructure (RPKI) validation status of your Bring Your Own IP (BYOIP) routes. Findings identify routes that have valid, invalid, or unknown validation states. 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 |
|---|---|---|
IpamId | string | The ID of the IPAM to retrieve route protection findings for. |
region | string | AWS region (default: us-east-1) |
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. |
Filter | array | One or more filters to apply to the results. |
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. |
SELECT examples
- get_ipam_route_protection_findings
Retrieves route protection findings for an IPAM. Route protection findings show the Resource Public Key Infrastructure (RPKI) validation status of your Bring Your Own IP (BYOIP) routes. Findings identify routes that have valid, invalid, or unknown validation states. We recommend using pagination to ensure that the operation returns quickly and successfully.
SELECT
ipam_id,
next_token,
route_protection_findings
FROM aws.ec2.ipam_route_protection_findings
WHERE IpamId = '{{ IpamId }}' -- required
AND region = '{{ region }}' -- required
AND DryRun = '{{ DryRun }}'
AND Filter = '{{ Filter }}'
AND NextToken = '{{ NextToken }}'
AND MaxResults = '{{ MaxResults }}'
;