Struct aws_sdk_ssoadmin::operation::put_permissions_boundary_to_permission_set::PutPermissionsBoundaryToPermissionSetInput
source · #[non_exhaustive]pub struct PutPermissionsBoundaryToPermissionSetInput {
pub instance_arn: Option<String>,
pub permission_set_arn: Option<String>,
pub permissions_boundary: Option<PermissionsBoundary>,
}
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.instance_arn: Option<String>
The ARN of the IAM Identity Center instance under which the operation will be executed.
permission_set_arn: Option<String>
The ARN of the PermissionSet
.
permissions_boundary: Option<PermissionsBoundary>
The permissions boundary that you want to attach to a PermissionSet
.
Implementations§
source§impl PutPermissionsBoundaryToPermissionSetInput
impl PutPermissionsBoundaryToPermissionSetInput
sourcepub fn instance_arn(&self) -> Option<&str>
pub fn instance_arn(&self) -> Option<&str>
The ARN of the IAM Identity Center instance under which the operation will be executed.
sourcepub fn permission_set_arn(&self) -> Option<&str>
pub fn permission_set_arn(&self) -> Option<&str>
The ARN of the PermissionSet
.
sourcepub fn permissions_boundary(&self) -> Option<&PermissionsBoundary>
pub fn permissions_boundary(&self) -> Option<&PermissionsBoundary>
The permissions boundary that you want to attach to a PermissionSet
.
source§impl PutPermissionsBoundaryToPermissionSetInput
impl PutPermissionsBoundaryToPermissionSetInput
sourcepub fn builder() -> PutPermissionsBoundaryToPermissionSetInputBuilder
pub fn builder() -> PutPermissionsBoundaryToPermissionSetInputBuilder
Creates a new builder-style object to manufacture PutPermissionsBoundaryToPermissionSetInput
.
Trait Implementations§
source§impl Clone for PutPermissionsBoundaryToPermissionSetInput
impl Clone for PutPermissionsBoundaryToPermissionSetInput
source§fn clone(&self) -> PutPermissionsBoundaryToPermissionSetInput
fn clone(&self) -> PutPermissionsBoundaryToPermissionSetInput
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 PutPermissionsBoundaryToPermissionSetInput
impl PartialEq for PutPermissionsBoundaryToPermissionSetInput
source§fn eq(&self, other: &PutPermissionsBoundaryToPermissionSetInput) -> bool
fn eq(&self, other: &PutPermissionsBoundaryToPermissionSetInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PutPermissionsBoundaryToPermissionSetInput
Auto Trait Implementations§
impl RefUnwindSafe for PutPermissionsBoundaryToPermissionSetInput
impl Send for PutPermissionsBoundaryToPermissionSetInput
impl Sync for PutPermissionsBoundaryToPermissionSetInput
impl Unpin for PutPermissionsBoundaryToPermissionSetInput
impl UnwindSafe for PutPermissionsBoundaryToPermissionSetInput
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.