Module Values_2.RegionSource

Describes a Region.

Sourcetype nonrec t = {
  1. optInStatus : Values_0.String_.t option;
    (*

    The Region opt-in status. The possible values are opt-in-not-required, opted-in, and not-opted-in.

    *)
  2. geography : Values_1.RegionGeographyList.t option;
    (*

    The geography information for the Region. The geography is returned as a list.

    *)
  3. regionName : Values_0.String_.t option;
    (*

    The name of the Region.

    *)
  4. endpoint : Values_0.String_.t option;
    (*

    The Region service endpoint.

    *)
}
Sourceval make : ?optInStatus:??? -> ?geography:??? -> ?regionName:??? -> ?endpoint:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of Values_0.String_.t ]) list ] list | `String of Values_0.String_.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