Module Values.CreateConfigurationSetRequestSource

A request to create a configuration set.

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

    The name of the configuration set.

    *)
  2. trackingOptions : TrackingOptions.t option;
    (*

    An object that defines the open and click tracking options for emails that you send using the configuration set.

    *)
  3. deliveryOptions : DeliveryOptions.t option;
    (*

    An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.

    *)
  4. reputationOptions : ReputationOptions.t option;
    (*

    An object that defines whether or not Amazon Pinpoint collects reputation metrics for the emails that you send that use the configuration set.

    *)
  5. sendingOptions : SendingOptions.t option;
    (*

    An object that defines whether or not Amazon Pinpoint can send email that you send using the configuration set.

    *)
  6. tags : TagList.t option;
    (*

    An array of objects that define the tags (keys and values) that you want to associate with the configuration set.

    *)
}
Sourceval context_ : string
Sourceval make : ?trackingOptions:??? -> ?deliveryOptions:??? -> ?reputationOptions:??? -> ?sendingOptions:??? -> ?tags:??? -> configurationSetName:ConfigurationSetName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ConfigurationSetName.t | `Structure of (string * [> `Boolean of Enabled.t | `Enum of string | `String of CustomRedirectDomain.t | `Timestamp of LastFreshStart.t ]) list ]) 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