Module Values.UpdateConfigurationSetSendingEnabledRequestSource

Represents a request to enable or disable the email sending capabilities for a specific configuration set.

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

    The name of the configuration set to update.

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

    Describes whether email sending is enabled or disabled for the configuration set.

    *)
}
Sourceval context_ : string
Sourceval make : configurationSetName:ConfigurationSetName.t -> enabled:Enabled.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