@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)", date="2022-08-09T19:16:31.233Z") public enum VpcSubnetGroupType extends java.lang.Enum<VpcSubnetGroupType>
Same as SubnetType in the @aws-cdk/aws-ec2 package, but we can't use that because of cyclical dependencies.
Enum Constant and Description |
---|
ISOLATED
Isolated subnet group type.
|
PRIVATE
Private subnet group type.
|
PUBLIC
Public subnet group type.
|
Modifier and Type | Method and Description |
---|---|
static VpcSubnetGroupType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VpcSubnetGroupType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VpcSubnetGroupType PUBLIC
public static final VpcSubnetGroupType PRIVATE
public static final VpcSubnetGroupType ISOLATED
public static VpcSubnetGroupType[] values()
for (VpcSubnetGroupType c : VpcSubnetGroupType.values()) System.out.println(c);
public static VpcSubnetGroupType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null