package awssso // 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 "github.com/aws/aws-cdk-go/awscdk" // // accessControlAttributeProperty := &AccessControlAttributeProperty{ // Key: jsii.String("key"), // Value: &AccessControlAttributeValueProperty{ // Source: []*string{ // jsii.String("source"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sso-instanceaccesscontrolattributeconfiguration-accesscontrolattribute.html // type CfnInstanceAccessControlAttributeConfiguration_AccessControlAttributeProperty struct { // 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 IAM Identity Center . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sso-instanceaccesscontrolattributeconfiguration-accesscontrolattribute.html#cfn-sso-instanceaccesscontrolattributeconfiguration-accesscontrolattribute-key // Key *string `field:"required" json:"key" yaml:"key"` // The value used for mapping a specified attribute to an identity source. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sso-instanceaccesscontrolattributeconfiguration-accesscontrolattribute.html#cfn-sso-instanceaccesscontrolattributeconfiguration-accesscontrolattribute-value // Value interface{} `field:"required" json:"value" yaml:"value"` }