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 ==.