Interface CfnAnomalyDetector.VpcConfigurationProperty

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

@Stability(Stable) public static interface CfnAnomalyDetector.VpcConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains configuration information about the Amazon Virtual Private Cloud (VPC).

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.lookoutmetrics.*;
 VpcConfigurationProperty vpcConfigurationProperty = VpcConfigurationProperty.builder()
         .securityGroupIdList(List.of("securityGroupIdList"))
         .subnetIdList(List.of("subnetIdList"))
         .build();
 

See Also: