#[non_exhaustive]pub struct ProvisionPermissionSetInput {
pub instance_arn: Option<String>,
pub permission_set_arn: Option<String>,
pub target_id: Option<String>,
pub target_type: Option<ProvisionTargetType>,
}
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.instance_arn: Option<String>
The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference.
permission_set_arn: Option<String>
The ARN of the permission set.
target_id: Option<String>
TargetID is an AWS account identifier, typically a 10-12 digit string (For example, 123456789012).
target_type: Option<ProvisionTargetType>
The entity type for which the assignment will be created.
Implementations§
source§impl ProvisionPermissionSetInput
impl ProvisionPermissionSetInput
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. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference.
sourcepub fn permission_set_arn(&self) -> Option<&str>
pub fn permission_set_arn(&self) -> Option<&str>
The ARN of the permission set.
sourcepub fn target_id(&self) -> Option<&str>
pub fn target_id(&self) -> Option<&str>
TargetID is an AWS account identifier, typically a 10-12 digit string (For example, 123456789012).
sourcepub fn target_type(&self) -> Option<&ProvisionTargetType>
pub fn target_type(&self) -> Option<&ProvisionTargetType>
The entity type for which the assignment will be created.
source§impl ProvisionPermissionSetInput
impl ProvisionPermissionSetInput
sourcepub fn builder() -> ProvisionPermissionSetInputBuilder
pub fn builder() -> ProvisionPermissionSetInputBuilder
Creates a new builder-style object to manufacture ProvisionPermissionSetInput
.
Trait Implementations§
source§impl Clone for ProvisionPermissionSetInput
impl Clone for ProvisionPermissionSetInput
source§fn clone(&self) -> ProvisionPermissionSetInput
fn clone(&self) -> ProvisionPermissionSetInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ProvisionPermissionSetInput
impl Debug for ProvisionPermissionSetInput
source§impl PartialEq<ProvisionPermissionSetInput> for ProvisionPermissionSetInput
impl PartialEq<ProvisionPermissionSetInput> for ProvisionPermissionSetInput
source§fn eq(&self, other: &ProvisionPermissionSetInput) -> bool
fn eq(&self, other: &ProvisionPermissionSetInput) -> bool
self
and other
values to be equal, and is used
by ==
.