Struct aws_sdk_workmail::operation::associate_delegate_to_resource::AssociateDelegateToResourceInput
source · #[non_exhaustive]pub struct AssociateDelegateToResourceInput {
pub organization_id: Option<String>,
pub resource_id: Option<String>,
pub entity_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 organization under which the resource exists.
resource_id: Option<String>
The resource for which members (users or groups) are associated.
entity_id: Option<String>
The member (user or group) to associate to the resource.
Implementations§
source§impl AssociateDelegateToResourceInput
impl AssociateDelegateToResourceInput
sourcepub fn organization_id(&self) -> Option<&str>
pub fn organization_id(&self) -> Option<&str>
The organization under which the resource exists.
sourcepub fn resource_id(&self) -> Option<&str>
pub fn resource_id(&self) -> Option<&str>
The resource for which members (users or groups) are associated.
source§impl AssociateDelegateToResourceInput
impl AssociateDelegateToResourceInput
sourcepub fn builder() -> AssociateDelegateToResourceInputBuilder
pub fn builder() -> AssociateDelegateToResourceInputBuilder
Creates a new builder-style object to manufacture AssociateDelegateToResourceInput
.
Trait Implementations§
source§impl Clone for AssociateDelegateToResourceInput
impl Clone for AssociateDelegateToResourceInput
source§fn clone(&self) -> AssociateDelegateToResourceInput
fn clone(&self) -> AssociateDelegateToResourceInput
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<AssociateDelegateToResourceInput> for AssociateDelegateToResourceInput
impl PartialEq<AssociateDelegateToResourceInput> for AssociateDelegateToResourceInput
source§fn eq(&self, other: &AssociateDelegateToResourceInput) -> bool
fn eq(&self, other: &AssociateDelegateToResourceInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AssociateDelegateToResourceInput
Auto Trait Implementations§
impl RefUnwindSafe for AssociateDelegateToResourceInput
impl Send for AssociateDelegateToResourceInput
impl Sync for AssociateDelegateToResourceInput
impl Unpin for AssociateDelegateToResourceInput
impl UnwindSafe for AssociateDelegateToResourceInput
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