@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)", date="2022-05-11T19:24:38.333Z") @Stability(value=Experimental) public enum ParameterType extends Enum<ParameterType>
| Enum Constant and Description |
|---|
AWS_EC2_IMAGE_ID
(experimental) An Amazon EC2 image ID, such as ami-0ff8a91507f77f867.
|
SECURE_STRING
(experimental) Secure String.
|
STRING
(experimental) String.
|
STRING_LIST
(experimental) 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=Experimental) public static final ParameterType STRING
@Stability(value=Experimental) 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=Experimental) public static final ParameterType STRING_LIST
@Stability(value=Experimental) 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 © 2022. All rights reserved.