Struct aws_sdk_workmail::operation::put_mailbox_permissions::builders::PutMailboxPermissionsInputBuilder
source · #[non_exhaustive]pub struct PutMailboxPermissionsInputBuilder { /* private fields */ }
Expand description
A builder for PutMailboxPermissionsInput
.
Implementations§
source§impl PutMailboxPermissionsInputBuilder
impl PutMailboxPermissionsInputBuilder
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 permission_values
.
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.
sourcepub fn build(self) -> Result<PutMailboxPermissionsInput, BuildError>
pub fn build(self) -> Result<PutMailboxPermissionsInput, BuildError>
Consumes the builder and constructs a PutMailboxPermissionsInput
.
source§impl PutMailboxPermissionsInputBuilder
impl PutMailboxPermissionsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<PutMailboxPermissionsOutput, SdkError<PutMailboxPermissionsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<PutMailboxPermissionsOutput, SdkError<PutMailboxPermissionsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for PutMailboxPermissionsInputBuilder
impl Clone for PutMailboxPermissionsInputBuilder
source§fn clone(&self) -> PutMailboxPermissionsInputBuilder
fn clone(&self) -> PutMailboxPermissionsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for PutMailboxPermissionsInputBuilder
impl Default for PutMailboxPermissionsInputBuilder
source§fn default() -> PutMailboxPermissionsInputBuilder
fn default() -> PutMailboxPermissionsInputBuilder
source§impl PartialEq<PutMailboxPermissionsInputBuilder> for PutMailboxPermissionsInputBuilder
impl PartialEq<PutMailboxPermissionsInputBuilder> for PutMailboxPermissionsInputBuilder
source§fn eq(&self, other: &PutMailboxPermissionsInputBuilder) -> bool
fn eq(&self, other: &PutMailboxPermissionsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.