Skip to main content

ipam_route_protection_findings

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

Overview

Nameipam_route_protection_findings
TypeResource
Idaws.ec2.ipam_route_protection_findings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
ipam_idstringThe ID of the IPAM.
next_tokenstringThe token to use to retrieve the next page of results.
route_protection_findingsstringThe route protection findings.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_ipam_route_protection_findingsselectIpamId, regionDryRun, Filter, NextToken, MaxResultsRetrieves 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.

NameDatatypeDescription
IpamIdstringThe ID of the IPAM to retrieve route protection findings for.
regionstringAWS region (default: us-east-1)
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.
FilterarrayOne or more filters to apply to the results.
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.

SELECT examples

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 }}'
;