Struct aws_sdk_workmail::operation::update_mailbox_quota::builders::UpdateMailboxQuotaInputBuilder
source · #[non_exhaustive]pub struct UpdateMailboxQuotaInputBuilder { /* private fields */ }Expand description
A builder for UpdateMailboxQuotaInput.
Implementations§
source§impl UpdateMailboxQuotaInputBuilder
impl UpdateMailboxQuotaInputBuilder
sourcepub fn organization_id(self, input: impl Into<String>) -> Self
pub fn organization_id(self, input: impl Into<String>) -> Self
The identifier for the organization that contains the user for whom to update the mailbox quota.
This field is required.sourcepub fn set_organization_id(self, input: Option<String>) -> Self
pub fn set_organization_id(self, input: Option<String>) -> Self
The identifier for the organization that contains the user for whom to update the mailbox quota.
sourcepub fn get_organization_id(&self) -> &Option<String>
pub fn get_organization_id(&self) -> &Option<String>
The identifier for the organization that contains the user for whom to update the mailbox quota.
sourcepub fn user_id(self, input: impl Into<String>) -> Self
pub fn user_id(self, input: impl Into<String>) -> Self
The identifer for the user for whom to update the mailbox quota.
The identifier can be the UserId, Username, or email. The following identity formats are available:
-
User ID: 12345678-1234-1234-1234-123456789012 or S-1-1-12-1234567890-123456789-123456789-1234
-
Email address: user@domain.tld
-
User name: user
sourcepub fn set_user_id(self, input: Option<String>) -> Self
pub fn set_user_id(self, input: Option<String>) -> Self
The identifer for the user for whom to update the mailbox quota.
The identifier can be the UserId, Username, or email. The following identity formats are available:
-
User ID: 12345678-1234-1234-1234-123456789012 or S-1-1-12-1234567890-123456789-123456789-1234
-
Email address: user@domain.tld
-
User name: user
sourcepub fn get_user_id(&self) -> &Option<String>
pub fn get_user_id(&self) -> &Option<String>
The identifer for the user for whom to update the mailbox quota.
The identifier can be the UserId, Username, or email. The following identity formats are available:
-
User ID: 12345678-1234-1234-1234-123456789012 or S-1-1-12-1234567890-123456789-123456789-1234
-
Email address: user@domain.tld
-
User name: user
sourcepub fn mailbox_quota(self, input: i32) -> Self
pub fn mailbox_quota(self, input: i32) -> Self
The updated mailbox quota, in MB, for the specified user.
This field is required.sourcepub fn set_mailbox_quota(self, input: Option<i32>) -> Self
pub fn set_mailbox_quota(self, input: Option<i32>) -> Self
The updated mailbox quota, in MB, for the specified user.
sourcepub fn get_mailbox_quota(&self) -> &Option<i32>
pub fn get_mailbox_quota(&self) -> &Option<i32>
The updated mailbox quota, in MB, for the specified user.
sourcepub fn build(self) -> Result<UpdateMailboxQuotaInput, BuildError>
pub fn build(self) -> Result<UpdateMailboxQuotaInput, BuildError>
Consumes the builder and constructs a UpdateMailboxQuotaInput.
source§impl UpdateMailboxQuotaInputBuilder
impl UpdateMailboxQuotaInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateMailboxQuotaOutput, SdkError<UpdateMailboxQuotaError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateMailboxQuotaOutput, SdkError<UpdateMailboxQuotaError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateMailboxQuotaInputBuilder
impl Clone for UpdateMailboxQuotaInputBuilder
source§fn clone(&self) -> UpdateMailboxQuotaInputBuilder
fn clone(&self) -> UpdateMailboxQuotaInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateMailboxQuotaInputBuilder
impl Default for UpdateMailboxQuotaInputBuilder
source§fn default() -> UpdateMailboxQuotaInputBuilder
fn default() -> UpdateMailboxQuotaInputBuilder
source§impl PartialEq for UpdateMailboxQuotaInputBuilder
impl PartialEq for UpdateMailboxQuotaInputBuilder
source§fn eq(&self, other: &UpdateMailboxQuotaInputBuilder) -> bool
fn eq(&self, other: &UpdateMailboxQuotaInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateMailboxQuotaInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateMailboxQuotaInputBuilder
impl RefUnwindSafe for UpdateMailboxQuotaInputBuilder
impl Send for UpdateMailboxQuotaInputBuilder
impl Sync for UpdateMailboxQuotaInputBuilder
impl Unpin for UpdateMailboxQuotaInputBuilder
impl UnwindSafe for UpdateMailboxQuotaInputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more