Module Values.TrafficPolicySummarySource

A complex type that contains information about the latest version of one traffic policy that is associated with the current Amazon Web Services account.

Sourcetype nonrec t = {
  1. id : TrafficPolicyId.t option;
    (*

    The ID that Amazon Route 53 assigned to the traffic policy when you created it.

    *)
  2. name : TrafficPolicyName.t option;
    (*

    The name that you specified for the traffic policy when you created it.

    *)
  3. type_ : RRType.t option;
    (*

    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.

    *)
  4. latestVersion : TrafficPolicyVersion.t option;
    (*

    The version number of the latest version of the traffic policy.

    *)
  5. trafficPolicyCount : TrafficPolicyVersion.t option;
    (*

    The number of traffic policies that are associated with the current Amazon Web Services account.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?type_:??? -> ?latestVersion:??? -> ?trafficPolicyCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of TrafficPolicyVersion.t | `String of TrafficPolicyId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t