Interface CfnApplication.NetworkConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplication.NetworkConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnApplication
@Stability(Stable)
public static interface CfnApplication.NetworkConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The network configuration for customer VPC connectivity.
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.emrserverless.*; NetworkConfigurationProperty networkConfigurationProperty = NetworkConfigurationProperty.builder() .securityGroupIds(List.of("securityGroupIds")) .subnetIds(List.of("subnetIds")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplication.NetworkConfigurationProperty
static final class
An implementation forCfnApplication.NetworkConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The array of security group Ids for customer VPC connectivity.The array of subnet Ids for customer VPC connectivity.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroupIds
The array of security group Ids for customer VPC connectivity.- See Also:
-
getSubnetIds
The array of subnet Ids for customer VPC connectivity.- See Also:
-
builder
-