Struct aws_sdk_workmail::operation::delete_mailbox_permissions::builders::DeleteMailboxPermissionsFluentBuilder
source · pub struct DeleteMailboxPermissionsFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DeleteMailboxPermissions
.
Deletes permissions granted to a member (user or group).
Implementations§
source§impl DeleteMailboxPermissionsFluentBuilder
impl DeleteMailboxPermissionsFluentBuilder
sourcepub fn as_input(&self) -> &DeleteMailboxPermissionsInputBuilder
pub fn as_input(&self) -> &DeleteMailboxPermissionsInputBuilder
Access the DeleteMailboxPermissions as a reference.
sourcepub async fn send(
self
) -> Result<DeleteMailboxPermissionsOutput, SdkError<DeleteMailboxPermissionsError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteMailboxPermissionsOutput, SdkError<DeleteMailboxPermissionsError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DeleteMailboxPermissionsOutput, DeleteMailboxPermissionsError>, SdkError<DeleteMailboxPermissionsError>>
pub async fn customize( self ) -> Result<CustomizableOperation<DeleteMailboxPermissionsOutput, DeleteMailboxPermissionsError>, SdkError<DeleteMailboxPermissionsError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn organization_id(self, input: impl Into<String>) -> Self
pub fn organization_id(self, input: impl Into<String>) -> Self
The identifier of the organization under which the member (user or group) exists.
sourcepub fn set_organization_id(self, input: Option<String>) -> Self
pub fn set_organization_id(self, input: Option<String>) -> Self
The identifier of the organization under which the member (user or group) exists.
sourcepub fn get_organization_id(&self) -> &Option<String>
pub fn get_organization_id(&self) -> &Option<String>
The identifier of the organization under which the member (user or group) exists.
sourcepub fn entity_id(self, input: impl Into<String>) -> Self
pub fn entity_id(self, input: impl Into<String>) -> Self
The identifier of the member (user or group) that owns the mailbox.
sourcepub fn set_entity_id(self, input: Option<String>) -> Self
pub fn set_entity_id(self, input: Option<String>) -> Self
The identifier of the member (user or group) that owns the mailbox.
sourcepub fn get_entity_id(&self) -> &Option<String>
pub fn get_entity_id(&self) -> &Option<String>
The identifier of the member (user or group) that owns the mailbox.
sourcepub fn grantee_id(self, input: impl Into<String>) -> Self
pub fn grantee_id(self, input: impl Into<String>) -> Self
The identifier of the member (user or group) for which to delete granted permissions.
sourcepub fn set_grantee_id(self, input: Option<String>) -> Self
pub fn set_grantee_id(self, input: Option<String>) -> Self
The identifier of the member (user or group) for which to delete granted permissions.
sourcepub fn get_grantee_id(&self) -> &Option<String>
pub fn get_grantee_id(&self) -> &Option<String>
The identifier of the member (user or group) for which to delete granted permissions.
Trait Implementations§
source§impl Clone for DeleteMailboxPermissionsFluentBuilder
impl Clone for DeleteMailboxPermissionsFluentBuilder
source§fn clone(&self) -> DeleteMailboxPermissionsFluentBuilder
fn clone(&self) -> DeleteMailboxPermissionsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more