class CfnInstanceAccessControlAttributeConfigurationPropsMixin
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSO.Mixins.CfnInstanceAccessControlAttributeConfigurationPropsMixin |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssso/mixins#CfnInstanceAccessControlAttributeConfigurationPropsMixin |
Java | software.amazon.awscdk.mixins.preview.services.sso.mixins.CfnInstanceAccessControlAttributeConfigurationPropsMixin |
Python | aws_cdk.mixins_preview.aws_sso.mixins.CfnInstanceAccessControlAttributeConfigurationPropsMixin |
TypeScript | @aws-cdk/mixins-preview » aws_sso » mixins » CfnInstanceAccessControlAttributeConfigurationPropsMixin |
Implements
IMixin
Extends
Mixin
Enables the attribute-based access control (ABAC) feature for the specified instance.
You can also specify new attributes to add to your ABAC configuration during the enabling process. For more information about ABAC, see Attribute-Based Access Control in the User Guide .
The
InstanceAccessControlAttributeConfigurationproperty has been deprecated but is still supported for backwards compatibility purposes. We recommend that you use theAccessControlAttributesproperty instead.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins } from '@aws-cdk/mixins-preview';
import { mixins as sso_mixins } from '@aws-cdk/mixins-preview/aws-sso';
const cfnInstanceAccessControlAttributeConfigurationPropsMixin = new sso_mixins.CfnInstanceAccessControlAttributeConfigurationPropsMixin({
accessControlAttributes: [{
key: 'key',
value: {
source: ['source'],
},
}],
instanceAccessControlAttributeConfiguration: {
accessControlAttributes: [{
key: 'key',
value: {
source: ['source'],
},
}],
},
instanceArn: 'instanceArn',
}, /* all optional props */ {
strategy: mixins.PropertyMergeStrategy.OVERRIDE,
});
Initializer
new CfnInstanceAccessControlAttributeConfigurationPropsMixin(props: CfnInstanceAccessControlAttributeConfigurationMixinProps, options?: CfnPropertyMixinOptions)
Parameters
- props
Cfn— L1 properties to apply.Instance Access Control Attribute Configuration Mixin Props - options
Cfn— Mixin options.Property Mixin Options
Create a mixin to apply properties to AWS::SSO::InstanceAccessControlAttributeConfiguration.
Properties
| Name | Type | Description |
|---|---|---|
| props | Cfn | |
| strategy | Property | |
| static CFN_PROPERTY_KEYS | string[] |
props
Type:
Cfn
strategy
Type:
Property
static CFN_PROPERTY_KEYS
Type:
string[]
Methods
| Name | Description |
|---|---|
| apply | Apply the mixin properties to the construct. |
| supports(construct) | Check if this mixin supports the given construct. |
applyTo(construct)
public applyTo(construct: IConstruct): IConstruct
Parameters
- construct
IConstruct
Returns
Apply the mixin properties to the construct.
supports(construct)
public supports(construct: IConstruct): boolean
Parameters
- construct
IConstruct
Returns
boolean
Check if this mixin supports the given construct.

.NET
Go
Java
Python
TypeScript