interface CfnInstanceAccessControlAttributeConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSO.CfnInstanceAccessControlAttributeConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssso#CfnInstanceAccessControlAttributeConfigurationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.sso.CfnInstanceAccessControlAttributeConfigurationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_sso.CfnInstanceAccessControlAttributeConfigurationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sso » 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 { aws_sso as sso } from '@aws-cdk/cfn-property-mixins';
const cfnInstanceAccessControlAttributeConfigurationMixinProps: sso.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 instance. |
| instance | IResolvable | Instance | The InstanceAccessControlAttributeConfiguration property has been deprecated but is still supported for backwards compatibility purposes. |
| instance | string | The ARN of the 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 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 instance under which the operation will be executed.

.NET
Go
Java
Python
TypeScript