pub struct PutMailboxPermissions { /* 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 PutMailboxPermissions
impl PutMailboxPermissions
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<PutMailboxPermissions, AwsResponseRetryClassifier>, SdkError<PutMailboxPermissionsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<PutMailboxPermissions, AwsResponseRetryClassifier>, SdkError<PutMailboxPermissionsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<PutMailboxPermissionsOutput, SdkError<PutMailboxPermissionsError>>
pub async fn send(
self
) -> Result<PutMailboxPermissionsOutput, SdkError<PutMailboxPermissionsError>>
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 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 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 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 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.
Trait Implementations§
source§impl Clone for PutMailboxPermissions
impl Clone for PutMailboxPermissions
source§fn clone(&self) -> PutMailboxPermissions
fn clone(&self) -> PutMailboxPermissions
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more