Module Values.RegionSource

This is a structure that expresses the Region for a given account, consisting of a name and opt-in status.

Sourcetype nonrec t = {
  1. regionName : RegionName.t option;
    (*

    The Region code of a given Region (for example, us-east-1).

    *)
  2. regionOptStatus : RegionOptStatus.t option;
    (*

    One of potential statuses a Region can undergo (Enabled, Enabling, Disabled, Disabling, Enabled_By_Default).

    *)
}
Sourceval make : ?regionName:??? -> ?regionOptStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of RegionName.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