Module Values.GetConfigurationSetResponseSource

Information about a configuration set.

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

    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 SES 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 SES 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 are associated with the configuration set.

    *)
  7. suppressionOptions : SuppressionOptions.t option;
    (*

    An object that contains information about the suppression list preferences for your account.

    *)
  8. vdmOptions : VdmOptions.t option;
    (*

    An object that contains information about the VDM preferences for your configuration set.

    *)
  9. archivingOptions : ArchivingOptions.t option;
    (*

    An object that defines the MailManager archive where sent emails are archived that you send using the configuration set.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `NotFoundException of NotFoundException.t
  3. | `TooManyRequestsException of TooManyRequestsException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?configurationSetName:??? -> ?trackingOptions:??? -> ?deliveryOptions:??? -> ?reputationOptions:??? -> ?sendingOptions:??? -> ?tags:??? -> ?suppressionOptions:??? -> ?vdmOptions:??? -> ?archivingOptions:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of unit | `NotFoundException of unit | `TooManyRequestsException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of unit | `NotFoundException of unit | `TooManyRequestsException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.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 | `List of [> `Enum of string ] list | `Long of MaxDeliverySeconds.t | `String of CustomRedirectDomain.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string ]) list ]) list ]) list | `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