pub struct GetIdentityNotificationAttributesRequest {
pub identities: 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§
§identities: 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.
Trait Implementations§
Source§impl Clone for GetIdentityNotificationAttributesRequest
impl Clone for GetIdentityNotificationAttributesRequest
Source§fn clone(&self) -> GetIdentityNotificationAttributesRequest
fn clone(&self) -> GetIdentityNotificationAttributesRequest
Returns a duplicate 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 Default for GetIdentityNotificationAttributesRequest
impl Default for GetIdentityNotificationAttributesRequest
Source§fn default() -> GetIdentityNotificationAttributesRequest
fn default() -> GetIdentityNotificationAttributesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetIdentityNotificationAttributesRequest
impl PartialEq for GetIdentityNotificationAttributesRequest
Source§fn eq(&self, other: &GetIdentityNotificationAttributesRequest) -> bool
fn eq(&self, other: &GetIdentityNotificationAttributesRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetIdentityNotificationAttributesRequest
Auto Trait Implementations§
impl Freeze for GetIdentityNotificationAttributesRequest
impl RefUnwindSafe for GetIdentityNotificationAttributesRequest
impl Send for GetIdentityNotificationAttributesRequest
impl Sync for GetIdentityNotificationAttributesRequest
impl Unpin for GetIdentityNotificationAttributesRequest
impl UnwindSafe for GetIdentityNotificationAttributesRequest
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
Mutably borrows from an owned value. Read more