@aws-sdk/client-appstream 3.624.0 → 3.630.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/index.js +222 -1
  3. package/dist-es/AppStream.js +8 -0
  4. package/dist-es/commands/CreateThemeForStackCommand.js +24 -0
  5. package/dist-es/commands/DeleteThemeForStackCommand.js +24 -0
  6. package/dist-es/commands/DescribeThemeForStackCommand.js +24 -0
  7. package/dist-es/commands/UpdateThemeForStackCommand.js +24 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/models/models_0.js +25 -0
  10. package/dist-es/protocols/Aws_json1_1.js +108 -0
  11. package/dist-types/AppStream.d.ts +28 -0
  12. package/dist-types/AppStreamClient.d.ts +6 -2
  13. package/dist-types/commands/CreateImageBuilderCommand.d.ts +1 -0
  14. package/dist-types/commands/CreateThemeForStackCommand.d.ts +108 -0
  15. package/dist-types/commands/CreateUpdatedImageCommand.d.ts +6 -0
  16. package/dist-types/commands/DeleteImageBuilderCommand.d.ts +1 -0
  17. package/dist-types/commands/DeleteImageCommand.d.ts +6 -0
  18. package/dist-types/commands/DeleteThemeForStackCommand.d.ts +67 -0
  19. package/dist-types/commands/DescribeImageBuildersCommand.d.ts +1 -0
  20. package/dist-types/commands/DescribeImagesCommand.d.ts +6 -0
  21. package/dist-types/commands/DescribeThemeForStackCommand.d.ts +80 -0
  22. package/dist-types/commands/StartImageBuilderCommand.d.ts +1 -0
  23. package/dist-types/commands/StopImageBuilderCommand.d.ts +1 -0
  24. package/dist-types/commands/UpdateThemeForStackCommand.d.ts +112 -0
  25. package/dist-types/commands/index.d.ts +4 -0
  26. package/dist-types/models/models_0.d.ts +342 -0
  27. package/dist-types/protocols/Aws_json1_1.d.ts +36 -0
  28. package/dist-types/ts3.4/AppStream.d.ts +68 -0
  29. package/dist-types/ts3.4/AppStreamClient.d.ts +26 -2
  30. package/dist-types/ts3.4/commands/CreateThemeForStackCommand.d.ts +40 -0
  31. package/dist-types/ts3.4/commands/DeleteThemeForStackCommand.d.ts +40 -0
  32. package/dist-types/ts3.4/commands/DescribeThemeForStackCommand.d.ts +40 -0
  33. package/dist-types/ts3.4/commands/UpdateThemeForStackCommand.d.ts +40 -0
  34. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  35. package/dist-types/ts3.4/models/models_0.d.ts +88 -0
  36. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +48 -0
  37. package/package.json +5 -5
@@ -0,0 +1,24 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_DescribeThemeForStackCommand, se_DescribeThemeForStackCommand } from "../protocols/Aws_json1_1";
6
+ export { $Command };
7
+ export class DescribeThemeForStackCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("PhotonAdminProxyService", "DescribeThemeForStack", {})
19
+ .n("AppStreamClient", "DescribeThemeForStackCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_DescribeThemeForStackCommand)
22
+ .de(de_DescribeThemeForStackCommand)
23
+ .build() {
24
+ }
@@ -0,0 +1,24 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_UpdateThemeForStackCommand, se_UpdateThemeForStackCommand } from "../protocols/Aws_json1_1";
6
+ export { $Command };
7
+ export class UpdateThemeForStackCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("PhotonAdminProxyService", "UpdateThemeForStack", {})
19
+ .n("AppStreamClient", "UpdateThemeForStackCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_UpdateThemeForStackCommand)
22
+ .de(de_UpdateThemeForStackCommand)
23
+ .build() {
24
+ }
@@ -16,6 +16,7 @@ export * from "./CreateImageBuilderCommand";
16
16
  export * from "./CreateImageBuilderStreamingURLCommand";
17
17
  export * from "./CreateStackCommand";
18
18
  export * from "./CreateStreamingURLCommand";
19
+ export * from "./CreateThemeForStackCommand";
19
20
  export * from "./CreateUpdatedImageCommand";
20
21
  export * from "./CreateUsageReportSubscriptionCommand";
21
22
  export * from "./CreateUserCommand";
@@ -29,6 +30,7 @@ export * from "./DeleteImageBuilderCommand";
29
30
  export * from "./DeleteImageCommand";
30
31
  export * from "./DeleteImagePermissionsCommand";
31
32
  export * from "./DeleteStackCommand";
33
+ export * from "./DeleteThemeForStackCommand";
32
34
  export * from "./DeleteUsageReportSubscriptionCommand";
33
35
  export * from "./DeleteUserCommand";
34
36
  export * from "./DescribeAppBlockBuilderAppBlockAssociationsCommand";
@@ -44,6 +46,7 @@ export * from "./DescribeImagePermissionsCommand";
44
46
  export * from "./DescribeImagesCommand";
45
47
  export * from "./DescribeSessionsCommand";
46
48
  export * from "./DescribeStacksCommand";
49
+ export * from "./DescribeThemeForStackCommand";
47
50
  export * from "./DescribeUsageReportSubscriptionsCommand";
48
51
  export * from "./DescribeUserStackAssociationsCommand";
49
52
  export * from "./DescribeUsersCommand";
@@ -73,3 +76,4 @@ export * from "./UpdateEntitlementCommand";
73
76
  export * from "./UpdateFleetCommand";
74
77
  export * from "./UpdateImagePermissionsCommand";
75
78
  export * from "./UpdateStackCommand";
79
+ export * from "./UpdateThemeForStackCommand";
@@ -286,6 +286,10 @@ export const FleetState = {
286
286
  STOPPED: "STOPPED",
287
287
  STOPPING: "STOPPING",
288
288
  };
289
+ export const LatestAppstreamAgentVersion = {
290
+ FALSE: "FALSE",
291
+ TRUE: "TRUE",
292
+ };
289
293
  export const ImageBuilderState = {
290
294
  DELETING: "DELETING",
291
295
  FAILED: "FAILED",
@@ -320,6 +324,24 @@ export const StackErrorCode = {
320
324
  INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR",
321
325
  STORAGE_CONNECTOR_ERROR: "STORAGE_CONNECTOR_ERROR",
322
326
  };
327
+ export const ThemeStyling = {
328
+ BLUE: "BLUE",
329
+ LIGHT_BLUE: "LIGHT_BLUE",
330
+ PINK: "PINK",
331
+ RED: "RED",
332
+ };
333
+ export const ThemeState = {
334
+ DISABLED: "DISABLED",
335
+ ENABLED: "ENABLED",
336
+ };
337
+ export const DynamicAppProvidersEnabled = {
338
+ DISABLED: "DISABLED",
339
+ ENABLED: "ENABLED",
340
+ };
341
+ export const ImageSharedWithOthers = {
342
+ FALSE: "FALSE",
343
+ TRUE: "TRUE",
344
+ };
323
345
  export const ImageState = {
324
346
  AVAILABLE: "AVAILABLE",
325
347
  COPYING: "COPYING",
@@ -396,6 +418,9 @@ export const StackAttribute = {
396
418
  THEME_NAME: "THEME_NAME",
397
419
  USER_SETTINGS: "USER_SETTINGS",
398
420
  };
421
+ export const ThemeAttribute = {
422
+ FOOTER_LINKS: "FOOTER_LINKS",
423
+ };
399
424
  export const UserStackAssociationFilterSensitiveLog = (obj) => ({
400
425
  ...obj,
401
426
  ...(obj.UserName && { UserName: SENSITIVE_STRING }),
@@ -111,6 +111,12 @@ export const se_CreateStreamingURLCommand = async (input, context) => {
111
111
  body = JSON.stringify(_json(input));
112
112
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
113
113
  };
114
+ export const se_CreateThemeForStackCommand = async (input, context) => {
115
+ const headers = sharedHeaders("CreateThemeForStack");
116
+ let body;
117
+ body = JSON.stringify(_json(input));
118
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
119
+ };
114
120
  export const se_CreateUpdatedImageCommand = async (input, context) => {
115
121
  const headers = sharedHeaders("CreateUpdatedImage");
116
122
  let body;
@@ -189,6 +195,12 @@ export const se_DeleteStackCommand = async (input, context) => {
189
195
  body = JSON.stringify(_json(input));
190
196
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
191
197
  };
198
+ export const se_DeleteThemeForStackCommand = async (input, context) => {
199
+ const headers = sharedHeaders("DeleteThemeForStack");
200
+ let body;
201
+ body = JSON.stringify(_json(input));
202
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
203
+ };
192
204
  export const se_DeleteUsageReportSubscriptionCommand = async (input, context) => {
193
205
  const headers = sharedHeaders("DeleteUsageReportSubscription");
194
206
  let body;
@@ -279,6 +291,12 @@ export const se_DescribeStacksCommand = async (input, context) => {
279
291
  body = JSON.stringify(_json(input));
280
292
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
281
293
  };
294
+ export const se_DescribeThemeForStackCommand = async (input, context) => {
295
+ const headers = sharedHeaders("DescribeThemeForStack");
296
+ let body;
297
+ body = JSON.stringify(_json(input));
298
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
299
+ };
282
300
  export const se_DescribeUsageReportSubscriptionsCommand = async (input, context) => {
283
301
  const headers = sharedHeaders("DescribeUsageReportSubscriptions");
284
302
  let body;
@@ -453,6 +471,12 @@ export const se_UpdateStackCommand = async (input, context) => {
453
471
  body = JSON.stringify(_json(input));
454
472
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
455
473
  };
474
+ export const se_UpdateThemeForStackCommand = async (input, context) => {
475
+ const headers = sharedHeaders("UpdateThemeForStack");
476
+ let body;
477
+ body = JSON.stringify(_json(input));
478
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
479
+ };
456
480
  export const de_AssociateAppBlockBuilderAppBlockCommand = async (output, context) => {
457
481
  if (output.statusCode >= 300) {
458
482
  return de_CommandError(output, context);
@@ -687,6 +711,19 @@ export const de_CreateStreamingURLCommand = async (output, context) => {
687
711
  };
688
712
  return response;
689
713
  };
714
+ export const de_CreateThemeForStackCommand = async (output, context) => {
715
+ if (output.statusCode >= 300) {
716
+ return de_CommandError(output, context);
717
+ }
718
+ const data = await parseBody(output.body, context);
719
+ let contents = {};
720
+ contents = de_CreateThemeForStackResult(data, context);
721
+ const response = {
722
+ $metadata: deserializeMetadata(output),
723
+ ...contents,
724
+ };
725
+ return response;
726
+ };
690
727
  export const de_CreateUpdatedImageCommand = async (output, context) => {
691
728
  if (output.statusCode >= 300) {
692
729
  return de_CommandError(output, context);
@@ -856,6 +893,19 @@ export const de_DeleteStackCommand = async (output, context) => {
856
893
  };
857
894
  return response;
858
895
  };
896
+ export const de_DeleteThemeForStackCommand = async (output, context) => {
897
+ if (output.statusCode >= 300) {
898
+ return de_CommandError(output, context);
899
+ }
900
+ const data = await parseBody(output.body, context);
901
+ let contents = {};
902
+ contents = _json(data);
903
+ const response = {
904
+ $metadata: deserializeMetadata(output),
905
+ ...contents,
906
+ };
907
+ return response;
908
+ };
859
909
  export const de_DeleteUsageReportSubscriptionCommand = async (output, context) => {
860
910
  if (output.statusCode >= 300) {
861
911
  return de_CommandError(output, context);
@@ -1051,6 +1101,19 @@ export const de_DescribeStacksCommand = async (output, context) => {
1051
1101
  };
1052
1102
  return response;
1053
1103
  };
1104
+ export const de_DescribeThemeForStackCommand = async (output, context) => {
1105
+ if (output.statusCode >= 300) {
1106
+ return de_CommandError(output, context);
1107
+ }
1108
+ const data = await parseBody(output.body, context);
1109
+ let contents = {};
1110
+ contents = de_DescribeThemeForStackResult(data, context);
1111
+ const response = {
1112
+ $metadata: deserializeMetadata(output),
1113
+ ...contents,
1114
+ };
1115
+ return response;
1116
+ };
1054
1117
  export const de_DescribeUsageReportSubscriptionsCommand = async (output, context) => {
1055
1118
  if (output.statusCode >= 300) {
1056
1119
  return de_CommandError(output, context);
@@ -1428,6 +1491,19 @@ export const de_UpdateStackCommand = async (output, context) => {
1428
1491
  };
1429
1492
  return response;
1430
1493
  };
1494
+ export const de_UpdateThemeForStackCommand = async (output, context) => {
1495
+ if (output.statusCode >= 300) {
1496
+ return de_CommandError(output, context);
1497
+ }
1498
+ const data = await parseBody(output.body, context);
1499
+ let contents = {};
1500
+ contents = de_UpdateThemeForStackResult(data, context);
1501
+ const response = {
1502
+ $metadata: deserializeMetadata(output),
1503
+ ...contents,
1504
+ };
1505
+ return response;
1506
+ };
1431
1507
  const de_CommandError = async (output, context) => {
1432
1508
  const parsedOutput = {
1433
1509
  ...output,
@@ -1746,6 +1822,11 @@ const de_CreateStreamingURLResult = (output, context) => {
1746
1822
  StreamingURL: __expectString,
1747
1823
  });
1748
1824
  };
1825
+ const de_CreateThemeForStackResult = (output, context) => {
1826
+ return take(output, {
1827
+ Theme: (_) => de_Theme(_, context),
1828
+ });
1829
+ };
1749
1830
  const de_CreateUpdatedImageResult = (output, context) => {
1750
1831
  return take(output, {
1751
1832
  canUpdateImage: __expectBoolean,
@@ -1822,6 +1903,11 @@ const de_DescribeStacksResult = (output, context) => {
1822
1903
  Stacks: (_) => de_StackList(_, context),
1823
1904
  });
1824
1905
  };
1906
+ const de_DescribeThemeForStackResult = (output, context) => {
1907
+ return take(output, {
1908
+ Theme: (_) => de_Theme(_, context),
1909
+ });
1910
+ };
1825
1911
  const de_DescribeUsageReportSubscriptionsResult = (output, context) => {
1826
1912
  return take(output, {
1827
1913
  NextToken: __expectString,
@@ -1916,15 +2002,19 @@ const de_Image = (output, context) => {
1916
2002
  CreatedTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1917
2003
  Description: __expectString,
1918
2004
  DisplayName: __expectString,
2005
+ DynamicAppProvidersEnabled: __expectString,
1919
2006
  ImageBuilderName: __expectString,
1920
2007
  ImageBuilderSupported: __expectBoolean,
1921
2008
  ImageErrors: (_) => de_ResourceErrors(_, context),
1922
2009
  ImagePermissions: _json,
2010
+ ImageSharedWithOthers: __expectString,
2011
+ LatestAppstreamAgentVersion: __expectString,
1923
2012
  Name: __expectString,
1924
2013
  Platform: __expectString,
1925
2014
  PublicBaseImageReleasedDate: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1926
2015
  State: __expectString,
1927
2016
  StateChangeReason: _json,
2017
+ SupportedInstanceFamilies: _json,
1928
2018
  Visibility: __expectString,
1929
2019
  });
1930
2020
  };
@@ -1942,6 +2032,7 @@ const de_ImageBuilder = (output, context) => {
1942
2032
  ImageArn: __expectString,
1943
2033
  ImageBuilderErrors: (_) => de_ResourceErrors(_, context),
1944
2034
  InstanceType: __expectString,
2035
+ LatestAppstreamAgentVersion: __expectString,
1945
2036
  Name: __expectString,
1946
2037
  NetworkAccessConfiguration: _json,
1947
2038
  Platform: __expectString,
@@ -2050,6 +2141,18 @@ const de_StopImageBuilderResult = (output, context) => {
2050
2141
  ImageBuilder: (_) => de_ImageBuilder(_, context),
2051
2142
  });
2052
2143
  };
2144
+ const de_Theme = (output, context) => {
2145
+ return take(output, {
2146
+ CreatedTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
2147
+ StackName: __expectString,
2148
+ State: __expectString,
2149
+ ThemeFaviconURL: __expectString,
2150
+ ThemeFooterLinks: _json,
2151
+ ThemeOrganizationLogoURL: __expectString,
2152
+ ThemeStyling: __expectString,
2153
+ ThemeTitleText: __expectString,
2154
+ });
2155
+ };
2053
2156
  const de_UpdateAppBlockBuilderResult = (output, context) => {
2054
2157
  return take(output, {
2055
2158
  AppBlockBuilder: (_) => de_AppBlockBuilder(_, context),
@@ -2080,6 +2183,11 @@ const de_UpdateStackResult = (output, context) => {
2080
2183
  Stack: (_) => de_Stack(_, context),
2081
2184
  });
2082
2185
  };
2186
+ const de_UpdateThemeForStackResult = (output, context) => {
2187
+ return take(output, {
2188
+ Theme: (_) => de_Theme(_, context),
2189
+ });
2190
+ };
2083
2191
  const de_UsageReportSubscription = (output, context) => {
2084
2192
  return take(output, {
2085
2193
  LastGeneratedReportDate: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
@@ -18,6 +18,7 @@ import { CreateImageBuilderCommandInput, CreateImageBuilderCommandOutput } from
18
18
  import { CreateImageBuilderStreamingURLCommandInput, CreateImageBuilderStreamingURLCommandOutput } from "./commands/CreateImageBuilderStreamingURLCommand";
19
19
  import { CreateStackCommandInput, CreateStackCommandOutput } from "./commands/CreateStackCommand";
20
20
  import { CreateStreamingURLCommandInput, CreateStreamingURLCommandOutput } from "./commands/CreateStreamingURLCommand";
21
+ import { CreateThemeForStackCommandInput, CreateThemeForStackCommandOutput } from "./commands/CreateThemeForStackCommand";
21
22
  import { CreateUpdatedImageCommandInput, CreateUpdatedImageCommandOutput } from "./commands/CreateUpdatedImageCommand";
22
23
  import { CreateUsageReportSubscriptionCommandInput, CreateUsageReportSubscriptionCommandOutput } from "./commands/CreateUsageReportSubscriptionCommand";
23
24
  import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
@@ -31,6 +32,7 @@ import { DeleteImageBuilderCommandInput, DeleteImageBuilderCommandOutput } from
31
32
  import { DeleteImageCommandInput, DeleteImageCommandOutput } from "./commands/DeleteImageCommand";
32
33
  import { DeleteImagePermissionsCommandInput, DeleteImagePermissionsCommandOutput } from "./commands/DeleteImagePermissionsCommand";
33
34
  import { DeleteStackCommandInput, DeleteStackCommandOutput } from "./commands/DeleteStackCommand";
35
+ import { DeleteThemeForStackCommandInput, DeleteThemeForStackCommandOutput } from "./commands/DeleteThemeForStackCommand";
34
36
  import { DeleteUsageReportSubscriptionCommandInput, DeleteUsageReportSubscriptionCommandOutput } from "./commands/DeleteUsageReportSubscriptionCommand";
35
37
  import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
36
38
  import { DescribeAppBlockBuilderAppBlockAssociationsCommandInput, DescribeAppBlockBuilderAppBlockAssociationsCommandOutput } from "./commands/DescribeAppBlockBuilderAppBlockAssociationsCommand";
@@ -46,6 +48,7 @@ import { DescribeImagePermissionsCommandInput, DescribeImagePermissionsCommandOu
46
48
  import { DescribeImagesCommandInput, DescribeImagesCommandOutput } from "./commands/DescribeImagesCommand";
47
49
  import { DescribeSessionsCommandInput, DescribeSessionsCommandOutput } from "./commands/DescribeSessionsCommand";
48
50
  import { DescribeStacksCommandInput, DescribeStacksCommandOutput } from "./commands/DescribeStacksCommand";
51
+ import { DescribeThemeForStackCommandInput, DescribeThemeForStackCommandOutput } from "./commands/DescribeThemeForStackCommand";
49
52
  import { DescribeUsageReportSubscriptionsCommandInput, DescribeUsageReportSubscriptionsCommandOutput } from "./commands/DescribeUsageReportSubscriptionsCommand";
50
53
  import { DescribeUsersCommandInput, DescribeUsersCommandOutput } from "./commands/DescribeUsersCommand";
51
54
  import { DescribeUserStackAssociationsCommandInput, DescribeUserStackAssociationsCommandOutput } from "./commands/DescribeUserStackAssociationsCommand";
@@ -75,6 +78,7 @@ import { UpdateEntitlementCommandInput, UpdateEntitlementCommandOutput } from ".
75
78
  import { UpdateFleetCommandInput, UpdateFleetCommandOutput } from "./commands/UpdateFleetCommand";
76
79
  import { UpdateImagePermissionsCommandInput, UpdateImagePermissionsCommandOutput } from "./commands/UpdateImagePermissionsCommand";
77
80
  import { UpdateStackCommandInput, UpdateStackCommandOutput } from "./commands/UpdateStackCommand";
81
+ import { UpdateThemeForStackCommandInput, UpdateThemeForStackCommandOutput } from "./commands/UpdateThemeForStackCommand";
78
82
  export interface AppStream {
79
83
  /**
80
84
  * @see {@link AssociateAppBlockBuilderAppBlockCommand}
@@ -184,6 +188,12 @@ export interface AppStream {
184
188
  createStreamingURL(args: CreateStreamingURLCommandInput, options?: __HttpHandlerOptions): Promise<CreateStreamingURLCommandOutput>;
185
189
  createStreamingURL(args: CreateStreamingURLCommandInput, cb: (err: any, data?: CreateStreamingURLCommandOutput) => void): void;
186
190
  createStreamingURL(args: CreateStreamingURLCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateStreamingURLCommandOutput) => void): void;
191
+ /**
192
+ * @see {@link CreateThemeForStackCommand}
193
+ */
194
+ createThemeForStack(args: CreateThemeForStackCommandInput, options?: __HttpHandlerOptions): Promise<CreateThemeForStackCommandOutput>;
195
+ createThemeForStack(args: CreateThemeForStackCommandInput, cb: (err: any, data?: CreateThemeForStackCommandOutput) => void): void;
196
+ createThemeForStack(args: CreateThemeForStackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateThemeForStackCommandOutput) => void): void;
187
197
  /**
188
198
  * @see {@link CreateUpdatedImageCommand}
189
199
  */
@@ -263,6 +273,12 @@ export interface AppStream {
263
273
  deleteStack(args: DeleteStackCommandInput, options?: __HttpHandlerOptions): Promise<DeleteStackCommandOutput>;
264
274
  deleteStack(args: DeleteStackCommandInput, cb: (err: any, data?: DeleteStackCommandOutput) => void): void;
265
275
  deleteStack(args: DeleteStackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteStackCommandOutput) => void): void;
276
+ /**
277
+ * @see {@link DeleteThemeForStackCommand}
278
+ */
279
+ deleteThemeForStack(args: DeleteThemeForStackCommandInput, options?: __HttpHandlerOptions): Promise<DeleteThemeForStackCommandOutput>;
280
+ deleteThemeForStack(args: DeleteThemeForStackCommandInput, cb: (err: any, data?: DeleteThemeForStackCommandOutput) => void): void;
281
+ deleteThemeForStack(args: DeleteThemeForStackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteThemeForStackCommandOutput) => void): void;
266
282
  /**
267
283
  * @see {@link DeleteUsageReportSubscriptionCommand}
268
284
  */
@@ -364,6 +380,12 @@ export interface AppStream {
364
380
  describeStacks(args: DescribeStacksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeStacksCommandOutput>;
365
381
  describeStacks(args: DescribeStacksCommandInput, cb: (err: any, data?: DescribeStacksCommandOutput) => void): void;
366
382
  describeStacks(args: DescribeStacksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeStacksCommandOutput) => void): void;
383
+ /**
384
+ * @see {@link DescribeThemeForStackCommand}
385
+ */
386
+ describeThemeForStack(args: DescribeThemeForStackCommandInput, options?: __HttpHandlerOptions): Promise<DescribeThemeForStackCommandOutput>;
387
+ describeThemeForStack(args: DescribeThemeForStackCommandInput, cb: (err: any, data?: DescribeThemeForStackCommandOutput) => void): void;
388
+ describeThemeForStack(args: DescribeThemeForStackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeThemeForStackCommandOutput) => void): void;
367
389
  /**
368
390
  * @see {@link DescribeUsageReportSubscriptionsCommand}
369
391
  */
@@ -541,6 +563,12 @@ export interface AppStream {
541
563
  updateStack(args: UpdateStackCommandInput, options?: __HttpHandlerOptions): Promise<UpdateStackCommandOutput>;
542
564
  updateStack(args: UpdateStackCommandInput, cb: (err: any, data?: UpdateStackCommandOutput) => void): void;
543
565
  updateStack(args: UpdateStackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateStackCommandOutput) => void): void;
566
+ /**
567
+ * @see {@link UpdateThemeForStackCommand}
568
+ */
569
+ updateThemeForStack(args: UpdateThemeForStackCommandInput, options?: __HttpHandlerOptions): Promise<UpdateThemeForStackCommandOutput>;
570
+ updateThemeForStack(args: UpdateThemeForStackCommandInput, cb: (err: any, data?: UpdateThemeForStackCommandOutput) => void): void;
571
+ updateThemeForStack(args: UpdateThemeForStackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateThemeForStackCommandOutput) => void): void;
544
572
  }
545
573
  /**
546
574
  * <fullname>Amazon AppStream 2.0</fullname>
@@ -25,6 +25,7 @@ import { CreateImageBuilderCommandInput, CreateImageBuilderCommandOutput } from
25
25
  import { CreateImageBuilderStreamingURLCommandInput, CreateImageBuilderStreamingURLCommandOutput } from "./commands/CreateImageBuilderStreamingURLCommand";
26
26
  import { CreateStackCommandInput, CreateStackCommandOutput } from "./commands/CreateStackCommand";
27
27
  import { CreateStreamingURLCommandInput, CreateStreamingURLCommandOutput } from "./commands/CreateStreamingURLCommand";
28
+ import { CreateThemeForStackCommandInput, CreateThemeForStackCommandOutput } from "./commands/CreateThemeForStackCommand";
28
29
  import { CreateUpdatedImageCommandInput, CreateUpdatedImageCommandOutput } from "./commands/CreateUpdatedImageCommand";
29
30
  import { CreateUsageReportSubscriptionCommandInput, CreateUsageReportSubscriptionCommandOutput } from "./commands/CreateUsageReportSubscriptionCommand";
30
31
  import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
@@ -38,6 +39,7 @@ import { DeleteImageBuilderCommandInput, DeleteImageBuilderCommandOutput } from
38
39
  import { DeleteImageCommandInput, DeleteImageCommandOutput } from "./commands/DeleteImageCommand";
39
40
  import { DeleteImagePermissionsCommandInput, DeleteImagePermissionsCommandOutput } from "./commands/DeleteImagePermissionsCommand";
40
41
  import { DeleteStackCommandInput, DeleteStackCommandOutput } from "./commands/DeleteStackCommand";
42
+ import { DeleteThemeForStackCommandInput, DeleteThemeForStackCommandOutput } from "./commands/DeleteThemeForStackCommand";
41
43
  import { DeleteUsageReportSubscriptionCommandInput, DeleteUsageReportSubscriptionCommandOutput } from "./commands/DeleteUsageReportSubscriptionCommand";
42
44
  import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
43
45
  import { DescribeAppBlockBuilderAppBlockAssociationsCommandInput, DescribeAppBlockBuilderAppBlockAssociationsCommandOutput } from "./commands/DescribeAppBlockBuilderAppBlockAssociationsCommand";
@@ -53,6 +55,7 @@ import { DescribeImagePermissionsCommandInput, DescribeImagePermissionsCommandOu
53
55
  import { DescribeImagesCommandInput, DescribeImagesCommandOutput } from "./commands/DescribeImagesCommand";
54
56
  import { DescribeSessionsCommandInput, DescribeSessionsCommandOutput } from "./commands/DescribeSessionsCommand";
55
57
  import { DescribeStacksCommandInput, DescribeStacksCommandOutput } from "./commands/DescribeStacksCommand";
58
+ import { DescribeThemeForStackCommandInput, DescribeThemeForStackCommandOutput } from "./commands/DescribeThemeForStackCommand";
56
59
  import { DescribeUsageReportSubscriptionsCommandInput, DescribeUsageReportSubscriptionsCommandOutput } from "./commands/DescribeUsageReportSubscriptionsCommand";
57
60
  import { DescribeUsersCommandInput, DescribeUsersCommandOutput } from "./commands/DescribeUsersCommand";
58
61
  import { DescribeUserStackAssociationsCommandInput, DescribeUserStackAssociationsCommandOutput } from "./commands/DescribeUserStackAssociationsCommand";
@@ -82,17 +85,18 @@ import { UpdateEntitlementCommandInput, UpdateEntitlementCommandOutput } from ".
82
85
  import { UpdateFleetCommandInput, UpdateFleetCommandOutput } from "./commands/UpdateFleetCommand";
83
86
  import { UpdateImagePermissionsCommandInput, UpdateImagePermissionsCommandOutput } from "./commands/UpdateImagePermissionsCommand";
84
87
  import { UpdateStackCommandInput, UpdateStackCommandOutput } from "./commands/UpdateStackCommand";
88
+ import { UpdateThemeForStackCommandInput, UpdateThemeForStackCommandOutput } from "./commands/UpdateThemeForStackCommand";
85
89
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
86
90
  import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
87
91
  export { __Client };
88
92
  /**
89
93
  * @public
90
94
  */
91
- export type ServiceInputTypes = AssociateAppBlockBuilderAppBlockCommandInput | AssociateApplicationFleetCommandInput | AssociateApplicationToEntitlementCommandInput | AssociateFleetCommandInput | BatchAssociateUserStackCommandInput | BatchDisassociateUserStackCommandInput | CopyImageCommandInput | CreateAppBlockBuilderCommandInput | CreateAppBlockBuilderStreamingURLCommandInput | CreateAppBlockCommandInput | CreateApplicationCommandInput | CreateDirectoryConfigCommandInput | CreateEntitlementCommandInput | CreateFleetCommandInput | CreateImageBuilderCommandInput | CreateImageBuilderStreamingURLCommandInput | CreateStackCommandInput | CreateStreamingURLCommandInput | CreateUpdatedImageCommandInput | CreateUsageReportSubscriptionCommandInput | CreateUserCommandInput | DeleteAppBlockBuilderCommandInput | DeleteAppBlockCommandInput | DeleteApplicationCommandInput | DeleteDirectoryConfigCommandInput | DeleteEntitlementCommandInput | DeleteFleetCommandInput | DeleteImageBuilderCommandInput | DeleteImageCommandInput | DeleteImagePermissionsCommandInput | DeleteStackCommandInput | DeleteUsageReportSubscriptionCommandInput | DeleteUserCommandInput | DescribeAppBlockBuilderAppBlockAssociationsCommandInput | DescribeAppBlockBuildersCommandInput | DescribeAppBlocksCommandInput | DescribeApplicationFleetAssociationsCommandInput | DescribeApplicationsCommandInput | DescribeDirectoryConfigsCommandInput | DescribeEntitlementsCommandInput | DescribeFleetsCommandInput | DescribeImageBuildersCommandInput | DescribeImagePermissionsCommandInput | DescribeImagesCommandInput | DescribeSessionsCommandInput | DescribeStacksCommandInput | DescribeUsageReportSubscriptionsCommandInput | DescribeUserStackAssociationsCommandInput | DescribeUsersCommandInput | DisableUserCommandInput | DisassociateAppBlockBuilderAppBlockCommandInput | DisassociateApplicationFleetCommandInput | DisassociateApplicationFromEntitlementCommandInput | DisassociateFleetCommandInput | EnableUserCommandInput | ExpireSessionCommandInput | ListAssociatedFleetsCommandInput | ListAssociatedStacksCommandInput | ListEntitledApplicationsCommandInput | ListTagsForResourceCommandInput | StartAppBlockBuilderCommandInput | StartFleetCommandInput | StartImageBuilderCommandInput | StopAppBlockBuilderCommandInput | StopFleetCommandInput | StopImageBuilderCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAppBlockBuilderCommandInput | UpdateApplicationCommandInput | UpdateDirectoryConfigCommandInput | UpdateEntitlementCommandInput | UpdateFleetCommandInput | UpdateImagePermissionsCommandInput | UpdateStackCommandInput;
95
+ export type ServiceInputTypes = AssociateAppBlockBuilderAppBlockCommandInput | AssociateApplicationFleetCommandInput | AssociateApplicationToEntitlementCommandInput | AssociateFleetCommandInput | BatchAssociateUserStackCommandInput | BatchDisassociateUserStackCommandInput | CopyImageCommandInput | CreateAppBlockBuilderCommandInput | CreateAppBlockBuilderStreamingURLCommandInput | CreateAppBlockCommandInput | CreateApplicationCommandInput | CreateDirectoryConfigCommandInput | CreateEntitlementCommandInput | CreateFleetCommandInput | CreateImageBuilderCommandInput | CreateImageBuilderStreamingURLCommandInput | CreateStackCommandInput | CreateStreamingURLCommandInput | CreateThemeForStackCommandInput | CreateUpdatedImageCommandInput | CreateUsageReportSubscriptionCommandInput | CreateUserCommandInput | DeleteAppBlockBuilderCommandInput | DeleteAppBlockCommandInput | DeleteApplicationCommandInput | DeleteDirectoryConfigCommandInput | DeleteEntitlementCommandInput | DeleteFleetCommandInput | DeleteImageBuilderCommandInput | DeleteImageCommandInput | DeleteImagePermissionsCommandInput | DeleteStackCommandInput | DeleteThemeForStackCommandInput | DeleteUsageReportSubscriptionCommandInput | DeleteUserCommandInput | DescribeAppBlockBuilderAppBlockAssociationsCommandInput | DescribeAppBlockBuildersCommandInput | DescribeAppBlocksCommandInput | DescribeApplicationFleetAssociationsCommandInput | DescribeApplicationsCommandInput | DescribeDirectoryConfigsCommandInput | DescribeEntitlementsCommandInput | DescribeFleetsCommandInput | DescribeImageBuildersCommandInput | DescribeImagePermissionsCommandInput | DescribeImagesCommandInput | DescribeSessionsCommandInput | DescribeStacksCommandInput | DescribeThemeForStackCommandInput | DescribeUsageReportSubscriptionsCommandInput | DescribeUserStackAssociationsCommandInput | DescribeUsersCommandInput | DisableUserCommandInput | DisassociateAppBlockBuilderAppBlockCommandInput | DisassociateApplicationFleetCommandInput | DisassociateApplicationFromEntitlementCommandInput | DisassociateFleetCommandInput | EnableUserCommandInput | ExpireSessionCommandInput | ListAssociatedFleetsCommandInput | ListAssociatedStacksCommandInput | ListEntitledApplicationsCommandInput | ListTagsForResourceCommandInput | StartAppBlockBuilderCommandInput | StartFleetCommandInput | StartImageBuilderCommandInput | StopAppBlockBuilderCommandInput | StopFleetCommandInput | StopImageBuilderCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAppBlockBuilderCommandInput | UpdateApplicationCommandInput | UpdateDirectoryConfigCommandInput | UpdateEntitlementCommandInput | UpdateFleetCommandInput | UpdateImagePermissionsCommandInput | UpdateStackCommandInput | UpdateThemeForStackCommandInput;
92
96
  /**
93
97
  * @public
94
98
  */
95
- export type ServiceOutputTypes = AssociateAppBlockBuilderAppBlockCommandOutput | AssociateApplicationFleetCommandOutput | AssociateApplicationToEntitlementCommandOutput | AssociateFleetCommandOutput | BatchAssociateUserStackCommandOutput | BatchDisassociateUserStackCommandOutput | CopyImageCommandOutput | CreateAppBlockBuilderCommandOutput | CreateAppBlockBuilderStreamingURLCommandOutput | CreateAppBlockCommandOutput | CreateApplicationCommandOutput | CreateDirectoryConfigCommandOutput | CreateEntitlementCommandOutput | CreateFleetCommandOutput | CreateImageBuilderCommandOutput | CreateImageBuilderStreamingURLCommandOutput | CreateStackCommandOutput | CreateStreamingURLCommandOutput | CreateUpdatedImageCommandOutput | CreateUsageReportSubscriptionCommandOutput | CreateUserCommandOutput | DeleteAppBlockBuilderCommandOutput | DeleteAppBlockCommandOutput | DeleteApplicationCommandOutput | DeleteDirectoryConfigCommandOutput | DeleteEntitlementCommandOutput | DeleteFleetCommandOutput | DeleteImageBuilderCommandOutput | DeleteImageCommandOutput | DeleteImagePermissionsCommandOutput | DeleteStackCommandOutput | DeleteUsageReportSubscriptionCommandOutput | DeleteUserCommandOutput | DescribeAppBlockBuilderAppBlockAssociationsCommandOutput | DescribeAppBlockBuildersCommandOutput | DescribeAppBlocksCommandOutput | DescribeApplicationFleetAssociationsCommandOutput | DescribeApplicationsCommandOutput | DescribeDirectoryConfigsCommandOutput | DescribeEntitlementsCommandOutput | DescribeFleetsCommandOutput | DescribeImageBuildersCommandOutput | DescribeImagePermissionsCommandOutput | DescribeImagesCommandOutput | DescribeSessionsCommandOutput | DescribeStacksCommandOutput | DescribeUsageReportSubscriptionsCommandOutput | DescribeUserStackAssociationsCommandOutput | DescribeUsersCommandOutput | DisableUserCommandOutput | DisassociateAppBlockBuilderAppBlockCommandOutput | DisassociateApplicationFleetCommandOutput | DisassociateApplicationFromEntitlementCommandOutput | DisassociateFleetCommandOutput | EnableUserCommandOutput | ExpireSessionCommandOutput | ListAssociatedFleetsCommandOutput | ListAssociatedStacksCommandOutput | ListEntitledApplicationsCommandOutput | ListTagsForResourceCommandOutput | StartAppBlockBuilderCommandOutput | StartFleetCommandOutput | StartImageBuilderCommandOutput | StopAppBlockBuilderCommandOutput | StopFleetCommandOutput | StopImageBuilderCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAppBlockBuilderCommandOutput | UpdateApplicationCommandOutput | UpdateDirectoryConfigCommandOutput | UpdateEntitlementCommandOutput | UpdateFleetCommandOutput | UpdateImagePermissionsCommandOutput | UpdateStackCommandOutput;
99
+ export type ServiceOutputTypes = AssociateAppBlockBuilderAppBlockCommandOutput | AssociateApplicationFleetCommandOutput | AssociateApplicationToEntitlementCommandOutput | AssociateFleetCommandOutput | BatchAssociateUserStackCommandOutput | BatchDisassociateUserStackCommandOutput | CopyImageCommandOutput | CreateAppBlockBuilderCommandOutput | CreateAppBlockBuilderStreamingURLCommandOutput | CreateAppBlockCommandOutput | CreateApplicationCommandOutput | CreateDirectoryConfigCommandOutput | CreateEntitlementCommandOutput | CreateFleetCommandOutput | CreateImageBuilderCommandOutput | CreateImageBuilderStreamingURLCommandOutput | CreateStackCommandOutput | CreateStreamingURLCommandOutput | CreateThemeForStackCommandOutput | CreateUpdatedImageCommandOutput | CreateUsageReportSubscriptionCommandOutput | CreateUserCommandOutput | DeleteAppBlockBuilderCommandOutput | DeleteAppBlockCommandOutput | DeleteApplicationCommandOutput | DeleteDirectoryConfigCommandOutput | DeleteEntitlementCommandOutput | DeleteFleetCommandOutput | DeleteImageBuilderCommandOutput | DeleteImageCommandOutput | DeleteImagePermissionsCommandOutput | DeleteStackCommandOutput | DeleteThemeForStackCommandOutput | DeleteUsageReportSubscriptionCommandOutput | DeleteUserCommandOutput | DescribeAppBlockBuilderAppBlockAssociationsCommandOutput | DescribeAppBlockBuildersCommandOutput | DescribeAppBlocksCommandOutput | DescribeApplicationFleetAssociationsCommandOutput | DescribeApplicationsCommandOutput | DescribeDirectoryConfigsCommandOutput | DescribeEntitlementsCommandOutput | DescribeFleetsCommandOutput | DescribeImageBuildersCommandOutput | DescribeImagePermissionsCommandOutput | DescribeImagesCommandOutput | DescribeSessionsCommandOutput | DescribeStacksCommandOutput | DescribeThemeForStackCommandOutput | DescribeUsageReportSubscriptionsCommandOutput | DescribeUserStackAssociationsCommandOutput | DescribeUsersCommandOutput | DisableUserCommandOutput | DisassociateAppBlockBuilderAppBlockCommandOutput | DisassociateApplicationFleetCommandOutput | DisassociateApplicationFromEntitlementCommandOutput | DisassociateFleetCommandOutput | EnableUserCommandOutput | ExpireSessionCommandOutput | ListAssociatedFleetsCommandOutput | ListAssociatedStacksCommandOutput | ListEntitledApplicationsCommandOutput | ListTagsForResourceCommandOutput | StartAppBlockBuilderCommandOutput | StartFleetCommandOutput | StartImageBuilderCommandOutput | StopAppBlockBuilderCommandOutput | StopFleetCommandOutput | StopImageBuilderCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAppBlockBuilderCommandOutput | UpdateApplicationCommandOutput | UpdateDirectoryConfigCommandOutput | UpdateEntitlementCommandOutput | UpdateFleetCommandOutput | UpdateImagePermissionsCommandOutput | UpdateStackCommandOutput | UpdateThemeForStackCommandOutput;
96
100
  /**
97
101
  * @public
98
102
  */
@@ -116,6 +116,7 @@ declare const CreateImageBuilderCommand_base: {
116
116
  * // VpceId: "STRING_VALUE",
117
117
  * // },
118
118
  * // ],
119
+ * // LatestAppstreamAgentVersion: "TRUE" || "FALSE",
119
120
  * // },
120
121
  * // };
121
122
  *
@@ -0,0 +1,108 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient";
4
+ import { CreateThemeForStackRequest, CreateThemeForStackResult } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateThemeForStackCommand}.
14
+ */
15
+ export interface CreateThemeForStackCommandInput extends CreateThemeForStackRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateThemeForStackCommand}.
21
+ */
22
+ export interface CreateThemeForStackCommandOutput extends CreateThemeForStackResult, __MetadataBearer {
23
+ }
24
+ declare const CreateThemeForStackCommand_base: {
25
+ new (input: CreateThemeForStackCommandInput): import("@smithy/smithy-client").CommandImpl<CreateThemeForStackCommandInput, CreateThemeForStackCommandOutput, AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: CreateThemeForStackCommandInput): import("@smithy/smithy-client").CommandImpl<CreateThemeForStackCommandInput, CreateThemeForStackCommandOutput, AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Creates custom branding that customizes the appearance of the streaming application catalog page.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { AppStreamClient, CreateThemeForStackCommand } from "@aws-sdk/client-appstream"; // ES Modules import
35
+ * // const { AppStreamClient, CreateThemeForStackCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
36
+ * const client = new AppStreamClient(config);
37
+ * const input = { // CreateThemeForStackRequest
38
+ * StackName: "STRING_VALUE", // required
39
+ * FooterLinks: [ // ThemeFooterLinks
40
+ * { // ThemeFooterLink
41
+ * DisplayName: "STRING_VALUE",
42
+ * FooterLinkURL: "STRING_VALUE",
43
+ * },
44
+ * ],
45
+ * TitleText: "STRING_VALUE", // required
46
+ * ThemeStyling: "LIGHT_BLUE" || "BLUE" || "PINK" || "RED", // required
47
+ * OrganizationLogoS3Location: { // S3Location
48
+ * S3Bucket: "STRING_VALUE", // required
49
+ * S3Key: "STRING_VALUE",
50
+ * },
51
+ * FaviconS3Location: {
52
+ * S3Bucket: "STRING_VALUE", // required
53
+ * S3Key: "STRING_VALUE",
54
+ * },
55
+ * };
56
+ * const command = new CreateThemeForStackCommand(input);
57
+ * const response = await client.send(command);
58
+ * // { // CreateThemeForStackResult
59
+ * // Theme: { // Theme
60
+ * // StackName: "STRING_VALUE",
61
+ * // State: "ENABLED" || "DISABLED",
62
+ * // ThemeTitleText: "STRING_VALUE",
63
+ * // ThemeStyling: "LIGHT_BLUE" || "BLUE" || "PINK" || "RED",
64
+ * // ThemeFooterLinks: [ // ThemeFooterLinks
65
+ * // { // ThemeFooterLink
66
+ * // DisplayName: "STRING_VALUE",
67
+ * // FooterLinkURL: "STRING_VALUE",
68
+ * // },
69
+ * // ],
70
+ * // ThemeOrganizationLogoURL: "STRING_VALUE",
71
+ * // ThemeFaviconURL: "STRING_VALUE",
72
+ * // CreatedTime: new Date("TIMESTAMP"),
73
+ * // },
74
+ * // };
75
+ *
76
+ * ```
77
+ *
78
+ * @param CreateThemeForStackCommandInput - {@link CreateThemeForStackCommandInput}
79
+ * @returns {@link CreateThemeForStackCommandOutput}
80
+ * @see {@link CreateThemeForStackCommandInput} for command's `input` shape.
81
+ * @see {@link CreateThemeForStackCommandOutput} for command's `response` shape.
82
+ * @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
83
+ *
84
+ * @throws {@link ConcurrentModificationException} (client fault)
85
+ * <p>An API error occurred. Wait a few minutes and try again.</p>
86
+ *
87
+ * @throws {@link InvalidAccountStatusException} (client fault)
88
+ * <p>The resource cannot be created because your AWS account is suspended. For assistance, contact AWS Support. </p>
89
+ *
90
+ * @throws {@link LimitExceededException} (client fault)
91
+ * <p>The requested limit exceeds the permitted limit for an account.</p>
92
+ *
93
+ * @throws {@link OperationNotPermittedException} (client fault)
94
+ * <p>The attempted operation is not permitted.</p>
95
+ *
96
+ * @throws {@link ResourceAlreadyExistsException} (client fault)
97
+ * <p>The specified resource already exists.</p>
98
+ *
99
+ * @throws {@link ResourceNotFoundException} (client fault)
100
+ * <p>The specified resource was not found.</p>
101
+ *
102
+ * @throws {@link AppStreamServiceException}
103
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
104
+ *
105
+ * @public
106
+ */
107
+ export declare class CreateThemeForStackCommand extends CreateThemeForStackCommand_base {
108
+ }
@@ -106,6 +106,12 @@ declare const CreateUpdatedImageCommand_base: {
106
106
  * // ErrorTimestamp: new Date("TIMESTAMP"),
107
107
  * // },
108
108
  * // ],
109
+ * // LatestAppstreamAgentVersion: "TRUE" || "FALSE",
110
+ * // SupportedInstanceFamilies: [
111
+ * // "STRING_VALUE",
112
+ * // ],
113
+ * // DynamicAppProvidersEnabled: "ENABLED" || "DISABLED",
114
+ * // ImageSharedWithOthers: "TRUE" || "FALSE",
109
115
  * // },
110
116
  * // canUpdateImage: true || false,
111
117
  * // };
@@ -86,6 +86,7 @@ declare const DeleteImageBuilderCommand_base: {
86
86
  * // VpceId: "STRING_VALUE",
87
87
  * // },
88
88
  * // ],
89
+ * // LatestAppstreamAgentVersion: "TRUE" || "FALSE",
89
90
  * // },
90
91
  * // };
91
92
  *
@@ -98,6 +98,12 @@ declare const DeleteImageCommand_base: {
98
98
  * // ErrorTimestamp: new Date("TIMESTAMP"),
99
99
  * // },
100
100
  * // ],
101
+ * // LatestAppstreamAgentVersion: "TRUE" || "FALSE",
102
+ * // SupportedInstanceFamilies: [
103
+ * // "STRING_VALUE",
104
+ * // ],
105
+ * // DynamicAppProvidersEnabled: "ENABLED" || "DISABLED",
106
+ * // ImageSharedWithOthers: "TRUE" || "FALSE",
101
107
  * // },
102
108
  * // };
103
109
  *