[][src]Struct rusoto_ses::CreateReceiptRuleRequest

pub struct CreateReceiptRuleRequest {
    pub after: Option<String>,
    pub rule: ReceiptRule,
    pub rule_set_name: String,
}

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.

Fields

after: Option<String>

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

rule: ReceiptRule

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

rule_set_name: String

The name of the rule set that the receipt rule will be added to.

Trait Implementations

impl Clone for CreateReceiptRuleRequest[src]

impl Debug for CreateReceiptRuleRequest[src]

impl Default for CreateReceiptRuleRequest[src]

impl PartialEq<CreateReceiptRuleRequest> for CreateReceiptRuleRequest[src]

impl StructuralPartialEq for CreateReceiptRuleRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.