Module Values_0.DistributionSource

Information about a traffic distribution.

Sourcetype nonrec t = {
  1. region : AwsRegion.t;
    (*

    The Amazon Web Services Region where the traffic is distributed.

    *)
  2. percentage : Percentage.t;
    (*

    The percentage of the traffic that is distributed, in increments of 10.

    *)
}
Sourceval context_ : string
Sourceval make : region:AwsRegion.t -> percentage:Percentage.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Percentage.t | `String of AwsRegion.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