Struct rusoto_ses::GetIdentityNotificationAttributesRequest[][src]

pub struct GetIdentityNotificationAttributesRequest {
    pub identities: Vec<String>,
}

Represents a request to return the notification attributes for a list of identities you verified with Amazon SES. For information about Amazon SES notifications, see the Amazon SES Developer Guide.

Fields

A list of one or more identities. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: user@example.com, example.com, arn:aws:ses:us-east-1:123456789012:identity/example.com.

Trait Implementations

impl Default for GetIdentityNotificationAttributesRequest
[src]

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

impl Debug for GetIdentityNotificationAttributesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetIdentityNotificationAttributesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetIdentityNotificationAttributesRequest
[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