Module Values.CreateProfileRequestSource

Creates an empty Route 53 Profile.

Sourcetype nonrec t = {
  1. clientToken : CreatorRequestId.t;
    (*

    ClientToken is an idempotency token that ensures a call to CreateProfile completes only once. You choose the value to pass. For example, an issue might prevent you from getting a response from CreateProfile. In this case, safely retry your call to CreateProfile by using the same CreateProfile parameter value.

    *)
  2. name : Name.t;
    (*

    A name for the Profile.

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

    A list of the tag keys and values that you want to associate with the Route 53 Profile.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> clientToken:CreatorRequestId.t -> name:Name.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of CreatorRequestId.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