Struct aws_sdk_workmail::model::permission::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for Permission
.
Implementations§
source§impl Builder
impl Builder
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 the permissions are granted.
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 the permissions are granted.
sourcepub fn grantee_type(self, input: MemberType) -> Self
pub fn grantee_type(self, input: MemberType) -> Self
The type of user, group, or resource referred to in GranteeId.
sourcepub fn set_grantee_type(self, input: Option<MemberType>) -> Self
pub fn set_grantee_type(self, input: Option<MemberType>) -> Self
The type of user, group, or resource referred to in GranteeId.
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 build(self) -> Permission
pub fn build(self) -> Permission
Consumes the builder and constructs a Permission
.