[−][src]Struct rusoto_ses::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 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.
Fields
actions: Option<Vec<ReceiptAction>>
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.
enabled: Option<bool>
If true
, the receipt rule is active. The default value is false
.
name: String
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.
recipients: Option<Vec<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.
scan_enabled: Option<bool>
If true
, then messages that this receipt rule applies to are scanned for spam and viruses. The default value is false
.
tls_policy: Option<String>
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
.
Trait Implementations
impl PartialEq<ReceiptRule> for ReceiptRule
[src]
fn eq(&self, other: &ReceiptRule) -> bool
[src]
fn ne(&self, other: &ReceiptRule) -> bool
[src]
impl Default for ReceiptRule
[src]
fn default() -> ReceiptRule
[src]
impl Clone for ReceiptRule
[src]
fn clone(&self) -> ReceiptRule
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ReceiptRule
[src]
Auto Trait Implementations
impl Send for ReceiptRule
impl Sync for ReceiptRule
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self