interface AccessControlAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSO.CfnInstanceAccessControlAttributeConfigurationPropsMixin.AccessControlAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssso#CfnInstanceAccessControlAttributeConfigurationPropsMixin_AccessControlAttributeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sso.CfnInstanceAccessControlAttributeConfigurationPropsMixin.AccessControlAttributeProperty |
Python | aws_cdk.cfn_property_mixins.aws_sso.CfnInstanceAccessControlAttributeConfigurationPropsMixin.AccessControlAttributeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sso » CfnInstanceAccessControlAttributeConfigurationPropsMixin » AccessControlAttributeProperty |
These are identity store attributes that you can configure for use in attributes-based access control (ABAC).
You can create permissions policies that determine who can access your AWS resources based upon the configured attribute values. When you enable ABAC and specify AccessControlAttributes , passes the attribute values of the authenticated user into IAM for use in policy evaluation.
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 accessControlAttributeProperty: sso.CfnInstanceAccessControlAttributeConfigurationPropsMixin.AccessControlAttributeProperty = {
key: 'key',
value: {
source: ['source'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The name of the attribute associated with your identities in your identity source. |
| value? | IResolvable | Access | The value used for mapping a specified attribute to an identity source. |
key?
Type:
string
(optional)
The name of the attribute associated with your identities in your identity source.
This is used to map a specified attribute in your identity source with an attribute in .
value?
Type:
IResolvable | Access
(optional)
The value used for mapping a specified attribute to an identity source.

.NET
Go
Java
Python
TypeScript