Struct rusoto_ses::DescribeActiveReceiptRuleSetResponse[][src]

pub struct DescribeActiveReceiptRuleSetResponse {
    pub metadata: Option<ReceiptRuleSetMetadata>,
    pub rules: Option<Vec<ReceiptRule>>,
}

Represents the metadata and receipt rules for the receipt rule set that is currently active.

Fields

The metadata for the currently active receipt rule set. The metadata consists of the rule set name and a timestamp of when the rule set was created.

The receipt rules that belong to the active rule set.

Trait Implementations

impl Default for DescribeActiveReceiptRuleSetResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeActiveReceiptRuleSetResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeActiveReceiptRuleSetResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeActiveReceiptRuleSetResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations