interface VpcConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LookoutMetrics.Mixins.CfnAnomalyDetectorPropsMixin.VpcConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslookoutmetrics/mixins#CfnAnomalyDetectorPropsMixin_VpcConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.lookoutmetrics.mixins.CfnAnomalyDetectorPropsMixin.VpcConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_lookoutmetrics.mixins.CfnAnomalyDetectorPropsMixin.VpcConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lookoutmetrics » mixins » 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 { mixins as lookoutmetrics_mixins } from '@aws-cdk/mixins-preview/aws-lookoutmetrics';
const vpcConfigurationProperty: lookoutmetrics_mixins.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