@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-03-28T21:34:20.966Z") @Stability(value=Stable) public enum ParameterType extends Enum<ParameterType>
| Enum Constant and Description |
|---|
AWS_EC2_IMAGE_ID
An Amazon EC2 image ID, such as ami-0ff8a91507f77f867.
|
SECURE_STRING
Secure String.
|
STRING
String.
|
STRING_LIST
String List.
|
| Modifier and Type | Method and Description |
|---|---|
static ParameterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Stable) public static final ParameterType STRING
@Stability(value=Stable) public static final ParameterType SECURE_STRING
Parameter Store uses an AWS Key Management Service (KMS) customer master key (CMK) to encrypt the parameter value. Parameters of type SecureString cannot be created directly from a CDK application.
@Stability(value=Stable) public static final ParameterType STRING_LIST
@Stability(value=Stable) public static final ParameterType AWS_EC2_IMAGE_ID
public static ParameterType[] values()
for (ParameterType c : ParameterType.values()) System.out.println(c);
public static ParameterType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.