Struct aws_sdk_workmail::operation::update_primary_email_address::builders::UpdatePrimaryEmailAddressInputBuilder
source · #[non_exhaustive]pub struct UpdatePrimaryEmailAddressInputBuilder { /* private fields */ }
Expand description
A builder for UpdatePrimaryEmailAddressInput
.
Implementations§
source§impl UpdatePrimaryEmailAddressInputBuilder
impl UpdatePrimaryEmailAddressInputBuilder
sourcepub fn organization_id(self, input: impl Into<String>) -> Self
pub fn organization_id(self, input: impl Into<String>) -> Self
The organization that contains the user, group, or resource to update.
sourcepub fn set_organization_id(self, input: Option<String>) -> Self
pub fn set_organization_id(self, input: Option<String>) -> Self
The organization that contains the user, group, or resource to update.
sourcepub fn get_organization_id(&self) -> &Option<String>
pub fn get_organization_id(&self) -> &Option<String>
The organization that contains the user, group, or resource to update.
sourcepub fn entity_id(self, input: impl Into<String>) -> Self
pub fn entity_id(self, input: impl Into<String>) -> Self
The user, group, or resource to update.
sourcepub fn set_entity_id(self, input: Option<String>) -> Self
pub fn set_entity_id(self, input: Option<String>) -> Self
The user, group, or resource to update.
sourcepub fn get_entity_id(&self) -> &Option<String>
pub fn get_entity_id(&self) -> &Option<String>
The user, group, or resource to update.
sourcepub fn email(self, input: impl Into<String>) -> Self
pub fn email(self, input: impl Into<String>) -> Self
The value of the email to be updated as primary.
sourcepub fn set_email(self, input: Option<String>) -> Self
pub fn set_email(self, input: Option<String>) -> Self
The value of the email to be updated as primary.
sourcepub fn build(self) -> Result<UpdatePrimaryEmailAddressInput, BuildError>
pub fn build(self) -> Result<UpdatePrimaryEmailAddressInput, BuildError>
Consumes the builder and constructs a UpdatePrimaryEmailAddressInput
.
source§impl UpdatePrimaryEmailAddressInputBuilder
impl UpdatePrimaryEmailAddressInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdatePrimaryEmailAddressOutput, SdkError<UpdatePrimaryEmailAddressError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdatePrimaryEmailAddressOutput, SdkError<UpdatePrimaryEmailAddressError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdatePrimaryEmailAddressInputBuilder
impl Clone for UpdatePrimaryEmailAddressInputBuilder
source§fn clone(&self) -> UpdatePrimaryEmailAddressInputBuilder
fn clone(&self) -> UpdatePrimaryEmailAddressInputBuilder
Returns a copy 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 UpdatePrimaryEmailAddressInputBuilder
impl Default for UpdatePrimaryEmailAddressInputBuilder
source§fn default() -> UpdatePrimaryEmailAddressInputBuilder
fn default() -> UpdatePrimaryEmailAddressInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<UpdatePrimaryEmailAddressInputBuilder> for UpdatePrimaryEmailAddressInputBuilder
impl PartialEq<UpdatePrimaryEmailAddressInputBuilder> for UpdatePrimaryEmailAddressInputBuilder
source§fn eq(&self, other: &UpdatePrimaryEmailAddressInputBuilder) -> bool
fn eq(&self, other: &UpdatePrimaryEmailAddressInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdatePrimaryEmailAddressInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for UpdatePrimaryEmailAddressInputBuilder
impl Send for UpdatePrimaryEmailAddressInputBuilder
impl Sync for UpdatePrimaryEmailAddressInputBuilder
impl Unpin for UpdatePrimaryEmailAddressInputBuilder
impl UnwindSafe for UpdatePrimaryEmailAddressInputBuilder
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