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.

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

    Sets the DKIM signing configuration for the identity. When you set this value true, then the messages that are sent from the identity are signed using DKIM. If you set this value to false, your messages are sent without DKIM signing.

    *)
}
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