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.
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.
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.
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.
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.
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<UpdateMailboxQuotaInputBuilder> for UpdateMailboxQuotaInputBuilder
impl PartialEq<UpdateMailboxQuotaInputBuilder> 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 ==
.