Module Values.CreateMultiRegionEndpointRequestSource

Represents a request to create a multi-region endpoint (global-endpoint).

Sourcetype nonrec t = {
  1. endpointName : EndpointName.t;
    (*

    The name of the multi-region endpoint (global-endpoint).

    *)
  2. details : Details.t;
    (*

    Contains details of a multi-region endpoint (global-endpoint) being created.

    *)
  3. tags : TagList.t option;
    (*

    An array of objects that define the tags (keys and values) to associate with the multi-region endpoint (global-endpoint).

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> endpointName:EndpointName.t -> details:Details.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of EndpointName.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of Region.t ]) list ] list ]) list ]) 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