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 to verify.

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

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

    *)
  3. dkimSigningAttributes : DkimSigningAttributes.t option;
    (*

    If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, or, configures the key length to be used for Easy DKIM. You can only specify this object if the email identity is a domain, as opposed to an address.

    *)
  4. configurationSetName : ConfigurationSetName.t option;
    (*

    The configuration set to use by default when sending from this identity. Note that any configuration set defined in the email sending request takes precedence.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> ?dkimSigningAttributes:??? -> ?configurationSetName:??? -> 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 | `Structure of (string * [> `Enum of string | `String of Selector.t ]) 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