Describe Ipam External Resource Verification Tokens
| ec2_describe_ipam_external_resource_verification_tokens | R Documentation |
Describe verification tokens¶
Description¶
Describe verification tokens. A verification token is an Amazon Web Services-generated random value that you can use to prove ownership of an external resource. For example, you can use a verification token to validate that you control a public IP address range when you bring an IP address range to Amazon Web Services (BYOIP).
Usage¶
ec2_describe_ipam_external_resource_verification_tokens(DryRun, Filters,
NextToken, MaxResults, IpamExternalResourceVerificationTokenIds)
Arguments¶
DryRunA check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is
DryRunOperation. Otherwise, it isUnauthorizedOperation.FiltersOne or more filters for the request. For more information about filtering, see Filtering CLI output.
Available filters:
ipam-arnipam-external-resource-verification-token-arnipam-external-resource-verification-token-idipam-idipam-regionstatestatustoken-nametoken-value
NextTokenThe token for the next page of results.
MaxResultsThe maximum number of tokens to return in one page of results.
IpamExternalResourceVerificationTokenIdsVerification token IDs.
Value¶
A list with the following syntax:
list(
NextToken = "string",
IpamExternalResourceVerificationTokens = list(
list(
IpamExternalResourceVerificationTokenId = "string",
IpamExternalResourceVerificationTokenArn = "string",
IpamId = "string",
IpamArn = "string",
IpamRegion = "string",
TokenValue = "string",
TokenName = "string",
NotAfter = as.POSIXct(
"2015-01-01"
),
Status = "valid"|"expired",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
State = "create-in-progress"|"create-complete"|"create-failed"|"delete-in-progress"|"delete-complete"|"delete-failed"
)
)
)