java.lang.Object
java.lang.Enum<Platform>
software.amazon.awscdk.services.amplify.alpha.Platform
All Implemented Interfaces:
Serializable, Comparable<Platform>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.559Z") @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();
 
  • Enum Constant Details

    • WEB

      @Stability(Experimental) public static final Platform WEB
      (experimental) WEB - Used to indicate that the app is hosted using only static assets.
    • WEB_COMPUTE

      @Stability(Experimental) public static final Platform 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

      public static Platform[] 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

      public static Platform valueOf(String name)
      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 name
      NullPointerException - if the argument is null