Module Values.ReceiptRuleSetMetadataSource

Information about a receipt rule set. A receipt rule set is a collection of rules that specify what Amazon SES should do with mail it receives on behalf of your account's verified domains. For information about setting up receipt rule sets, see the Amazon SES Developer Guide.

Sourcetype nonrec t = {
  1. name : ReceiptRuleSetName.t option;
    (*

    The name of the receipt rule set. The name must meet the following requirements: Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-). Start and end with a letter or number. Contain 64 characters or fewer.

    *)
  2. createdTimestamp : Timestamp.t option;
    (*

    The date and time the receipt rule set was created.

    *)
}
Sourceval make : ?name:??? -> ?createdTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ReceiptRuleSetName.t | `Timestamp of Timestamp.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