Module Values.RegionSource

Describes the Amazon Web Services Region.

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

    The continent code (NA, meaning North America).

    *)
  2. description : String_.t option;
    (*

    The description of the Amazon Web Services Region (This region is recommended to serve users in the eastern United States and eastern Canada).

    *)
  3. displayName : String_.t option;
    (*

    The display name (Ohio).

    *)
  4. name : RegionName.t option;
    (*

    The region name (us-east-2).

    *)
  5. availabilityZones : AvailabilityZoneList.t option;
    (*

    The Availability Zones. Follows the format us-east-2a (case-sensitive).

    *)
  6. relationalDatabaseAvailabilityZones : AvailabilityZoneList.t option;
    (*

    The Availability Zones for databases. Follows the format us-east-2a (case-sensitive).

    *)
}
Sourceval make : ?continentCode:??? -> ?description:??? -> ?displayName:??? -> ?name:??? -> ?availabilityZones:??? -> ?relationalDatabaseAvailabilityZones:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of 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