Interface CfnApplicationV2.VpcConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationV2.VpcConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationV2
@Stability(Stable)
public static interface CfnApplicationV2.VpcConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Describes the parameters of a VPC used by the application.
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.kinesisanalytics.*; VpcConfigurationProperty vpcConfigurationProperty = VpcConfigurationProperty.builder() .securityGroupIds(List.of("securityGroupIds")) .subnetIds(List.of("subnetIds")) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationV2.VpcConfigurationProperty
static final class
An implementation forCfnApplicationV2.VpcConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The array of SecurityGroup IDs used by the VPC configuration.The array of Subnet IDs used by the VPC configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroupIds
The array of SecurityGroup IDs used by the VPC configuration. -
getSubnetIds
The array of Subnet IDs used by the VPC configuration. -
builder
-