Interface CfnFlywheel.DataSecurityConfigProperty

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

@Stability(Stable) public static interface CfnFlywheel.DataSecurityConfigProperty extends software.amazon.jsii.JsiiSerializable
Data security configuration.

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.comprehend.*;
 DataSecurityConfigProperty dataSecurityConfigProperty = DataSecurityConfigProperty.builder()
         .dataLakeKmsKeyId("dataLakeKmsKeyId")
         .modelKmsKeyId("modelKmsKeyId")
         .volumeKmsKeyId("volumeKmsKeyId")
         .vpcConfig(VpcConfigProperty.builder()
                 .securityGroupIds(List.of("securityGroupIds"))
                 .subnets(List.of("subnets"))
                 .build())
         .build();
 

See Also: