Struct aws_sdk_sesv2::operation::create_email_identity::builders::CreateEmailIdentityInputBuilder
source · #[non_exhaustive]pub struct CreateEmailIdentityInputBuilder { /* private fields */ }Expand description
A builder for CreateEmailIdentityInput.
Implementations§
source§impl CreateEmailIdentityInputBuilder
impl CreateEmailIdentityInputBuilder
sourcepub fn email_identity(self, input: impl Into<String>) -> Self
pub fn email_identity(self, input: impl Into<String>) -> Self
The email address or domain to verify.
sourcepub fn set_email_identity(self, input: Option<String>) -> Self
pub fn set_email_identity(self, input: Option<String>) -> Self
The email address or domain to verify.
Appends an item to tags.
To override the contents of this collection use set_tags.
An array of objects that define the tags (keys and values) to associate with the email identity.
An array of objects that define the tags (keys and values) to associate with the email identity.
sourcepub fn dkim_signing_attributes(self, input: DkimSigningAttributes) -> Self
pub fn dkim_signing_attributes(self, input: DkimSigningAttributes) -> Self
If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, or, configures the key length to be used for Easy DKIM.
You can only specify this object if the email identity is a domain, as opposed to an address.
sourcepub fn set_dkim_signing_attributes(
self,
input: Option<DkimSigningAttributes>
) -> Self
pub fn set_dkim_signing_attributes( self, input: Option<DkimSigningAttributes> ) -> Self
If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, or, configures the key length to be used for Easy DKIM.
You can only specify this object if the email identity is a domain, as opposed to an address.
sourcepub fn configuration_set_name(self, input: impl Into<String>) -> Self
pub fn configuration_set_name(self, input: impl Into<String>) -> Self
The configuration set to use by default when sending from this identity. Note that any configuration set defined in the email sending request takes precedence.
sourcepub fn set_configuration_set_name(self, input: Option<String>) -> Self
pub fn set_configuration_set_name(self, input: Option<String>) -> Self
The configuration set to use by default when sending from this identity. Note that any configuration set defined in the email sending request takes precedence.
sourcepub fn build(self) -> Result<CreateEmailIdentityInput, BuildError>
pub fn build(self) -> Result<CreateEmailIdentityInput, BuildError>
Consumes the builder and constructs a CreateEmailIdentityInput.
Trait Implementations§
source§impl Clone for CreateEmailIdentityInputBuilder
impl Clone for CreateEmailIdentityInputBuilder
source§fn clone(&self) -> CreateEmailIdentityInputBuilder
fn clone(&self) -> CreateEmailIdentityInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for CreateEmailIdentityInputBuilder
impl Default for CreateEmailIdentityInputBuilder
source§fn default() -> CreateEmailIdentityInputBuilder
fn default() -> CreateEmailIdentityInputBuilder
source§impl PartialEq<CreateEmailIdentityInputBuilder> for CreateEmailIdentityInputBuilder
impl PartialEq<CreateEmailIdentityInputBuilder> for CreateEmailIdentityInputBuilder
source§fn eq(&self, other: &CreateEmailIdentityInputBuilder) -> bool
fn eq(&self, other: &CreateEmailIdentityInputBuilder) -> bool
self and other values to be equal, and is used
by ==.