/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.simpleemail.model; import java.io.Serializable; import javax.annotation.Generated; /** *

* 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 that it applies to. 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. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ReceiptRule implements Serializable, Cloneable { /** *

* The name of the receipt rule. The name must: *

* */ private String name; /** *

* If true, the receipt rule is active. The default value is false. *

*/ private Boolean enabled; /** *

* 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. *

*/ private String tlsPolicy; /** *

* 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. *

*/ private com.amazonaws.internal.SdkInternalList recipients; /** *

* 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. *

*/ private com.amazonaws.internal.SdkInternalList actions; /** *

* If true, then messages that this receipt rule applies to are scanned for spam and viruses. The * default value is false. *

*/ private Boolean scanEnabled; /** *

* The name of the receipt rule. The name must: *

* * * @param name * The name of the receipt rule. The name must:

*