@aws-sdk/client-appstream 3.42.0 → 3.43.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 (63) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +7 -7
  3. package/dist-cjs/AppStream.js +150 -0
  4. package/dist-cjs/commands/AssociateApplicationFleetCommand.js +36 -0
  5. package/dist-cjs/commands/CreateAppBlockCommand.js +36 -0
  6. package/dist-cjs/commands/CreateApplicationCommand.js +36 -0
  7. package/dist-cjs/commands/DeleteAppBlockCommand.js +36 -0
  8. package/dist-cjs/commands/DeleteApplicationCommand.js +36 -0
  9. package/dist-cjs/commands/DescribeAppBlocksCommand.js +36 -0
  10. package/dist-cjs/commands/DescribeApplicationFleetAssociationsCommand.js +36 -0
  11. package/dist-cjs/commands/DescribeApplicationsCommand.js +36 -0
  12. package/dist-cjs/commands/DisassociateApplicationFleetCommand.js +36 -0
  13. package/dist-cjs/commands/UpdateApplicationCommand.js +36 -0
  14. package/dist-cjs/commands/index.js +10 -0
  15. package/dist-cjs/models/models_0.js +185 -34
  16. package/dist-cjs/protocols/Aws_json1_1.js +1329 -241
  17. package/dist-es/AppStream.js +150 -0
  18. package/dist-es/commands/AssociateApplicationFleetCommand.js +39 -0
  19. package/dist-es/commands/CreateAppBlockCommand.js +39 -0
  20. package/dist-es/commands/CreateApplicationCommand.js +39 -0
  21. package/dist-es/commands/DeleteAppBlockCommand.js +39 -0
  22. package/dist-es/commands/DeleteApplicationCommand.js +39 -0
  23. package/dist-es/commands/DescribeAppBlocksCommand.js +39 -0
  24. package/dist-es/commands/DescribeApplicationFleetAssociationsCommand.js +39 -0
  25. package/dist-es/commands/DescribeApplicationsCommand.js +39 -0
  26. package/dist-es/commands/DisassociateApplicationFleetCommand.js +39 -0
  27. package/dist-es/commands/UpdateApplicationCommand.js +39 -0
  28. package/dist-es/commands/index.js +10 -0
  29. package/dist-es/models/models_0.js +127 -24
  30. package/dist-es/protocols/Aws_json1_1.js +1154 -33
  31. package/dist-types/AppStream.d.ts +104 -4
  32. package/dist-types/AppStreamClient.d.ts +12 -2
  33. package/dist-types/commands/AssociateApplicationFleetCommand.d.ts +35 -0
  34. package/dist-types/commands/CreateAppBlockCommand.d.ts +41 -0
  35. package/dist-types/commands/CreateApplicationCommand.d.ts +41 -0
  36. package/dist-types/commands/CreateFleetCommand.d.ts +1 -1
  37. package/dist-types/commands/DeleteAppBlockCommand.d.ts +35 -0
  38. package/dist-types/commands/DeleteApplicationCommand.d.ts +35 -0
  39. package/dist-types/commands/DescribeAppBlocksCommand.d.ts +35 -0
  40. package/dist-types/commands/DescribeApplicationFleetAssociationsCommand.d.ts +35 -0
  41. package/dist-types/commands/DescribeApplicationsCommand.d.ts +35 -0
  42. package/dist-types/commands/DisassociateApplicationFleetCommand.d.ts +35 -0
  43. package/dist-types/commands/UpdateApplicationCommand.d.ts +35 -0
  44. package/dist-types/commands/UpdateFleetCommand.d.ts +21 -3
  45. package/dist-types/commands/index.d.ts +10 -0
  46. package/dist-types/models/models_0.d.ts +647 -63
  47. package/dist-types/protocols/Aws_json1_1.d.ts +30 -0
  48. package/dist-types/ts3.4/AppStream.d.ts +50 -0
  49. package/dist-types/ts3.4/AppStreamClient.d.ts +12 -2
  50. package/dist-types/ts3.4/commands/AssociateApplicationFleetCommand.d.ts +17 -0
  51. package/dist-types/ts3.4/commands/CreateAppBlockCommand.d.ts +17 -0
  52. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +17 -0
  53. package/dist-types/ts3.4/commands/DeleteAppBlockCommand.d.ts +17 -0
  54. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +17 -0
  55. package/dist-types/ts3.4/commands/DescribeAppBlocksCommand.d.ts +17 -0
  56. package/dist-types/ts3.4/commands/DescribeApplicationFleetAssociationsCommand.d.ts +17 -0
  57. package/dist-types/ts3.4/commands/DescribeApplicationsCommand.d.ts +17 -0
  58. package/dist-types/ts3.4/commands/DisassociateApplicationFleetCommand.d.ts +17 -0
  59. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +17 -0
  60. package/dist-types/ts3.4/commands/index.d.ts +10 -0
  61. package/dist-types/ts3.4/models/models_0.d.ts +368 -42
  62. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +30 -0
  63. package/package.json +2 -2
@@ -23,6 +23,54 @@ export declare enum Action {
23
23
  PRINTING_TO_LOCAL_DEVICE = "PRINTING_TO_LOCAL_DEVICE"
24
24
  }
25
25
 
26
+ export interface S3Location {
27
+
28
+ S3Bucket: string | undefined;
29
+
30
+ S3Key: string | undefined;
31
+ }
32
+ export declare namespace S3Location {
33
+
34
+ const filterSensitiveLog: (obj: S3Location) => any;
35
+ }
36
+
37
+ export interface ScriptDetails {
38
+
39
+ ScriptS3Location: S3Location | undefined;
40
+
41
+ ExecutablePath: string | undefined;
42
+
43
+ ExecutableParameters?: string;
44
+
45
+ TimeoutInSeconds: number | undefined;
46
+ }
47
+ export declare namespace ScriptDetails {
48
+
49
+ const filterSensitiveLog: (obj: ScriptDetails) => any;
50
+ }
51
+
52
+ export interface AppBlock {
53
+
54
+ Name: string | undefined;
55
+
56
+ Arn: string | undefined;
57
+
58
+ Description?: string;
59
+
60
+ DisplayName?: string;
61
+
62
+ SourceS3Location?: S3Location;
63
+
64
+ SetupScriptDetails: ScriptDetails | undefined;
65
+
66
+ CreatedTime?: Date;
67
+ }
68
+ export declare namespace AppBlock {
69
+
70
+ const filterSensitiveLog: (obj: AppBlock) => any;
71
+ }
72
+ export declare type PlatformType = "AMAZON_LINUX2" | "WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019";
73
+
26
74
  export interface Application {
27
75
 
28
76
  Name?: string;
@@ -40,11 +88,42 @@ export interface Application {
40
88
  Metadata?: {
41
89
  [key: string]: string;
42
90
  };
91
+
92
+ WorkingDirectory?: string;
93
+
94
+ Description?: string;
95
+
96
+ Arn?: string;
97
+
98
+ AppBlockArn?: string;
99
+
100
+ IconS3Location?: S3Location;
101
+
102
+ Platforms?: (PlatformType | string)[];
103
+
104
+ InstanceFamilies?: string[];
105
+
106
+ CreatedTime?: Date;
43
107
  }
44
108
  export declare namespace Application {
45
109
 
46
110
  const filterSensitiveLog: (obj: Application) => any;
47
111
  }
112
+ export declare enum ApplicationAttribute {
113
+ LAUNCH_PARAMETERS = "LAUNCH_PARAMETERS",
114
+ WORKING_DIRECTORY = "WORKING_DIRECTORY"
115
+ }
116
+
117
+ export interface ApplicationFleetAssociation {
118
+
119
+ FleetName: string | undefined;
120
+
121
+ ApplicationArn: string | undefined;
122
+ }
123
+ export declare namespace ApplicationFleetAssociation {
124
+
125
+ const filterSensitiveLog: (obj: ApplicationFleetAssociation) => any;
126
+ }
48
127
 
49
128
  export interface ApplicationSettings {
50
129
 
@@ -69,21 +148,23 @@ export declare namespace ApplicationSettingsResponse {
69
148
 
70
149
  const filterSensitiveLog: (obj: ApplicationSettingsResponse) => any;
71
150
  }
72
- export interface AssociateFleetRequest {
151
+ export interface AssociateApplicationFleetRequest {
73
152
 
74
153
  FleetName: string | undefined;
75
154
 
76
- StackName: string | undefined;
155
+ ApplicationArn: string | undefined;
77
156
  }
78
- export declare namespace AssociateFleetRequest {
157
+ export declare namespace AssociateApplicationFleetRequest {
79
158
 
80
- const filterSensitiveLog: (obj: AssociateFleetRequest) => any;
159
+ const filterSensitiveLog: (obj: AssociateApplicationFleetRequest) => any;
81
160
  }
82
- export interface AssociateFleetResult {
161
+ export interface AssociateApplicationFleetResult {
162
+
163
+ ApplicationFleetAssociation?: ApplicationFleetAssociation;
83
164
  }
84
- export declare namespace AssociateFleetResult {
165
+ export declare namespace AssociateApplicationFleetResult {
85
166
 
86
- const filterSensitiveLog: (obj: AssociateFleetResult) => any;
167
+ const filterSensitiveLog: (obj: AssociateApplicationFleetResult) => any;
87
168
  }
88
169
 
89
170
  export interface ConcurrentModificationException extends __SmithyException, $MetadataBearer {
@@ -97,26 +178,15 @@ export declare namespace ConcurrentModificationException {
97
178
  const filterSensitiveLog: (obj: ConcurrentModificationException) => any;
98
179
  }
99
180
 
100
- export interface IncompatibleImageException extends __SmithyException, $MetadataBearer {
101
- name: "IncompatibleImageException";
102
- $fault: "client";
103
-
104
- Message?: string;
105
- }
106
- export declare namespace IncompatibleImageException {
107
-
108
- const filterSensitiveLog: (obj: IncompatibleImageException) => any;
109
- }
110
-
111
- export interface InvalidAccountStatusException extends __SmithyException, $MetadataBearer {
112
- name: "InvalidAccountStatusException";
181
+ export interface InvalidParameterCombinationException extends __SmithyException, $MetadataBearer {
182
+ name: "InvalidParameterCombinationException";
113
183
  $fault: "client";
114
184
 
115
185
  Message?: string;
116
186
  }
117
- export declare namespace InvalidAccountStatusException {
187
+ export declare namespace InvalidParameterCombinationException {
118
188
 
119
- const filterSensitiveLog: (obj: InvalidAccountStatusException) => any;
189
+ const filterSensitiveLog: (obj: InvalidParameterCombinationException) => any;
120
190
  }
121
191
 
122
192
  export interface LimitExceededException extends __SmithyException, $MetadataBearer {
@@ -151,6 +221,44 @@ export declare namespace ResourceNotFoundException {
151
221
 
152
222
  const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
153
223
  }
224
+ export interface AssociateFleetRequest {
225
+
226
+ FleetName: string | undefined;
227
+
228
+ StackName: string | undefined;
229
+ }
230
+ export declare namespace AssociateFleetRequest {
231
+
232
+ const filterSensitiveLog: (obj: AssociateFleetRequest) => any;
233
+ }
234
+ export interface AssociateFleetResult {
235
+ }
236
+ export declare namespace AssociateFleetResult {
237
+
238
+ const filterSensitiveLog: (obj: AssociateFleetResult) => any;
239
+ }
240
+
241
+ export interface IncompatibleImageException extends __SmithyException, $MetadataBearer {
242
+ name: "IncompatibleImageException";
243
+ $fault: "client";
244
+
245
+ Message?: string;
246
+ }
247
+ export declare namespace IncompatibleImageException {
248
+
249
+ const filterSensitiveLog: (obj: IncompatibleImageException) => any;
250
+ }
251
+
252
+ export interface InvalidAccountStatusException extends __SmithyException, $MetadataBearer {
253
+ name: "InvalidAccountStatusException";
254
+ $fault: "client";
255
+
256
+ Message?: string;
257
+ }
258
+ export declare namespace InvalidAccountStatusException {
259
+
260
+ const filterSensitiveLog: (obj: InvalidAccountStatusException) => any;
261
+ }
154
262
  export declare enum AuthenticationType {
155
263
  API = "API",
156
264
  SAML = "SAML",
@@ -206,17 +314,6 @@ export declare namespace BatchAssociateUserStackResult {
206
314
 
207
315
  const filterSensitiveLog: (obj: BatchAssociateUserStackResult) => any;
208
316
  }
209
-
210
- export interface InvalidParameterCombinationException extends __SmithyException, $MetadataBearer {
211
- name: "InvalidParameterCombinationException";
212
- $fault: "client";
213
-
214
- Message?: string;
215
- }
216
- export declare namespace InvalidParameterCombinationException {
217
-
218
- const filterSensitiveLog: (obj: InvalidParameterCombinationException) => any;
219
- }
220
317
  export interface BatchDisassociateUserStackRequest {
221
318
 
222
319
  UserStackAssociations: UserStackAssociation[] | undefined;
@@ -301,6 +398,72 @@ export declare namespace ResourceNotAvailableException {
301
398
 
302
399
  const filterSensitiveLog: (obj: ResourceNotAvailableException) => any;
303
400
  }
401
+ export interface CreateAppBlockRequest {
402
+
403
+ Name: string | undefined;
404
+
405
+ Description?: string;
406
+
407
+ DisplayName?: string;
408
+
409
+ SourceS3Location: S3Location | undefined;
410
+
411
+ SetupScriptDetails: ScriptDetails | undefined;
412
+
413
+ Tags?: {
414
+ [key: string]: string;
415
+ };
416
+ }
417
+ export declare namespace CreateAppBlockRequest {
418
+
419
+ const filterSensitiveLog: (obj: CreateAppBlockRequest) => any;
420
+ }
421
+ export interface CreateAppBlockResult {
422
+
423
+ AppBlock?: AppBlock;
424
+ }
425
+ export declare namespace CreateAppBlockResult {
426
+
427
+ const filterSensitiveLog: (obj: CreateAppBlockResult) => any;
428
+ }
429
+ export interface CreateApplicationRequest {
430
+
431
+ Name: string | undefined;
432
+
433
+ DisplayName?: string;
434
+
435
+ Description?: string;
436
+
437
+ IconS3Location: S3Location | undefined;
438
+
439
+ LaunchPath: string | undefined;
440
+
441
+ WorkingDirectory?: string;
442
+
443
+ LaunchParameters?: string;
444
+
445
+ Platforms: (PlatformType | string)[] | undefined;
446
+
447
+ InstanceFamilies: string[] | undefined;
448
+
449
+ AppBlockArn: string | undefined;
450
+
451
+ Tags?: {
452
+ [key: string]: string;
453
+ };
454
+ }
455
+ export declare namespace CreateApplicationRequest {
456
+
457
+ const filterSensitiveLog: (obj: CreateApplicationRequest) => any;
458
+ }
459
+ export interface CreateApplicationResult {
460
+
461
+ Application?: Application;
462
+ }
463
+ export declare namespace CreateApplicationResult {
464
+
465
+ const filterSensitiveLog: (obj: CreateApplicationResult) => any;
466
+ }
304
467
 
305
468
  export interface ServiceAccountCredentials {
306
469
 
@@ -371,6 +534,7 @@ export declare namespace DomainJoinInfo {
371
534
  }
372
535
  export declare enum FleetType {
373
536
  ALWAYS_ON = "ALWAYS_ON",
537
+ ELASTIC = "ELASTIC",
374
538
  ON_DEMAND = "ON_DEMAND"
375
539
  }
376
540
  export declare enum StreamView {
@@ -400,7 +564,7 @@ export interface CreateFleetRequest {
400
564
 
401
565
  FleetType?: FleetType | string;
402
566
 
403
- ComputeCapacity: ComputeCapacity | undefined;
567
+ ComputeCapacity?: ComputeCapacity;
404
568
 
405
569
  VpcConfig?: VpcConfig;
406
570
 
@@ -425,6 +589,12 @@ export interface CreateFleetRequest {
425
589
  IamRoleArn?: string;
426
590
 
427
591
  StreamView?: StreamView | string;
592
+
593
+ Platform?: PlatformType | string;
594
+
595
+ MaxConcurrentSessions?: number;
596
+
597
+ UsbDeviceFilterStrings?: string[];
428
598
  }
429
599
  export declare namespace CreateFleetRequest {
430
600
 
@@ -521,6 +691,12 @@ export interface Fleet {
521
691
  IamRoleArn?: string;
522
692
 
523
693
  StreamView?: StreamView | string;
694
+
695
+ Platform?: PlatformType | string;
696
+
697
+ MaxConcurrentSessions?: number;
698
+
699
+ UsbDeviceFilterStrings?: string[];
524
700
  }
525
701
  export declare namespace Fleet {
526
702
 
@@ -603,7 +779,6 @@ export declare namespace NetworkAccessConfiguration {
603
779
 
604
780
  const filterSensitiveLog: (obj: NetworkAccessConfiguration) => any;
605
781
  }
606
- export declare type PlatformType = "AMAZON_LINUX2" | "WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019";
607
782
  export declare enum ImageBuilderState {
608
783
  DELETING = "DELETING",
609
784
  FAILED = "FAILED",
@@ -1007,19 +1182,19 @@ export declare namespace CreateUserResult {
1007
1182
 
1008
1183
  const filterSensitiveLog: (obj: CreateUserResult) => any;
1009
1184
  }
1010
- export interface DeleteDirectoryConfigRequest {
1185
+ export interface DeleteAppBlockRequest {
1011
1186
 
1012
- DirectoryName: string | undefined;
1187
+ Name: string | undefined;
1013
1188
  }
1014
- export declare namespace DeleteDirectoryConfigRequest {
1189
+ export declare namespace DeleteAppBlockRequest {
1015
1190
 
1016
- const filterSensitiveLog: (obj: DeleteDirectoryConfigRequest) => any;
1191
+ const filterSensitiveLog: (obj: DeleteAppBlockRequest) => any;
1017
1192
  }
1018
- export interface DeleteDirectoryConfigResult {
1193
+ export interface DeleteAppBlockResult {
1019
1194
  }
1020
- export declare namespace DeleteDirectoryConfigResult {
1195
+ export declare namespace DeleteAppBlockResult {
1021
1196
 
1022
- const filterSensitiveLog: (obj: DeleteDirectoryConfigResult) => any;
1197
+ const filterSensitiveLog: (obj: DeleteAppBlockResult) => any;
1023
1198
  }
1024
1199
 
1025
1200
  export interface ResourceInUseException extends __SmithyException, $MetadataBearer {
@@ -1032,6 +1207,34 @@ export declare namespace ResourceInUseException {
1032
1207
 
1033
1208
  const filterSensitiveLog: (obj: ResourceInUseException) => any;
1034
1209
  }
1210
+ export interface DeleteApplicationRequest {
1211
+
1212
+ Name: string | undefined;
1213
+ }
1214
+ export declare namespace DeleteApplicationRequest {
1215
+
1216
+ const filterSensitiveLog: (obj: DeleteApplicationRequest) => any;
1217
+ }
1218
+ export interface DeleteApplicationResult {
1219
+ }
1220
+ export declare namespace DeleteApplicationResult {
1221
+
1222
+ const filterSensitiveLog: (obj: DeleteApplicationResult) => any;
1223
+ }
1224
+ export interface DeleteDirectoryConfigRequest {
1225
+
1226
+ DirectoryName: string | undefined;
1227
+ }
1228
+ export declare namespace DeleteDirectoryConfigRequest {
1229
+
1230
+ const filterSensitiveLog: (obj: DeleteDirectoryConfigRequest) => any;
1231
+ }
1232
+ export interface DeleteDirectoryConfigResult {
1233
+ }
1234
+ export declare namespace DeleteDirectoryConfigResult {
1235
+
1236
+ const filterSensitiveLog: (obj: DeleteDirectoryConfigResult) => any;
1237
+ }
1035
1238
  export interface DeleteFleetRequest {
1036
1239
 
1037
1240
  Name: string | undefined;
@@ -1136,6 +1339,74 @@ export declare namespace DeleteUserResult {
1136
1339
 
1137
1340
  const filterSensitiveLog: (obj: DeleteUserResult) => any;
1138
1341
  }
1342
+ export interface DescribeAppBlocksRequest {
1343
+
1344
+ Arns?: string[];
1345
+
1346
+ NextToken?: string;
1347
+
1348
+ MaxResults?: number;
1349
+ }
1350
+ export declare namespace DescribeAppBlocksRequest {
1351
+
1352
+ const filterSensitiveLog: (obj: DescribeAppBlocksRequest) => any;
1353
+ }
1354
+ export interface DescribeAppBlocksResult {
1355
+
1356
+ AppBlocks?: AppBlock[];
1357
+
1358
+ NextToken?: string;
1359
+ }
1360
+ export declare namespace DescribeAppBlocksResult {
1361
+
1362
+ const filterSensitiveLog: (obj: DescribeAppBlocksResult) => any;
1363
+ }
1364
+ export interface DescribeApplicationFleetAssociationsRequest {
1365
+
1366
+ FleetName?: string;
1367
+
1368
+ ApplicationArn?: string;
1369
+
1370
+ MaxResults?: number;
1371
+
1372
+ NextToken?: string;
1373
+ }
1374
+ export declare namespace DescribeApplicationFleetAssociationsRequest {
1375
+
1376
+ const filterSensitiveLog: (obj: DescribeApplicationFleetAssociationsRequest) => any;
1377
+ }
1378
+ export interface DescribeApplicationFleetAssociationsResult {
1379
+
1380
+ ApplicationFleetAssociations?: ApplicationFleetAssociation[];
1381
+
1382
+ NextToken?: string;
1383
+ }
1384
+ export declare namespace DescribeApplicationFleetAssociationsResult {
1385
+
1386
+ const filterSensitiveLog: (obj: DescribeApplicationFleetAssociationsResult) => any;
1387
+ }
1388
+ export interface DescribeApplicationsRequest {
1389
+
1390
+ Arns?: string[];
1391
+
1392
+ NextToken?: string;
1393
+
1394
+ MaxResults?: number;
1395
+ }
1396
+ export declare namespace DescribeApplicationsRequest {
1397
+
1398
+ const filterSensitiveLog: (obj: DescribeApplicationsRequest) => any;
1399
+ }
1400
+ export interface DescribeApplicationsResult {
1401
+
1402
+ Applications?: Application[];
1403
+
1404
+ NextToken?: string;
1405
+ }
1406
+ export declare namespace DescribeApplicationsResult {
1407
+
1408
+ const filterSensitiveLog: (obj: DescribeApplicationsResult) => any;
1409
+ }
1139
1410
  export interface DescribeDirectoryConfigsRequest {
1140
1411
 
1141
1412
  DirectoryNames?: string[];
@@ -1485,6 +1756,22 @@ export declare namespace DisableUserResult {
1485
1756
 
1486
1757
  const filterSensitiveLog: (obj: DisableUserResult) => any;
1487
1758
  }
1759
+ export interface DisassociateApplicationFleetRequest {
1760
+
1761
+ FleetName: string | undefined;
1762
+
1763
+ ApplicationArn: string | undefined;
1764
+ }
1765
+ export declare namespace DisassociateApplicationFleetRequest {
1766
+
1767
+ const filterSensitiveLog: (obj: DisassociateApplicationFleetRequest) => any;
1768
+ }
1769
+ export interface DisassociateApplicationFleetResult {
1770
+ }
1771
+ export declare namespace DisassociateApplicationFleetResult {
1772
+
1773
+ const filterSensitiveLog: (obj: DisassociateApplicationFleetResult) => any;
1774
+ }
1488
1775
  export interface DisassociateFleetRequest {
1489
1776
 
1490
1777
  FleetName: string | undefined;
@@ -1534,6 +1821,7 @@ export declare namespace ExpireSessionResult {
1534
1821
  export declare enum FleetAttribute {
1535
1822
  DOMAIN_JOIN_INFO = "DOMAIN_JOIN_INFO",
1536
1823
  IAM_ROLE_ARN = "IAM_ROLE_ARN",
1824
+ USB_DEVICE_FILTER_STRINGS = "USB_DEVICE_FILTER_STRINGS",
1537
1825
  VPC_CONFIGURATION = "VPC_CONFIGURATION",
1538
1826
  VPC_CONFIGURATION_SECURITY_GROUP_IDS = "VPC_CONFIGURATION_SECURITY_GROUP_IDS"
1539
1827
  }
@@ -1691,6 +1979,38 @@ export declare namespace UntagResourceResponse {
1691
1979
 
1692
1980
  const filterSensitiveLog: (obj: UntagResourceResponse) => any;
1693
1981
  }
1982
+ export interface UpdateApplicationRequest {
1983
+
1984
+ Name: string | undefined;
1985
+
1986
+ DisplayName?: string;
1987
+
1988
+ Description?: string;
1989
+
1990
+ IconS3Location?: S3Location;
1991
+
1992
+ LaunchPath?: string;
1993
+
1994
+ WorkingDirectory?: string;
1995
+
1996
+ LaunchParameters?: string;
1997
+
1998
+ AppBlockArn?: string;
1999
+
2000
+ AttributesToDelete?: (ApplicationAttribute | string)[];
2001
+ }
2002
+ export declare namespace UpdateApplicationRequest {
2003
+
2004
+ const filterSensitiveLog: (obj: UpdateApplicationRequest) => any;
2005
+ }
2006
+ export interface UpdateApplicationResult {
2007
+
2008
+ Application?: Application;
2009
+ }
2010
+ export declare namespace UpdateApplicationResult {
2011
+
2012
+ const filterSensitiveLog: (obj: UpdateApplicationResult) => any;
2013
+ }
1694
2014
  export interface UpdateDirectoryConfigRequest {
1695
2015
 
1696
2016
  DirectoryName: string | undefined;
@@ -1746,6 +2066,12 @@ export interface UpdateFleetRequest {
1746
2066
  IamRoleArn?: string;
1747
2067
 
1748
2068
  StreamView?: StreamView | string;
2069
+
2070
+ Platform?: PlatformType | string;
2071
+
2072
+ MaxConcurrentSessions?: number;
2073
+
2074
+ UsbDeviceFilterStrings?: string[];
1749
2075
  }
1750
2076
  export declare namespace UpdateFleetRequest {
1751
2077