CfnInstanceAccessControlAttributeConfigurationProps
- class aws_cdk.aws_sso.CfnInstanceAccessControlAttributeConfigurationProps(*, instance_arn, access_control_attributes=None)
Bases:
object
Properties for defining a
CfnInstanceAccessControlAttributeConfiguration
.- Parameters:
instance_arn (
str
) – The ARN of the IAM Identity Center instance under which the operation will be executed.access_control_attributes (
Union
[IResolvable
,Sequence
[Union
[AccessControlAttributeProperty
,Dict
[str
,Any
],IResolvable
]],None
]) – Lists the attributes that are configured for ABAC in the specified IAM Identity Center instance.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_sso as sso cfn_instance_access_control_attribute_configuration_props = sso.CfnInstanceAccessControlAttributeConfigurationProps( instance_arn="instanceArn", # the properties below are optional access_control_attributes=[sso.CfnInstanceAccessControlAttributeConfiguration.AccessControlAttributeProperty( key="key", value=sso.CfnInstanceAccessControlAttributeConfiguration.AccessControlAttributeValueProperty( source=["source"] ) )] )
Attributes
- access_control_attributes
Lists the attributes that are configured for ABAC in the specified IAM Identity Center instance.
- instance_arn
The ARN of the IAM Identity Center instance under which the operation will be executed.