@@ -141,6 +141,7 @@ export interface CustomRule {
141
141
142
142
export enum Platform {
143
143
WEB = "WEB" ,
144
+ WEB_COMPUTE = "WEB_COMPUTE" ,
144
145
WEB_DYNAMIC = "WEB_DYNAMIC" ,
145
146
}
146
147
@@ -164,7 +165,10 @@ export interface CreateAppRequest {
164
165
repository ?: string ;
165
166
166
167
/**
167
- * <p> The platform or framework for an Amplify app. </p>
168
+ * <p> The platform for the Amplify app. For a static app, set the platform type to <code>WEB</code>.
169
+ * For a dynamic server-side rendered (SSR) app, set the platform type to
170
+ * <code>WEB_COMPUTE</code>. For an app requiring Amplify Hosting's original SSR support only, set the platform type to
171
+ * <code>WEB_DYNAMIC</code>.</p>
168
172
*/
169
173
platform ?: Platform | string ;
170
174
@@ -336,7 +340,10 @@ export interface App {
336
340
repository : string | undefined ;
337
341
338
342
/**
339
- * <p> The platform for the Amplify app. </p>
343
+ * <p> The platform for the Amplify app. For a static app, set the platform type to <code>WEB</code>.
344
+ * For a dynamic server-side rendered (SSR) app, set the platform type to
345
+ * <code>WEB_COMPUTE</code>. For an app requiring Amplify Hosting's original SSR support only, set the platform type to
346
+ * <code>WEB_DYNAMIC</code>.</p>
340
347
*/
341
348
platform : Platform | string | undefined ;
342
349
@@ -2147,7 +2154,10 @@ export interface UpdateAppRequest {
2147
2154
description ?: string ;
2148
2155
2149
2156
/**
2150
- * <p> The platform for an Amplify app. </p>
2157
+ * <p> The platform for the Amplify app. For a static app, set the platform type to <code>WEB</code>.
2158
+ * For a dynamic server-side rendered (SSR) app, set the platform type to
2159
+ * <code>WEB_COMPUTE</code>. For an app requiring Amplify Hosting's original SSR support only, set the platform type to
2160
+ * <code>WEB_DYNAMIC</code>.</p>
2151
2161
*/
2152
2162
platform ?: Platform | string ;
2153
2163
0 commit comments