Module Values.CreateReceiptRuleRequestSource

Represents a request to create a receipt rule. You use receipt rules to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide.

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

    The name of the rule set where the receipt rule is added.

    *)
  2. after : ReceiptRuleName.t option;
    (*

    The name of an existing rule after which the new rule is placed. If this parameter is null, the new rule is inserted at the beginning of the rule list.

    *)
  3. rule : ReceiptRule.t;
    (*

    A data structure that contains the specified rule's name, actions, recipients, domains, enabled status, scan status, and TLS policy.

    *)
}
Sourceval context_ : string
Sourceval make : ?after:??? -> ruleSetName:ReceiptRuleSetName.t -> rule:ReceiptRule.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ReceiptRuleSetName.t | `Structure of (string * [> `Boolean of Enabled.t | `Enum of string | `List of [> `String of Recipient.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of AmazonResourceName.t ]) list ]) list ] list | `String of ReceiptRuleName.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