interface CfnInstanceAccessControlAttributeConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSO.Mixins.CfnInstanceAccessControlAttributeConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssso/mixins#CfnInstanceAccessControlAttributeConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.sso.mixins.CfnInstanceAccessControlAttributeConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_sso.mixins.CfnInstanceAccessControlAttributeConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_sso » mixins » CfnInstanceAccessControlAttributeConfigurationMixinProps |
Properties for CfnInstanceAccessControlAttributeConfigurationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sso_mixins } from '@aws-cdk/mixins-preview/aws-sso';
const cfnInstanceAccessControlAttributeConfigurationMixinProps: sso_mixins.CfnInstanceAccessControlAttributeConfigurationMixinProps = {
accessControlAttributes: [{
key: 'key',
value: {
source: ['source'],
},
}],
instanceAccessControlAttributeConfiguration: {
accessControlAttributes: [{
key: 'key',
value: {
source: ['source'],
},
}],
},
instanceArn: 'instanceArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | IResolvable | (IResolvable | Access)[] | Lists the attributes that are configured for ABAC in the specified IAM Identity Center instance. |
| instance | IResolvable | Instance | The InstanceAccessControlAttributeConfiguration property has been deprecated but is still supported for backwards compatibility purposes. |
| instance | string | The ARN of the IAM Identity Center instance under which the operation will be executed. |
accessControlAttributes?
Type:
IResolvable | (IResolvable | Access)[]
(optional)
Lists the attributes that are configured for ABAC in the specified IAM Identity Center instance.
instanceAccessControlAttributeConfiguration?
⚠️ Deprecated: this property has been deprecated
Type:
IResolvable | Instance
(optional)
The InstanceAccessControlAttributeConfiguration property has been deprecated but is still supported for backwards compatibility purposes.
We recomend that you use AccessControlAttributes property instead.
instanceArn?
Type:
string
(optional)
The ARN of the IAM Identity Center instance under which the operation will be executed.

.NET
Go
Java
Python
TypeScript