interface CfnInstanceAccessControlAttributeConfigurationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSO.CfnInstanceAccessControlAttributeConfigurationProps |
Java | software.amazon.awscdk.services.sso.CfnInstanceAccessControlAttributeConfigurationProps |
Python | aws_cdk.aws_sso.CfnInstanceAccessControlAttributeConfigurationProps |
TypeScript | @aws-cdk/aws-sso » CfnInstanceAccessControlAttributeConfigurationProps |
Properties for defining a CfnInstanceAccessControlAttributeConfiguration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sso from '@aws-cdk/aws-sso';
const cfnInstanceAccessControlAttributeConfigurationProps: sso.CfnInstanceAccessControlAttributeConfigurationProps = {
instanceArn: 'instanceArn',
// the properties below are optional
accessControlAttributes: [{
key: 'key',
value: {
source: ['source'],
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | The ARN of the IAM Identity Center instance under which the operation will be executed. |
| access | IResolvable | Access | IResolvable[] | Lists the attributes that are configured for ABAC in the specified IAM Identity Center instance. |
instanceArn
Type:
string
The ARN of the IAM Identity Center instance under which the operation will be executed.
accessControlAttributes?
Type:
IResolvable | Access | IResolvable[]
(optional)
Lists the attributes that are configured for ABAC in the specified IAM Identity Center instance.

.NET
Java
Python
TypeScript