ToCopyableBuilder<ReceiptRule.Builder,ReceiptRule>
@Generated("software.amazon.awssdk:codegen") public class ReceiptRule extends Object implements ToCopyableBuilder<ReceiptRule.Builder,ReceiptRule>
Receipt rules enable you to specify which actions Amazon SES should take when it receives mail on behalf of one or more email addresses or domains that you own.
Each receipt rule defines a set of email addresses or domains to which it applies. If the email addresses or domains match at least one recipient address of the message, Amazon SES executes all of the receipt rule's actions on the message.
For information about setting up receipt rules, see the Amazon SES Developer Guide.
Modifier and Type | Class | Description |
---|---|---|
static interface |
ReceiptRule.Builder |
Modifier and Type | Method | Description |
---|---|---|
List<ReceiptAction> |
actions() |
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.
|
static ReceiptRule.Builder |
builder() |
|
Boolean |
enabled() |
If
true , the receipt rule is active. |
boolean |
equals(Object obj) |
|
int |
hashCode() |
|
String |
name() |
The name of the receipt rule.
|
List<String> |
recipients() |
The recipient domains and email addresses to which the receipt rule applies.
|
Boolean |
scanEnabled() |
If
true , then messages to which this receipt rule applies are scanned for spam and viruses. |
static Class<? extends ReceiptRule.Builder> |
serializableBuilderClass() |
|
String |
tlsPolicy() |
Specifies whether Amazon SES should require that incoming email is delivered over a connection encrypted with
Transport Layer Security (TLS).
|
ReceiptRule.Builder |
toBuilder() |
Take this object and create a builder that contains all of the current property values of this object.
|
String |
toString() |
public String name()
The name of the receipt rule. The name must:
Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (_), or dashes (-).
Start and end with a letter or number.
Contain less than 64 characters.
Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (_), or dashes (-).
Start and end with a letter or number.
Contain less than 64 characters.
public Boolean enabled()
If true
, the receipt rule is active. The default value is false
.
true
, the receipt rule is active. The default value is false
.public String tlsPolicy()
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
.
Require
, Amazon SES will
bounce emails that are not received over TLS. The default is Optional
.TlsPolicy
public List<String> recipients()
The recipient domains and email addresses to which the receipt rule applies. If this field is not specified, this rule will match all recipients under all verified domains.
public List<ReceiptAction> actions()
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.
public Boolean scanEnabled()
If true
, then messages to which this receipt rule applies are scanned for spam and viruses. The
default value is false
.
true
, then messages to which this receipt rule applies are scanned for spam and viruses.
The default value is false
.public ReceiptRule.Builder toBuilder()
ToCopyableBuilder
toBuilder
in interface ToCopyableBuilder<ReceiptRule.Builder,ReceiptRule>
public static ReceiptRule.Builder builder()
public static Class<? extends ReceiptRule.Builder> serializableBuilderClass()
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.