Struct aws_sdk_ses::input::ListIdentitiesInput
source · #[non_exhaustive]pub struct ListIdentitiesInput { /* private fields */ }
Expand description
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.
Implementations§
source§impl ListIdentitiesInput
impl ListIdentitiesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListIdentities, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListIdentities, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListIdentities
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListIdentitiesInput
.
source§impl ListIdentitiesInput
impl ListIdentitiesInput
sourcepub fn identity_type(&self) -> Option<&IdentityType>
pub fn identity_type(&self) -> Option<&IdentityType>
The type of the identities to list. Possible values are "EmailAddress" and "Domain". If this parameter is omitted, then all identities will be listed.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to use for pagination.
Trait Implementations§
source§impl Clone for ListIdentitiesInput
impl Clone for ListIdentitiesInput
source§fn clone(&self) -> ListIdentitiesInput
fn clone(&self) -> ListIdentitiesInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ListIdentitiesInput
impl Debug for ListIdentitiesInput
source§impl PartialEq<ListIdentitiesInput> for ListIdentitiesInput
impl PartialEq<ListIdentitiesInput> for ListIdentitiesInput
source§fn eq(&self, other: &ListIdentitiesInput) -> bool
fn eq(&self, other: &ListIdentitiesInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.