Struct aws_sdk_workmail::model::Permission [−][src]
#[non_exhaustive]pub struct Permission {
pub grantee_id: Option<String>,
pub grantee_type: Option<MemberType>,
pub permission_values: Option<Vec<PermissionType>>,
}
Expand description
Permission granted to a user, group, or resource to access a certain aspect of another user, group, or resource mailbox.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.grantee_id: Option<String>
The identifier of the user, group, or resource to which the permissions are granted.
grantee_type: Option<MemberType>
The type of user, group, or resource referred to in GranteeId.
permission_values: 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.
Implementations
The identifier of the user, group, or resource to which the permissions are granted.
The type of user, group, or resource referred to in GranteeId.
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.
Creates a new builder-style object to manufacture Permission
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for Permission
impl Send for Permission
impl Sync for Permission
impl Unpin for Permission
impl UnwindSafe for Permission
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more