[][src]Struct rusoto_ses::ReorderReceiptRuleSetRequest

pub struct ReorderReceiptRuleSetRequest {
    pub rule_names: Vec<String>,
    pub rule_set_name: String,
}

Represents a request to reorder the receipt rules within a receipt rule set. You use receipt rule sets to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide.

Fields

rule_names: Vec<String>

A list of the specified receipt rule set's receipt rules in the order that you want to put them.

rule_set_name: String

The name of the receipt rule set to reorder.

Trait Implementations

impl Clone for ReorderReceiptRuleSetRequest[src]

impl Debug for ReorderReceiptRuleSetRequest[src]

impl Default for ReorderReceiptRuleSetRequest[src]

impl PartialEq<ReorderReceiptRuleSetRequest> for ReorderReceiptRuleSetRequest[src]

impl StructuralPartialEq for ReorderReceiptRuleSetRequest[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> Instrument 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.