Interface CfnConfiguration.RunConfigurationsProperty

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

@Stability(Stable) public static interface CfnConfiguration.RunConfigurationsProperty extends software.amazon.jsii.JsiiSerializable
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.omics.*;
 RunConfigurationsProperty runConfigurationsProperty = RunConfigurationsProperty.builder()
         .vpcConfig(VpcConfigProperty.builder()
                 .securityGroupIds(List.of("securityGroupIds"))
                 .subnetIds(List.of("subnetIds"))
                 .build())
         .build();
 

See Also: