Enum Platform
- All Implemented Interfaces:
Serializable
,Comparable<Platform>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:13:07.666Z")
@Stability(Experimental)
public enum Platform
extends Enum<Platform>
(experimental) Available hosting platforms to use on the App.
Example:
App amplifyApp = App.Builder.create(this, "MyApp") .platform(Platform.WEB_COMPUTE) .build();
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription(experimental) WEB - Used to indicate that the app is hosted using only static assets.(experimental) WEB_COMPUTE - Used to indicate the app is hosted using a combination of server side rendered and static assets. -
Method Summary
-
Enum Constant Details
-
WEB
(experimental) WEB - Used to indicate that the app is hosted using only static assets. -
WEB_COMPUTE
(experimental) WEB_COMPUTE - Used to indicate the app is hosted using a combination of server side rendered and static assets.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-