/** *
A complex type that contains information about the latest version of one traffic policy that is associated with the current AWS account.
*/ export interface _TrafficPolicySummary { /** *The ID that Amazon Route 53 assigned to the traffic policy when you created it.
*/ Id: string; /** *The name that you specified for the traffic policy when you created it.
*/ Name: string; /** *The DNS type of the resource record sets that Amazon Route 53 creates when you use a traffic policy to create a traffic policy instance.
*/ Type: "SOA" | "A" | "TXT" | "NS" | "CNAME" | "MX" | "NAPTR" | "PTR" | "SRV" | "SPF" | "AAAA" | "CAA" | string; /** *The version number of the latest version of the traffic policy.
*/ LatestVersion: number; /** *The number of traffic policies that are associated with the current AWS account.
*/ TrafficPolicyCount: number; } export declare type _UnmarshalledTrafficPolicySummary = _TrafficPolicySummary;