Module Values.PutEmailIdentityDkimAttributesRequestSource

A request to enable or disable DKIM signing of email that you send from an email identity.

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

    The email identity that you want to change the DKIM settings for.

    *)
  2. signingEnabled : Enabled.t option;
    (*

    Sets the DKIM signing configuration for the identity. When you set this value true, then the messages that Amazon Pinpoint sends from the identity are DKIM-signed. When you set this value to false, then the messages that Amazon Pinpoint sends from the identity aren't DKIM-signed.

    *)
}
Sourceval context_ : string
Sourceval make : ?signingEnabled:??? -> emailIdentity:Identity.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Enabled.t | `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