Struct aws_sdk_workmail::operation::put_mailbox_permissions::builders::PutMailboxPermissionsFluentBuilder
source · pub struct PutMailboxPermissionsFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to PutMailboxPermissions
.
Sets permissions for a user, group, or resource. This replaces any pre-existing permissions.
Implementations§
source§impl PutMailboxPermissionsFluentBuilder
impl PutMailboxPermissionsFluentBuilder
sourcepub fn as_input(&self) -> &PutMailboxPermissionsInputBuilder
pub fn as_input(&self) -> &PutMailboxPermissionsInputBuilder
Access the PutMailboxPermissions as a reference.
sourcepub async fn send(
self
) -> Result<PutMailboxPermissionsOutput, SdkError<PutMailboxPermissionsError, HttpResponse>>
pub async fn send( self ) -> Result<PutMailboxPermissionsOutput, SdkError<PutMailboxPermissionsError, 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<PutMailboxPermissionsOutput, PutMailboxPermissionsError>, SdkError<PutMailboxPermissionsError>>
pub async fn customize( self ) -> Result<CustomizableOperation<PutMailboxPermissionsOutput, PutMailboxPermissionsError>, SdkError<PutMailboxPermissionsError>>
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 user, group, or resource 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 user, group, or resource 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 user, group, or resource 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 user, group, or resource for which to update mailbox permissions.
sourcepub fn set_entity_id(self, input: Option<String>) -> Self
pub fn set_entity_id(self, input: Option<String>) -> Self
The identifier of the user, group, or resource for which to update mailbox permissions.
sourcepub fn get_entity_id(&self) -> &Option<String>
pub fn get_entity_id(&self) -> &Option<String>
The identifier of the user, group, or resource for which to update mailbox permissions.
sourcepub fn grantee_id(self, input: impl Into<String>) -> Self
pub fn grantee_id(self, input: impl Into<String>) -> Self
The identifier of the user, group, or resource to which to grant the 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 user, group, or resource to which to grant the permissions.
sourcepub fn get_grantee_id(&self) -> &Option<String>
pub fn get_grantee_id(&self) -> &Option<String>
The identifier of the user, group, or resource to which to grant the permissions.
sourcepub fn permission_values(self, input: PermissionType) -> Self
pub fn permission_values(self, input: PermissionType) -> Self
Appends an item to PermissionValues
.
To override the contents of this collection use set_permission_values
.
The permissions granted to the grantee. SEND_AS allows the grantee to send email as the owner of the mailbox (the grantee is not mentioned on these emails). SEND_ON_BEHALF allows the grantee to send email on behalf of the owner of the mailbox (the grantee is not mentioned as the physical sender of these emails). FULL_ACCESS allows the grantee full access to the mailbox, irrespective of other folder-level permissions set on the mailbox.
sourcepub fn set_permission_values(self, input: Option<Vec<PermissionType>>) -> Self
pub fn set_permission_values(self, input: Option<Vec<PermissionType>>) -> Self
The permissions granted to the grantee. SEND_AS allows the grantee to send email as the owner of the mailbox (the grantee is not mentioned on these emails). SEND_ON_BEHALF allows the grantee to send email on behalf of the owner of the mailbox (the grantee is not mentioned as the physical sender of these emails). FULL_ACCESS allows the grantee full access to the mailbox, irrespective of other folder-level permissions set on the mailbox.
sourcepub fn get_permission_values(&self) -> &Option<Vec<PermissionType>>
pub fn get_permission_values(&self) -> &Option<Vec<PermissionType>>
The permissions granted to the grantee. SEND_AS allows the grantee to send email as the owner of the mailbox (the grantee is not mentioned on these emails). SEND_ON_BEHALF allows the grantee to send email on behalf of the owner of the mailbox (the grantee is not mentioned as the physical sender of these emails). FULL_ACCESS allows the grantee full access to the mailbox, irrespective of other folder-level permissions set on the mailbox.
Trait Implementations§
source§impl Clone for PutMailboxPermissionsFluentBuilder
impl Clone for PutMailboxPermissionsFluentBuilder
source§fn clone(&self) -> PutMailboxPermissionsFluentBuilder
fn clone(&self) -> PutMailboxPermissionsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more