List Traffic Policy Versions
route53_list_traffic_policy_versions | R Documentation |
Gets information about all of the versions for a specified traffic policy¶
Description¶
Gets information about all of the versions for a specified traffic policy.
Traffic policy versions are listed in numerical order by
VersionNumber
.
Usage¶
route53_list_traffic_policy_versions(Id, TrafficPolicyVersionMarker,
MaxItems)
Arguments¶
Id |
[required] Specify the value of |
TrafficPolicyVersionMarker |
For your first request to
If you have more traffic policy versions than the value of
|
MaxItems |
The maximum number of traffic policy versions that you want
Amazon Route 53 to include in the response body for this request. If the
specified traffic policy has more than |
Value¶
A list with the following syntax:
list(
TrafficPolicies = list(
list(
Id = "string",
Version = 123,
Name = "string",
Type = "SOA"|"A"|"TXT"|"NS"|"CNAME"|"MX"|"NAPTR"|"PTR"|"SRV"|"SPF"|"AAAA"|"CAA"|"DS"|"TLSA"|"SSHFP"|"SVCB"|"HTTPS",
Document = "string",
Comment = "string"
)
),
IsTruncated = TRUE|FALSE,
TrafficPolicyVersionMarker = "string",
MaxItems = "string"
)
Request syntax¶
svc$list_traffic_policy_versions(
Id = "string",
TrafficPolicyVersionMarker = "string",
MaxItems = "string"
)