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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnomalyDetector.VpcConfigurationProperty
static final class
An implementation forCfnAnomalyDetector.VpcConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
An array of strings containing the list of security groups.An array of strings containing the Amazon VPC subnet IDs (e.g.,subnet-0bb1c79de3EXAMPLE
.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroupIdList
An array of strings containing the list of security groups.- See Also:
-
getSubnetIdList
An array of strings containing the Amazon VPC subnet IDs (e.g.,subnet-0bb1c79de3EXAMPLE
.- See Also:
-
builder
-