Struct rusoto_ses::ListIdentitiesRequest[][src]

pub struct ListIdentitiesRequest {
    pub identity_type: Option<String>,
    pub max_items: Option<i64>,
    pub next_token: Option<String>,
}

Represents a request to return a list of all identities (email addresses and domains) that you have attempted to verify under your AWS account, regardless of verification status.

Fields

The type of the identities to list. Possible values are "EmailAddress" and "Domain". If this parameter is omitted, then all identities will be listed.

The maximum number of identities per page. Possible values are 1-1000 inclusive.

The token to use for pagination.

Trait Implementations

impl Default for ListIdentitiesRequest
[src]

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

impl Debug for ListIdentitiesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListIdentitiesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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