#[non_exhaustive]pub struct ListMailboxPermissionsInput {
pub organization_id: Option<String>,
pub entity_id: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
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.organization_id: Option<String>
The identifier of the organization under which the user, group, or resource exists.
entity_id: Option<String>
The identifier of the user, or resource for which to list mailbox permissions.
The entity ID can accept UserId or ResourceId, Username or Resourcename, or email.
-
Entity ID: 12345678-1234-1234-1234-123456789012, or r-0123456789a0123456789b0123456789
-
Email address: entity@domain.tld
-
Entity name: entity
next_token: Option<String>
The token to use to retrieve the next page of results. The first call does not contain any tokens.
max_results: Option<i32>
The maximum number of results to return in a single call.
Implementations§
source§impl ListMailboxPermissionsInput
impl ListMailboxPermissionsInput
sourcepub fn organization_id(&self) -> Option<&str>
pub fn organization_id(&self) -> Option<&str>
The identifier of the organization under which the user, group, or resource exists.
sourcepub fn entity_id(&self) -> Option<&str>
pub fn entity_id(&self) -> Option<&str>
The identifier of the user, or resource for which to list mailbox permissions.
The entity ID can accept UserId or ResourceId, Username or Resourcename, or email.
-
Entity ID: 12345678-1234-1234-1234-123456789012, or r-0123456789a0123456789b0123456789
-
Email address: entity@domain.tld
-
Entity name: entity
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to use to retrieve the next page of results. The first call does not contain any tokens.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return in a single call.
source§impl ListMailboxPermissionsInput
impl ListMailboxPermissionsInput
sourcepub fn builder() -> ListMailboxPermissionsInputBuilder
pub fn builder() -> ListMailboxPermissionsInputBuilder
Creates a new builder-style object to manufacture ListMailboxPermissionsInput
.
Trait Implementations§
source§impl Clone for ListMailboxPermissionsInput
impl Clone for ListMailboxPermissionsInput
source§fn clone(&self) -> ListMailboxPermissionsInput
fn clone(&self) -> ListMailboxPermissionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListMailboxPermissionsInput
impl Debug for ListMailboxPermissionsInput
source§impl PartialEq for ListMailboxPermissionsInput
impl PartialEq for ListMailboxPermissionsInput
source§fn eq(&self, other: &ListMailboxPermissionsInput) -> bool
fn eq(&self, other: &ListMailboxPermissionsInput) -> bool
self
and other
values to be equal, and is used
by ==
.