pub struct PutEmailIdentityConfigurationSetAttributesRequest {
pub configuration_set_name: Option<String>,
pub email_identity: String,
}Expand description
A request to associate a configuration set with an email identity.
Fields§
§configuration_set_name: Option<String>The configuration set that you want to associate with an email identity.
email_identity: StringThe email address or domain that you want to associate with a configuration set.
Trait Implementations§
Source§impl Clone for PutEmailIdentityConfigurationSetAttributesRequest
impl Clone for PutEmailIdentityConfigurationSetAttributesRequest
Source§fn clone(&self) -> PutEmailIdentityConfigurationSetAttributesRequest
fn clone(&self) -> PutEmailIdentityConfigurationSetAttributesRequest
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 PutEmailIdentityConfigurationSetAttributesRequest
impl Default for PutEmailIdentityConfigurationSetAttributesRequest
Source§fn default() -> PutEmailIdentityConfigurationSetAttributesRequest
fn default() -> PutEmailIdentityConfigurationSetAttributesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for PutEmailIdentityConfigurationSetAttributesRequest
impl PartialEq for PutEmailIdentityConfigurationSetAttributesRequest
Source§fn eq(&self, other: &PutEmailIdentityConfigurationSetAttributesRequest) -> bool
fn eq(&self, other: &PutEmailIdentityConfigurationSetAttributesRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PutEmailIdentityConfigurationSetAttributesRequest
Auto Trait Implementations§
impl Freeze for PutEmailIdentityConfigurationSetAttributesRequest
impl RefUnwindSafe for PutEmailIdentityConfigurationSetAttributesRequest
impl Send for PutEmailIdentityConfigurationSetAttributesRequest
impl Sync for PutEmailIdentityConfigurationSetAttributesRequest
impl Unpin for PutEmailIdentityConfigurationSetAttributesRequest
impl UnwindSafe for PutEmailIdentityConfigurationSetAttributesRequest
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