Interface CfnSecurityProfile.DataTableAccessControlConfigurationProperty

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

@Stability(Stable) public static interface CfnSecurityProfile.DataTableAccessControlConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Defines the access control configuration for data tables.

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

See Also: