Module Values.CreateEmailIdentityRequestSource

A request to begin the verification process for an email identity (an email address or domain).

Sourcetype nonrec t = {
  1. emailIdentity : Identity.t;
    (*

    The email address or domain that you want to verify.

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

    An array of objects that define the tags (keys and values) that you want to associate with the email identity.

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