Enum ConstructInfoFqnEnum
- java.lang.Object
-
- java.lang.Enum<ConstructInfoFqnEnum>
-
- software.aws.awsprototypingsdk.cdkgraph.ConstructInfoFqnEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ConstructInfoFqnEnum>
@Generated(value="jsii-pacmak/1.82.0 (build 2d2ddd7)", date="2023-08-24T23:07:44.325Z") @Stability(Experimental) public enum ConstructInfoFqnEnum extends Enum<ConstructInfoFqnEnum>
(experimental) Commonly used cdk construct info fqn (jsii fully-qualified ids).
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConstructInfoFqnEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ConstructInfoFqnEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APP
@Stability(Experimental) public static final ConstructInfoFqnEnum APP
-
PDKAPP_MONO
@Stability(Experimental) public static final ConstructInfoFqnEnum PDKAPP_MONO
-
PDKAPP
@Stability(Experimental) public static final ConstructInfoFqnEnum PDKAPP
-
STAGE
@Stability(Experimental) public static final ConstructInfoFqnEnum STAGE
-
STACK
@Stability(Experimental) public static final ConstructInfoFqnEnum STACK
-
NESTED_STACK
@Stability(Experimental) public static final ConstructInfoFqnEnum NESTED_STACK
-
CFN_STACK
@Stability(Experimental) public static final ConstructInfoFqnEnum CFN_STACK
-
CFN_OUTPUT
@Stability(Experimental) public static final ConstructInfoFqnEnum CFN_OUTPUT
-
CFN_PARAMETER
@Stability(Experimental) public static final ConstructInfoFqnEnum CFN_PARAMETER
-
CUSTOM_RESOURCE
@Stability(Experimental) public static final ConstructInfoFqnEnum CUSTOM_RESOURCE
-
AWS_CUSTOM_RESOURCE
@Stability(Experimental) public static final ConstructInfoFqnEnum AWS_CUSTOM_RESOURCE
-
CUSTOM_RESOURCE_PROVIDER
@Stability(Experimental) public static final ConstructInfoFqnEnum CUSTOM_RESOURCE_PROVIDER
-
CUSTOM_RESOURCE_PROVIDER_2
@Stability(Experimental) public static final ConstructInfoFqnEnum CUSTOM_RESOURCE_PROVIDER_2
-
LAMBDA
@Stability(Experimental) public static final ConstructInfoFqnEnum LAMBDA
-
CFN_LAMBDA
@Stability(Experimental) public static final ConstructInfoFqnEnum CFN_LAMBDA
-
LAMBDA_LAYER_VERSION
@Stability(Experimental) public static final ConstructInfoFqnEnum LAMBDA_LAYER_VERSION
-
CFN_LAMBDA_LAYER_VERSION
@Stability(Experimental) public static final ConstructInfoFqnEnum CFN_LAMBDA_LAYER_VERSION
-
LAMBDA_ALIAS
@Stability(Experimental) public static final ConstructInfoFqnEnum LAMBDA_ALIAS
-
CFN_LAMBDA_ALIAS
@Stability(Experimental) public static final ConstructInfoFqnEnum CFN_LAMBDA_ALIAS
-
LAMBDA_BASE
@Stability(Experimental) public static final ConstructInfoFqnEnum LAMBDA_BASE
-
LAMBDA_SINGLETON
@Stability(Experimental) public static final ConstructInfoFqnEnum LAMBDA_SINGLETON
-
LAMBDA_LAYER_AWSCLI
@Stability(Experimental) public static final ConstructInfoFqnEnum LAMBDA_LAYER_AWSCLI
-
CFN_LAMBDA_PERMISSIONS
@Stability(Experimental) public static final ConstructInfoFqnEnum CFN_LAMBDA_PERMISSIONS
-
ASSET_STAGING
@Stability(Experimental) public static final ConstructInfoFqnEnum ASSET_STAGING
-
S3_ASSET
@Stability(Experimental) public static final ConstructInfoFqnEnum S3_ASSET
-
ECR_TARBALL_ASSET
@Stability(Experimental) public static final ConstructInfoFqnEnum ECR_TARBALL_ASSET
-
EC2_INSTANCE
@Stability(Experimental) public static final ConstructInfoFqnEnum EC2_INSTANCE
-
CFN_EC2_INSTANCE
@Stability(Experimental) public static final ConstructInfoFqnEnum CFN_EC2_INSTANCE
-
SECURITY_GROUP
@Stability(Experimental) public static final ConstructInfoFqnEnum SECURITY_GROUP
-
CFN_SECURITY_GROUP
@Stability(Experimental) public static final ConstructInfoFqnEnum CFN_SECURITY_GROUP
-
VPC
@Stability(Experimental) public static final ConstructInfoFqnEnum VPC
-
CFN_VPC
@Stability(Experimental) public static final ConstructInfoFqnEnum CFN_VPC
-
PRIVATE_SUBNET
@Stability(Experimental) public static final ConstructInfoFqnEnum PRIVATE_SUBNET
-
CFN_PRIVATE_SUBNET
@Stability(Experimental) public static final ConstructInfoFqnEnum CFN_PRIVATE_SUBNET
-
PUBLIC_SUBNET
@Stability(Experimental) public static final ConstructInfoFqnEnum PUBLIC_SUBNET
-
CFN_PUBLIC_SUBNET
@Stability(Experimental) public static final ConstructInfoFqnEnum CFN_PUBLIC_SUBNET
-
IAM_ROLE
@Stability(Experimental) public static final ConstructInfoFqnEnum IAM_ROLE
-
-
Method Detail
-
values
public static ConstructInfoFqnEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ConstructInfoFqnEnum c : ConstructInfoFqnEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConstructInfoFqnEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-