interface VpcConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.LookoutMetrics.CfnAnomalyDetectorPropsMixin.VpcConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslookoutmetrics#CfnAnomalyDetectorPropsMixin_VpcConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lookoutmetrics.CfnAnomalyDetectorPropsMixin.VpcConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_lookoutmetrics.CfnAnomalyDetectorPropsMixin.VpcConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lookoutmetrics » CfnAnomalyDetectorPropsMixin » VpcConfigurationProperty |
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 { aws_lookoutmetrics as lookoutmetrics } from '@aws-cdk/cfn-property-mixins';
const vpcConfigurationProperty: lookoutmetrics.CfnAnomalyDetectorPropsMixin.VpcConfigurationProperty = {
securityGroupIdList: ['securityGroupIdList'],
subnetIdList: ['subnetIdList'],
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | An array of strings containing the list of security groups. |
| subnet | string[] | An array of strings containing the Amazon VPC subnet IDs (e.g., subnet-0bb1c79de3EXAMPLE . |
securityGroupIdList?
Type:
string[]
(optional)
An array of strings containing the list of security groups.
subnetIdList?
Type:
string[]
(optional)
An array of strings containing the Amazon VPC subnet IDs (e.g., subnet-0bb1c79de3EXAMPLE .

.NET
Go
Java
Python
TypeScript