Struct aws_sdk_ses::operation::get_identity_notification_attributes::GetIdentityNotificationAttributesInput
source · #[non_exhaustive]pub struct GetIdentityNotificationAttributesInput {
pub identities: Option<Vec<String>>,
}Expand description
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 (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.identities: Option<Vec<String>>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.
Implementations§
source§impl GetIdentityNotificationAttributesInput
impl GetIdentityNotificationAttributesInput
sourcepub fn identities(&self) -> &[String]
pub fn identities(&self) -> &[String]
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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .identities.is_none().
source§impl GetIdentityNotificationAttributesInput
impl GetIdentityNotificationAttributesInput
sourcepub fn builder() -> GetIdentityNotificationAttributesInputBuilder
pub fn builder() -> GetIdentityNotificationAttributesInputBuilder
Creates a new builder-style object to manufacture GetIdentityNotificationAttributesInput.
Trait Implementations§
source§impl Clone for GetIdentityNotificationAttributesInput
impl Clone for GetIdentityNotificationAttributesInput
source§fn clone(&self) -> GetIdentityNotificationAttributesInput
fn clone(&self) -> GetIdentityNotificationAttributesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for GetIdentityNotificationAttributesInput
impl PartialEq for GetIdentityNotificationAttributesInput
source§fn eq(&self, other: &GetIdentityNotificationAttributesInput) -> bool
fn eq(&self, other: &GetIdentityNotificationAttributesInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetIdentityNotificationAttributesInput
Auto Trait Implementations§
impl Freeze for GetIdentityNotificationAttributesInput
impl RefUnwindSafe for GetIdentityNotificationAttributesInput
impl Send for GetIdentityNotificationAttributesInput
impl Sync for GetIdentityNotificationAttributesInput
impl Unpin for GetIdentityNotificationAttributesInput
impl UnwindSafe for GetIdentityNotificationAttributesInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more