Skip to content

Get Traffic Policy

route53_get_traffic_policy R Documentation

Gets information about a specific traffic policy version

Description

Gets information about a specific traffic policy version.

For information about how of deleting a traffic policy affects the response from get_traffic_policy, see delete_traffic_policy.

Usage

route53_get_traffic_policy(Id, Version)

Arguments

Id

[required] The ID of the traffic policy that you want to get information about.

Version

[required] The version number of the traffic policy that you want to get information about.

Value

A list with the following syntax:

list(
  TrafficPolicy = list(
    Id = "string",
    Version = 123,
    Name = "string",
    Type = "SOA"|"A"|"TXT"|"NS"|"CNAME"|"MX"|"NAPTR"|"PTR"|"SRV"|"SPF"|"AAAA"|"CAA"|"DS",
    Document = "string",
    Comment = "string"
  )
)

Request syntax

svc$get_traffic_policy(
  Id = "string",
  Version = 123
)