Module Values.SetIdentityDkimEnabledRequestSource

Represents a request to enable or disable Amazon SES Easy DKIM signing for an identity. For more information about setting up Easy DKIM, see the Amazon SES Developer Guide.

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

    The identity for which DKIM signing should be enabled or disabled.

    *)
  2. dkimEnabled : Enabled.t;
    (*

    Sets whether DKIM signing is enabled for an identity. Set to true to enable DKIM signing for this identity; false to disable it.

    *)
}
Sourceval context_ : string
Sourceval make : identity:Identity.t -> dkimEnabled:Enabled.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