@Generated(value="jsii-pacmak/1.24.0 (build b722f66)", date="2021-03-11T13:46:41.033Z") @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 Parameter Store uses an AWS Key Management Service (KMS) customer master key (CMK) to encrypt the parameter value.
|
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
@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 © 2021. All rights reserved.