Interface CfnSecurityProfile.PrimaryAttributeValueProperty

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

@Stability(Stable) public static interface CfnSecurityProfile.PrimaryAttributeValueProperty extends software.amazon.jsii.JsiiSerializable
An object defining the access control for a specific attribute and its values.

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.connect.*;
 PrimaryAttributeValueProperty primaryAttributeValueProperty = PrimaryAttributeValueProperty.builder()
         .accessType("accessType")
         .attributeName("attributeName")
         .values(List.of("values"))
         .build();
 

See Also: