Learn R Programming

paws.networking (version 0.1.11)

route53_get_traffic_policy_instance: Gets information about a specified traffic policy instance

Description

Gets information about a specified traffic policy instance.

After you submit a create_traffic_policy_instance or an update_traffic_policy_instance request, there's a brief delay while Amazon Route 53 creates the resource record sets that are specified in the traffic policy definition. For more information, see the State response element.

In the Route 53 console, traffic policy instances are known as policy records.

Usage

route53_get_traffic_policy_instance(Id)

Arguments

Id

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

Value

A list with the following syntax:

list(
  TrafficPolicyInstance = list(
    Id = "string",
    HostedZoneId = "string",
    Name = "string",
    TTL = 123,
    State = "string",
    Message = "string",
    TrafficPolicyId = "string",
    TrafficPolicyVersion = 123,
    TrafficPolicyType = "SOA"|"A"|"TXT"|"NS"|"CNAME"|"MX"|"NAPTR"|"PTR"|"SRV"|"SPF"|"AAAA"|"CAA"|"DS"
  )
)

Request syntax

svc$get_traffic_policy_instance(
  Id = "string"
)