Module Values.PutConfigurationSetSendingOptionsRequestSource

A request to enable or disable the ability of Amazon Pinpoint to send emails that use a specific configuration set.

Sourcetype nonrec t = {
  1. configurationSetName : ConfigurationSetName.t;
    (*

    The name of the configuration set that you want to enable or disable email sending for.

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

    If true, email sending is enabled for the configuration set. If false, email sending is disabled for the configuration set.

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