@Generated(value="jsii-pacmak/1.30.0 (build adae23f)", date="2021-06-30T10:00:56.595Z") @Stability(value=Experimental) public enum ComputePlatform extends Enum<ComputePlatform>
| Enum Constant and Description |
|---|
AWS_LAMBDA
(experimental) Use AWS_LAMBDA if your application runs on AWS Lambda.
|
DEFAULT
(experimental) Use Default if your application runs on a compute platform that is not AWS Lambda, such an Amazon EC2 instance, an on-premises server, or a different platform.
|
| Modifier and Type | Method and Description |
|---|---|
static ComputePlatform |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComputePlatform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final ComputePlatform AWS_LAMBDA
@Stability(value=Experimental) public static final ComputePlatform DEFAULT
public static ComputePlatform[] values()
for (ComputePlatform c : ComputePlatform.values()) System.out.println(c);
public static ComputePlatform 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.