ReceiptRule
public struct ReceiptRule : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
An ordered list of actions to perform on messages that match at least one of the recipient email addresses or domains specified in the receipt rule.
Declaration
Swift
public let actions: [ReceiptAction]?
-
If true, the receipt rule is active. The default value is false.
Declaration
Swift
public let enabled: Bool?
-
The name of the receipt rule. The name must: This value can only contain ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-). Start and end with a letter or number. Contain less than 64 characters.
Declaration
Swift
public let name: String
-
The recipient domains and email addresses that the receipt rule applies to. If this field is not specified, this rule will match all recipients under all verified domains.
Declaration
Swift
public let recipients: [String]?
-
If true, then messages that this receipt rule applies to are scanned for spam and viruses. The default value is false.
Declaration
Swift
public let scanEnabled: Bool?
-
Specifies whether Amazon SES should require that incoming email is delivered over a connection encrypted with Transport Layer Security (TLS). If this parameter is set to Require, Amazon SES will bounce emails that are not received over TLS. The default is Optional.
Declaration
Swift
public let tlsPolicy: TlsPolicy?
-
Undocumented
Declaration
Swift
public init(actions: [ReceiptAction]? = nil, enabled: Bool? = nil, name: String, recipients: [String]? = nil, scanEnabled: Bool? = nil, tlsPolicy: TlsPolicy? = nil)