#[non_exhaustive]pub struct AccountAssignmentForPrincipal {
pub account_id: Option<String>,
pub permission_set_arn: Option<String>,
pub principal_id: Option<String>,
pub principal_type: Option<PrincipalType>,
}
Expand description
A structure that describes an assignment of an Amazon Web Services account to a principal and the permissions that principal has in the account.
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.account_id: Option<String>
The account ID number of the Amazon Web Services account.
permission_set_arn: Option<String>
The ARN of the IAM Identity Center permission set assigned to this principal for this Amazon Web Services account.
principal_id: Option<String>
The ID of the principal.
principal_type: Option<PrincipalType>
The type of the principal.
Implementations§
source§impl AccountAssignmentForPrincipal
impl AccountAssignmentForPrincipal
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The account ID number of the Amazon Web Services account.
sourcepub fn permission_set_arn(&self) -> Option<&str>
pub fn permission_set_arn(&self) -> Option<&str>
The ARN of the IAM Identity Center permission set assigned to this principal for this Amazon Web Services account.
sourcepub fn principal_id(&self) -> Option<&str>
pub fn principal_id(&self) -> Option<&str>
The ID of the principal.
sourcepub fn principal_type(&self) -> Option<&PrincipalType>
pub fn principal_type(&self) -> Option<&PrincipalType>
The type of the principal.
source§impl AccountAssignmentForPrincipal
impl AccountAssignmentForPrincipal
sourcepub fn builder() -> AccountAssignmentForPrincipalBuilder
pub fn builder() -> AccountAssignmentForPrincipalBuilder
Creates a new builder-style object to manufacture AccountAssignmentForPrincipal
.
Trait Implementations§
source§impl Clone for AccountAssignmentForPrincipal
impl Clone for AccountAssignmentForPrincipal
source§fn clone(&self) -> AccountAssignmentForPrincipal
fn clone(&self) -> AccountAssignmentForPrincipal
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 for AccountAssignmentForPrincipal
impl PartialEq for AccountAssignmentForPrincipal
source§fn eq(&self, other: &AccountAssignmentForPrincipal) -> bool
fn eq(&self, other: &AccountAssignmentForPrincipal) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AccountAssignmentForPrincipal
Auto Trait Implementations§
impl RefUnwindSafe for AccountAssignmentForPrincipal
impl Send for AccountAssignmentForPrincipal
impl Sync for AccountAssignmentForPrincipal
impl Unpin for AccountAssignmentForPrincipal
impl UnwindSafe for AccountAssignmentForPrincipal
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.