Interface CfnInstanceAccessControlAttributeConfiguration.AccessControlAttributeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnInstanceAccessControlAttributeConfiguration.AccessControlAttributeProperty.Jsii$Proxy
Enclosing class:
CfnInstanceAccessControlAttributeConfiguration

@Stability(Stable) public static interface CfnInstanceAccessControlAttributeConfiguration.AccessControlAttributeProperty extends software.amazon.jsii.JsiiSerializable
These are IAM Identity Center 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 , IAM Identity Center 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 software.amazon.awscdk.services.sso.*;
 AccessControlAttributeProperty accessControlAttributeProperty = AccessControlAttributeProperty.builder()
         .key("key")
         .value(AccessControlAttributeValueProperty.builder()
                 .source(List.of("source"))
                 .build())
         .build();
 

See Also: