Interface CfnSecurityProfile.PrimaryAttributeAccessControlConfigurationItemProperty

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

@Stability(Stable) public static interface CfnSecurityProfile.PrimaryAttributeAccessControlConfigurationItemProperty extends software.amazon.jsii.JsiiSerializable
Contains the configuration for record-based access control.

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

See Also: