Class CfnAnomalyDetector.VpcConfigurationProperty
Contains configuration information about the Amazon Virtual Private Cloud (VPC).
Inheritance
System.Object
CfnAnomalyDetector.VpcConfigurationProperty
Implements
Namespace: Amazon.CDK.AWS.LookoutMetrics
Assembly: Amazon.CDK.AWS.LookoutMetrics.dll
Syntax (csharp)
public class VpcConfigurationProperty : Object, CfnAnomalyDetector.IVpcConfigurationProperty
Syntax (vb)
Public Class VpcConfigurationProperty
Inherits Object
Implements CfnAnomalyDetector.IVpcConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.LookoutMetrics;
var vpcConfigurationProperty = new VpcConfigurationProperty {
SecurityGroupIdList = new [] { "securityGroupIdList" },
SubnetIdList = new [] { "subnetIdList" }
};
Synopsis
Constructors
VpcConfigurationProperty() |
Properties
SecurityGroupIdList | An array of strings containing the list of security groups. |
SubnetIdList | An array of strings containing the Amazon VPC subnet IDs (e.g., |
Constructors
VpcConfigurationProperty()
public VpcConfigurationProperty()
Properties
SecurityGroupIdList
An array of strings containing the list of security groups.
public string[] SecurityGroupIdList { get; set; }
Property Value
System.String[]
Remarks
SubnetIdList
An array of strings containing the Amazon VPC subnet IDs (e.g., subnet-0bb1c79de3EXAMPLE
.
public string[] SubnetIdList { get; set; }
Property Value
System.String[]