Struct aws_sdk_workmail::operation::get_mobile_device_access_override::GetMobileDeviceAccessOverrideInput
source · #[non_exhaustive]pub struct GetMobileDeviceAccessOverrideInput {
pub organization_id: Option<String>,
pub user_id: Option<String>,
pub device_id: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.organization_id: Option<String>
The WorkMail organization to which you want to apply the override.
user_id: Option<String>
Identifies the WorkMail user for the override. Accepts the following types of user identities:
-
User ID:
12345678-1234-1234-1234-123456789012
orS-1-1-12-1234567890-123456789-123456789-1234
-
Email address:
user@domain.tld
-
User name:
user
device_id: Option<String>
The mobile device to which the override applies. DeviceId
is case insensitive.
Implementations§
source§impl GetMobileDeviceAccessOverrideInput
impl GetMobileDeviceAccessOverrideInput
sourcepub fn organization_id(&self) -> Option<&str>
pub fn organization_id(&self) -> Option<&str>
The WorkMail organization to which you want to apply the override.
source§impl GetMobileDeviceAccessOverrideInput
impl GetMobileDeviceAccessOverrideInput
sourcepub fn builder() -> GetMobileDeviceAccessOverrideInputBuilder
pub fn builder() -> GetMobileDeviceAccessOverrideInputBuilder
Creates a new builder-style object to manufacture GetMobileDeviceAccessOverrideInput
.
Trait Implementations§
source§impl Clone for GetMobileDeviceAccessOverrideInput
impl Clone for GetMobileDeviceAccessOverrideInput
source§fn clone(&self) -> GetMobileDeviceAccessOverrideInput
fn clone(&self) -> GetMobileDeviceAccessOverrideInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<GetMobileDeviceAccessOverrideInput> for GetMobileDeviceAccessOverrideInput
impl PartialEq<GetMobileDeviceAccessOverrideInput> for GetMobileDeviceAccessOverrideInput
source§fn eq(&self, other: &GetMobileDeviceAccessOverrideInput) -> bool
fn eq(&self, other: &GetMobileDeviceAccessOverrideInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetMobileDeviceAccessOverrideInput
Auto Trait Implementations§
impl RefUnwindSafe for GetMobileDeviceAccessOverrideInput
impl Send for GetMobileDeviceAccessOverrideInput
impl Sync for GetMobileDeviceAccessOverrideInput
impl Unpin for GetMobileDeviceAccessOverrideInput
impl UnwindSafe for GetMobileDeviceAccessOverrideInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more