@aws-sdk/client-appstream 3.300.0 → 3.303.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.
- package/dist-cjs/models/models_0.js +186 -214
- package/dist-es/models/models_0.js +186 -214
- package/dist-types/commands/AssociateApplicationFleetCommand.d.ts +1 -1
- package/dist-types/commands/AssociateApplicationToEntitlementCommand.d.ts +1 -1
- package/dist-types/commands/AssociateFleetCommand.d.ts +1 -1
- package/dist-types/commands/BatchAssociateUserStackCommand.d.ts +3 -3
- package/dist-types/commands/BatchDisassociateUserStackCommand.d.ts +3 -3
- package/dist-types/commands/CopyImageCommand.d.ts +1 -1
- package/dist-types/commands/CreateAppBlockCommand.d.ts +4 -4
- package/dist-types/commands/CreateApplicationCommand.d.ts +5 -5
- package/dist-types/commands/CreateDirectoryConfigCommand.d.ts +4 -4
- package/dist-types/commands/CreateEntitlementCommand.d.ts +3 -3
- package/dist-types/commands/CreateFleetCommand.d.ts +9 -9
- package/dist-types/commands/CreateImageBuilderCommand.d.ts +8 -8
- package/dist-types/commands/CreateImageBuilderStreamingURLCommand.d.ts +1 -1
- package/dist-types/commands/CreateStackCommand.d.ts +12 -12
- package/dist-types/commands/CreateStreamingURLCommand.d.ts +1 -1
- package/dist-types/commands/CreateUpdatedImageCommand.d.ts +2 -2
- package/dist-types/commands/CreateUserCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAppBlockCommand.d.ts +1 -1
- package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDirectoryConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEntitlementCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFleetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteImageBuilderCommand.d.ts +1 -1
- package/dist-types/commands/DeleteImageCommand.d.ts +1 -1
- package/dist-types/commands/DeleteImagePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/DeleteStackCommand.d.ts +1 -1
- package/dist-types/commands/DeleteUserCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAppBlocksCommand.d.ts +2 -2
- package/dist-types/commands/DescribeApplicationFleetAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeApplicationsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeDirectoryConfigsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeEntitlementsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFleetsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeImageBuildersCommand.d.ts +2 -2
- package/dist-types/commands/DescribeImagePermissionsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeImagesCommand.d.ts +3 -3
- package/dist-types/commands/DescribeSessionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStacksCommand.d.ts +2 -2
- package/dist-types/commands/DescribeUsageReportSubscriptionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUserStackAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUsersCommand.d.ts +1 -1
- package/dist-types/commands/DisableUserCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateApplicationFleetCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateApplicationFromEntitlementCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateFleetCommand.d.ts +1 -1
- package/dist-types/commands/EnableUserCommand.d.ts +1 -1
- package/dist-types/commands/ExpireSessionCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociatedFleetsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociatedStacksCommand.d.ts +1 -1
- package/dist-types/commands/ListEntitledApplicationsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/StartFleetCommand.d.ts +1 -1
- package/dist-types/commands/StartImageBuilderCommand.d.ts +1 -1
- package/dist-types/commands/StopFleetCommand.d.ts +1 -1
- package/dist-types/commands/StopImageBuilderCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateApplicationCommand.d.ts +3 -3
- package/dist-types/commands/UpdateDirectoryConfigCommand.d.ts +4 -4
- package/dist-types/commands/UpdateEntitlementCommand.d.ts +3 -3
- package/dist-types/commands/UpdateFleetCommand.d.ts +9 -9
- package/dist-types/commands/UpdateImagePermissionsCommand.d.ts +2 -2
- package/dist-types/commands/UpdateStackCommand.d.ts +12 -12
- package/dist-types/models/models_0.d.ts +327 -187
- package/dist-types/ts3.4/models/models_0.d.ts +232 -186
- package/package.json +35 -35
|
@@ -2,10 +2,15 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
|
|
|
2
2
|
import { AppStreamServiceException as __BaseException } from "./AppStreamServiceException";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
|
+
* @enum
|
|
5
6
|
*/
|
|
6
|
-
export declare
|
|
7
|
-
STREAMING
|
|
8
|
-
}
|
|
7
|
+
export declare const AccessEndpointType: {
|
|
8
|
+
readonly STREAMING: "STREAMING";
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
export type AccessEndpointType = (typeof AccessEndpointType)[keyof typeof AccessEndpointType];
|
|
9
14
|
/**
|
|
10
15
|
* @public
|
|
11
16
|
* <p>Describes an interface VPC endpoint (interface endpoint) that lets you create a private connection between the virtual private cloud (VPC) that you specify and AppStream 2.0. When you specify an interface endpoint for a stack, users of the stack can connect to AppStream 2.0 only through that endpoint. When you specify an interface endpoint for an image builder, administrators can connect to the image builder only through that endpoint.</p>
|
|
@@ -22,16 +27,21 @@ export interface AccessEndpoint {
|
|
|
22
27
|
}
|
|
23
28
|
/**
|
|
24
29
|
* @public
|
|
30
|
+
* @enum
|
|
25
31
|
*/
|
|
26
|
-
export declare
|
|
27
|
-
CLIPBOARD_COPY_FROM_LOCAL_DEVICE
|
|
28
|
-
CLIPBOARD_COPY_TO_LOCAL_DEVICE
|
|
29
|
-
DOMAIN_PASSWORD_SIGNIN
|
|
30
|
-
DOMAIN_SMART_CARD_SIGNIN
|
|
31
|
-
FILE_DOWNLOAD
|
|
32
|
-
FILE_UPLOAD
|
|
33
|
-
PRINTING_TO_LOCAL_DEVICE
|
|
34
|
-
}
|
|
32
|
+
export declare const Action: {
|
|
33
|
+
readonly CLIPBOARD_COPY_FROM_LOCAL_DEVICE: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE";
|
|
34
|
+
readonly CLIPBOARD_COPY_TO_LOCAL_DEVICE: "CLIPBOARD_COPY_TO_LOCAL_DEVICE";
|
|
35
|
+
readonly DOMAIN_PASSWORD_SIGNIN: "DOMAIN_PASSWORD_SIGNIN";
|
|
36
|
+
readonly DOMAIN_SMART_CARD_SIGNIN: "DOMAIN_SMART_CARD_SIGNIN";
|
|
37
|
+
readonly FILE_DOWNLOAD: "FILE_DOWNLOAD";
|
|
38
|
+
readonly FILE_UPLOAD: "FILE_UPLOAD";
|
|
39
|
+
readonly PRINTING_TO_LOCAL_DEVICE: "PRINTING_TO_LOCAL_DEVICE";
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export type Action = (typeof Action)[keyof typeof Action];
|
|
35
45
|
/**
|
|
36
46
|
* @public
|
|
37
47
|
* <p>Describes the S3 location.</p>
|
|
@@ -110,13 +120,18 @@ export interface AppBlock {
|
|
|
110
120
|
}
|
|
111
121
|
/**
|
|
112
122
|
* @public
|
|
123
|
+
* @enum
|
|
113
124
|
*/
|
|
114
|
-
export declare
|
|
115
|
-
AMAZON_LINUX2
|
|
116
|
-
WINDOWS
|
|
117
|
-
WINDOWS_SERVER_2016
|
|
118
|
-
WINDOWS_SERVER_2019
|
|
119
|
-
}
|
|
125
|
+
export declare const PlatformType: {
|
|
126
|
+
readonly AMAZON_LINUX2: "AMAZON_LINUX2";
|
|
127
|
+
readonly WINDOWS: "WINDOWS";
|
|
128
|
+
readonly WINDOWS_SERVER_2016: "WINDOWS_SERVER_2016";
|
|
129
|
+
readonly WINDOWS_SERVER_2019: "WINDOWS_SERVER_2019";
|
|
130
|
+
};
|
|
131
|
+
/**
|
|
132
|
+
* @public
|
|
133
|
+
*/
|
|
134
|
+
export type PlatformType = (typeof PlatformType)[keyof typeof PlatformType];
|
|
120
135
|
/**
|
|
121
136
|
* @public
|
|
122
137
|
* <p>Describes an application in the application catalog.</p>
|
|
@@ -185,11 +200,16 @@ export interface Application {
|
|
|
185
200
|
}
|
|
186
201
|
/**
|
|
187
202
|
* @public
|
|
203
|
+
* @enum
|
|
188
204
|
*/
|
|
189
|
-
export declare
|
|
190
|
-
LAUNCH_PARAMETERS
|
|
191
|
-
WORKING_DIRECTORY
|
|
192
|
-
}
|
|
205
|
+
export declare const ApplicationAttribute: {
|
|
206
|
+
readonly LAUNCH_PARAMETERS: "LAUNCH_PARAMETERS";
|
|
207
|
+
readonly WORKING_DIRECTORY: "WORKING_DIRECTORY";
|
|
208
|
+
};
|
|
209
|
+
/**
|
|
210
|
+
* @public
|
|
211
|
+
*/
|
|
212
|
+
export type ApplicationAttribute = (typeof ApplicationAttribute)[keyof typeof ApplicationAttribute];
|
|
193
213
|
/**
|
|
194
214
|
* @public
|
|
195
215
|
* <p>Describes the application fleet association.</p>
|
|
@@ -239,11 +259,16 @@ export interface ApplicationSettingsResponse {
|
|
|
239
259
|
}
|
|
240
260
|
/**
|
|
241
261
|
* @public
|
|
262
|
+
* @enum
|
|
242
263
|
*/
|
|
243
|
-
export declare
|
|
244
|
-
ALL
|
|
245
|
-
ASSOCIATED
|
|
246
|
-
}
|
|
264
|
+
export declare const AppVisibility: {
|
|
265
|
+
readonly ALL: "ALL";
|
|
266
|
+
readonly ASSOCIATED: "ASSOCIATED";
|
|
267
|
+
};
|
|
268
|
+
/**
|
|
269
|
+
* @public
|
|
270
|
+
*/
|
|
271
|
+
export type AppVisibility = (typeof AppVisibility)[keyof typeof AppVisibility];
|
|
247
272
|
/**
|
|
248
273
|
* @public
|
|
249
274
|
*/
|
|
@@ -438,13 +463,18 @@ export declare class InvalidAccountStatusException extends __BaseException {
|
|
|
438
463
|
}
|
|
439
464
|
/**
|
|
440
465
|
* @public
|
|
466
|
+
* @enum
|
|
441
467
|
*/
|
|
442
|
-
export declare
|
|
443
|
-
API
|
|
444
|
-
AWS_AD
|
|
445
|
-
SAML
|
|
446
|
-
USERPOOL
|
|
447
|
-
}
|
|
468
|
+
export declare const AuthenticationType: {
|
|
469
|
+
readonly API: "API";
|
|
470
|
+
readonly AWS_AD: "AWS_AD";
|
|
471
|
+
readonly SAML: "SAML";
|
|
472
|
+
readonly USERPOOL: "USERPOOL";
|
|
473
|
+
};
|
|
474
|
+
/**
|
|
475
|
+
* @public
|
|
476
|
+
*/
|
|
477
|
+
export type AuthenticationType = (typeof AuthenticationType)[keyof typeof AuthenticationType];
|
|
448
478
|
/**
|
|
449
479
|
* @public
|
|
450
480
|
* <p>Describes a user in the user pool and the associated stack.</p>
|
|
@@ -481,13 +511,18 @@ export interface BatchAssociateUserStackRequest {
|
|
|
481
511
|
}
|
|
482
512
|
/**
|
|
483
513
|
* @public
|
|
514
|
+
* @enum
|
|
484
515
|
*/
|
|
485
|
-
export declare
|
|
486
|
-
DIRECTORY_NOT_FOUND
|
|
487
|
-
INTERNAL_ERROR
|
|
488
|
-
STACK_NOT_FOUND
|
|
489
|
-
USER_NAME_NOT_FOUND
|
|
490
|
-
}
|
|
516
|
+
export declare const UserStackAssociationErrorCode: {
|
|
517
|
+
readonly DIRECTORY_NOT_FOUND: "DIRECTORY_NOT_FOUND";
|
|
518
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
519
|
+
readonly STACK_NOT_FOUND: "STACK_NOT_FOUND";
|
|
520
|
+
readonly USER_NAME_NOT_FOUND: "USER_NAME_NOT_FOUND";
|
|
521
|
+
};
|
|
522
|
+
/**
|
|
523
|
+
* @public
|
|
524
|
+
*/
|
|
525
|
+
export type UserStackAssociationErrorCode = (typeof UserStackAssociationErrorCode)[keyof typeof UserStackAssociationErrorCode];
|
|
491
526
|
/**
|
|
492
527
|
* @public
|
|
493
528
|
* <p>Describes the error that is returned when a user can’t be associated with or disassociated from a stack. </p>
|
|
@@ -535,12 +570,17 @@ export interface BatchDisassociateUserStackResult {
|
|
|
535
570
|
}
|
|
536
571
|
/**
|
|
537
572
|
* @public
|
|
573
|
+
* @enum
|
|
538
574
|
*/
|
|
539
|
-
export declare
|
|
540
|
-
DISABLED
|
|
541
|
-
ENABLED
|
|
542
|
-
ENABLED_NO_DIRECTORY_LOGIN_FALLBACK
|
|
543
|
-
}
|
|
575
|
+
export declare const CertificateBasedAuthStatus: {
|
|
576
|
+
readonly DISABLED: "DISABLED";
|
|
577
|
+
readonly ENABLED: "ENABLED";
|
|
578
|
+
readonly ENABLED_NO_DIRECTORY_LOGIN_FALLBACK: "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK";
|
|
579
|
+
};
|
|
580
|
+
/**
|
|
581
|
+
* @public
|
|
582
|
+
*/
|
|
583
|
+
export type CertificateBasedAuthStatus = (typeof CertificateBasedAuthStatus)[keyof typeof CertificateBasedAuthStatus];
|
|
544
584
|
/**
|
|
545
585
|
* @public
|
|
546
586
|
* <p>The certificate-based authentication properties used to authenticate SAML 2.0 Identity
|
|
@@ -1001,19 +1041,29 @@ export interface DomainJoinInfo {
|
|
|
1001
1041
|
}
|
|
1002
1042
|
/**
|
|
1003
1043
|
* @public
|
|
1044
|
+
* @enum
|
|
1004
1045
|
*/
|
|
1005
|
-
export declare
|
|
1006
|
-
ALWAYS_ON
|
|
1007
|
-
ELASTIC
|
|
1008
|
-
ON_DEMAND
|
|
1009
|
-
}
|
|
1046
|
+
export declare const FleetType: {
|
|
1047
|
+
readonly ALWAYS_ON: "ALWAYS_ON";
|
|
1048
|
+
readonly ELASTIC: "ELASTIC";
|
|
1049
|
+
readonly ON_DEMAND: "ON_DEMAND";
|
|
1050
|
+
};
|
|
1010
1051
|
/**
|
|
1011
1052
|
* @public
|
|
1012
1053
|
*/
|
|
1013
|
-
export
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1054
|
+
export type FleetType = (typeof FleetType)[keyof typeof FleetType];
|
|
1055
|
+
/**
|
|
1056
|
+
* @public
|
|
1057
|
+
* @enum
|
|
1058
|
+
*/
|
|
1059
|
+
export declare const StreamView: {
|
|
1060
|
+
readonly APP: "APP";
|
|
1061
|
+
readonly DESKTOP: "DESKTOP";
|
|
1062
|
+
};
|
|
1063
|
+
/**
|
|
1064
|
+
* @public
|
|
1065
|
+
*/
|
|
1066
|
+
export type StreamView = (typeof StreamView)[keyof typeof StreamView];
|
|
1017
1067
|
/**
|
|
1018
1068
|
* @public
|
|
1019
1069
|
* <p>Describes VPC configuration information for fleets and image builders.</p>
|
|
@@ -1280,39 +1330,44 @@ export interface CreateFleetRequest {
|
|
|
1280
1330
|
}
|
|
1281
1331
|
/**
|
|
1282
1332
|
* @public
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1333
|
+
* @enum
|
|
1334
|
+
*/
|
|
1335
|
+
export declare const FleetErrorCode: {
|
|
1336
|
+
readonly DOMAIN_JOIN_ERROR_ACCESS_DENIED: "DOMAIN_JOIN_ERROR_ACCESS_DENIED";
|
|
1337
|
+
readonly DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED: "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED";
|
|
1338
|
+
readonly DOMAIN_JOIN_ERROR_FILE_NOT_FOUND: "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND";
|
|
1339
|
+
readonly DOMAIN_JOIN_ERROR_INVALID_PARAMETER: "DOMAIN_JOIN_ERROR_INVALID_PARAMETER";
|
|
1340
|
+
readonly DOMAIN_JOIN_ERROR_LOGON_FAILURE: "DOMAIN_JOIN_ERROR_LOGON_FAILURE";
|
|
1341
|
+
readonly DOMAIN_JOIN_ERROR_MORE_DATA: "DOMAIN_JOIN_ERROR_MORE_DATA";
|
|
1342
|
+
readonly DOMAIN_JOIN_ERROR_NOT_SUPPORTED: "DOMAIN_JOIN_ERROR_NOT_SUPPORTED";
|
|
1343
|
+
readonly DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN: "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN";
|
|
1344
|
+
readonly DOMAIN_JOIN_INTERNAL_SERVICE_ERROR: "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR";
|
|
1345
|
+
readonly DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME: "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME";
|
|
1346
|
+
readonly DOMAIN_JOIN_NERR_PASSWORD_EXPIRED: "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED";
|
|
1347
|
+
readonly DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED: "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED";
|
|
1348
|
+
readonly FLEET_INSTANCE_PROVISIONING_FAILURE: "FLEET_INSTANCE_PROVISIONING_FAILURE";
|
|
1349
|
+
readonly FLEET_STOPPED: "FLEET_STOPPED";
|
|
1350
|
+
readonly IAM_SERVICE_ROLE_IS_MISSING: "IAM_SERVICE_ROLE_IS_MISSING";
|
|
1351
|
+
readonly IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION: "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION";
|
|
1352
|
+
readonly IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION: "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION";
|
|
1353
|
+
readonly IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION: "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION";
|
|
1354
|
+
readonly IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION: "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION";
|
|
1355
|
+
readonly IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION";
|
|
1356
|
+
readonly IGW_NOT_ATTACHED: "IGW_NOT_ATTACHED";
|
|
1357
|
+
readonly IMAGE_NOT_FOUND: "IMAGE_NOT_FOUND";
|
|
1358
|
+
readonly INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR";
|
|
1359
|
+
readonly INVALID_SUBNET_CONFIGURATION: "INVALID_SUBNET_CONFIGURATION";
|
|
1360
|
+
readonly MACHINE_ROLE_IS_MISSING: "MACHINE_ROLE_IS_MISSING";
|
|
1361
|
+
readonly NETWORK_INTERFACE_LIMIT_EXCEEDED: "NETWORK_INTERFACE_LIMIT_EXCEEDED";
|
|
1362
|
+
readonly SECURITY_GROUPS_NOT_FOUND: "SECURITY_GROUPS_NOT_FOUND";
|
|
1363
|
+
readonly STS_DISABLED_IN_REGION: "STS_DISABLED_IN_REGION";
|
|
1364
|
+
readonly SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES: "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES";
|
|
1365
|
+
readonly SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND";
|
|
1366
|
+
};
|
|
1367
|
+
/**
|
|
1368
|
+
* @public
|
|
1369
|
+
*/
|
|
1370
|
+
export type FleetErrorCode = (typeof FleetErrorCode)[keyof typeof FleetErrorCode];
|
|
1316
1371
|
/**
|
|
1317
1372
|
* @public
|
|
1318
1373
|
* <p>Describes a fleet error.</p>
|
|
@@ -1329,13 +1384,18 @@ export interface FleetError {
|
|
|
1329
1384
|
}
|
|
1330
1385
|
/**
|
|
1331
1386
|
* @public
|
|
1387
|
+
* @enum
|
|
1332
1388
|
*/
|
|
1333
|
-
export declare
|
|
1334
|
-
RUNNING
|
|
1335
|
-
STARTING
|
|
1336
|
-
STOPPED
|
|
1337
|
-
STOPPING
|
|
1338
|
-
}
|
|
1389
|
+
export declare const FleetState: {
|
|
1390
|
+
readonly RUNNING: "RUNNING";
|
|
1391
|
+
readonly STARTING: "STARTING";
|
|
1392
|
+
readonly STOPPED: "STOPPED";
|
|
1393
|
+
readonly STOPPING: "STOPPING";
|
|
1394
|
+
};
|
|
1395
|
+
/**
|
|
1396
|
+
* @public
|
|
1397
|
+
*/
|
|
1398
|
+
export type FleetState = (typeof FleetState)[keyof typeof FleetState];
|
|
1339
1399
|
/**
|
|
1340
1400
|
* @public
|
|
1341
1401
|
* <p>Describes a fleet.</p>
|
|
@@ -1791,27 +1851,37 @@ export interface NetworkAccessConfiguration {
|
|
|
1791
1851
|
}
|
|
1792
1852
|
/**
|
|
1793
1853
|
* @public
|
|
1854
|
+
* @enum
|
|
1794
1855
|
*/
|
|
1795
|
-
export declare
|
|
1796
|
-
DELETING
|
|
1797
|
-
FAILED
|
|
1798
|
-
PENDING
|
|
1799
|
-
PENDING_QUALIFICATION
|
|
1800
|
-
REBOOTING
|
|
1801
|
-
RUNNING
|
|
1802
|
-
SNAPSHOTTING
|
|
1803
|
-
STOPPED
|
|
1804
|
-
STOPPING
|
|
1805
|
-
UPDATING
|
|
1806
|
-
UPDATING_AGENT
|
|
1807
|
-
}
|
|
1856
|
+
export declare const ImageBuilderState: {
|
|
1857
|
+
readonly DELETING: "DELETING";
|
|
1858
|
+
readonly FAILED: "FAILED";
|
|
1859
|
+
readonly PENDING: "PENDING";
|
|
1860
|
+
readonly PENDING_QUALIFICATION: "PENDING_QUALIFICATION";
|
|
1861
|
+
readonly REBOOTING: "REBOOTING";
|
|
1862
|
+
readonly RUNNING: "RUNNING";
|
|
1863
|
+
readonly SNAPSHOTTING: "SNAPSHOTTING";
|
|
1864
|
+
readonly STOPPED: "STOPPED";
|
|
1865
|
+
readonly STOPPING: "STOPPING";
|
|
1866
|
+
readonly UPDATING: "UPDATING";
|
|
1867
|
+
readonly UPDATING_AGENT: "UPDATING_AGENT";
|
|
1868
|
+
};
|
|
1808
1869
|
/**
|
|
1809
1870
|
* @public
|
|
1810
1871
|
*/
|
|
1811
|
-
export
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1872
|
+
export type ImageBuilderState = (typeof ImageBuilderState)[keyof typeof ImageBuilderState];
|
|
1873
|
+
/**
|
|
1874
|
+
* @public
|
|
1875
|
+
* @enum
|
|
1876
|
+
*/
|
|
1877
|
+
export declare const ImageBuilderStateChangeReasonCode: {
|
|
1878
|
+
readonly IMAGE_UNAVAILABLE: "IMAGE_UNAVAILABLE";
|
|
1879
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
1880
|
+
};
|
|
1881
|
+
/**
|
|
1882
|
+
* @public
|
|
1883
|
+
*/
|
|
1884
|
+
export type ImageBuilderStateChangeReasonCode = (typeof ImageBuilderStateChangeReasonCode)[keyof typeof ImageBuilderStateChangeReasonCode];
|
|
1815
1885
|
/**
|
|
1816
1886
|
* @public
|
|
1817
1887
|
* <p>Describes the reason why the last image builder state change occurred.</p>
|
|
@@ -2044,12 +2114,17 @@ export interface CreateImageBuilderStreamingURLResult {
|
|
|
2044
2114
|
}
|
|
2045
2115
|
/**
|
|
2046
2116
|
* @public
|
|
2117
|
+
* @enum
|
|
2047
2118
|
*/
|
|
2048
|
-
export declare
|
|
2049
|
-
GOOGLE_DRIVE
|
|
2050
|
-
HOMEFOLDERS
|
|
2051
|
-
ONE_DRIVE
|
|
2052
|
-
}
|
|
2119
|
+
export declare const StorageConnectorType: {
|
|
2120
|
+
readonly GOOGLE_DRIVE: "GOOGLE_DRIVE";
|
|
2121
|
+
readonly HOMEFOLDERS: "HOMEFOLDERS";
|
|
2122
|
+
readonly ONE_DRIVE: "ONE_DRIVE";
|
|
2123
|
+
};
|
|
2124
|
+
/**
|
|
2125
|
+
* @public
|
|
2126
|
+
*/
|
|
2127
|
+
export type StorageConnectorType = (typeof StorageConnectorType)[keyof typeof StorageConnectorType];
|
|
2053
2128
|
/**
|
|
2054
2129
|
* @public
|
|
2055
2130
|
* <p>Describes a connector that enables persistent storage for users.</p>
|
|
@@ -2070,11 +2145,16 @@ export interface StorageConnector {
|
|
|
2070
2145
|
}
|
|
2071
2146
|
/**
|
|
2072
2147
|
* @public
|
|
2148
|
+
* @enum
|
|
2073
2149
|
*/
|
|
2074
|
-
export declare
|
|
2075
|
-
TCP
|
|
2076
|
-
UDP
|
|
2077
|
-
}
|
|
2150
|
+
export declare const PreferredProtocol: {
|
|
2151
|
+
readonly TCP: "TCP";
|
|
2152
|
+
readonly UDP: "UDP";
|
|
2153
|
+
};
|
|
2154
|
+
/**
|
|
2155
|
+
* @public
|
|
2156
|
+
*/
|
|
2157
|
+
export type PreferredProtocol = (typeof PreferredProtocol)[keyof typeof PreferredProtocol];
|
|
2078
2158
|
/**
|
|
2079
2159
|
* @public
|
|
2080
2160
|
* <p>The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.</p>
|
|
@@ -2087,11 +2167,16 @@ export interface StreamingExperienceSettings {
|
|
|
2087
2167
|
}
|
|
2088
2168
|
/**
|
|
2089
2169
|
* @public
|
|
2170
|
+
* @enum
|
|
2090
2171
|
*/
|
|
2091
|
-
export declare
|
|
2092
|
-
DISABLED
|
|
2093
|
-
ENABLED
|
|
2094
|
-
}
|
|
2172
|
+
export declare const Permission: {
|
|
2173
|
+
readonly DISABLED: "DISABLED";
|
|
2174
|
+
readonly ENABLED: "ENABLED";
|
|
2175
|
+
};
|
|
2176
|
+
/**
|
|
2177
|
+
* @public
|
|
2178
|
+
*/
|
|
2179
|
+
export type Permission = (typeof Permission)[keyof typeof Permission];
|
|
2095
2180
|
/**
|
|
2096
2181
|
* @public
|
|
2097
2182
|
* <p>Describes an action and whether the action is enabled or disabled for users during their streaming sessions.</p>
|
|
@@ -2165,11 +2250,16 @@ export interface CreateStackRequest {
|
|
|
2165
2250
|
}
|
|
2166
2251
|
/**
|
|
2167
2252
|
* @public
|
|
2253
|
+
* @enum
|
|
2168
2254
|
*/
|
|
2169
|
-
export declare
|
|
2170
|
-
INTERNAL_SERVICE_ERROR
|
|
2171
|
-
STORAGE_CONNECTOR_ERROR
|
|
2172
|
-
}
|
|
2255
|
+
export declare const StackErrorCode: {
|
|
2256
|
+
readonly INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR";
|
|
2257
|
+
readonly STORAGE_CONNECTOR_ERROR: "STORAGE_CONNECTOR_ERROR";
|
|
2258
|
+
};
|
|
2259
|
+
/**
|
|
2260
|
+
* @public
|
|
2261
|
+
*/
|
|
2262
|
+
export type StackErrorCode = (typeof StackErrorCode)[keyof typeof StackErrorCode];
|
|
2173
2263
|
/**
|
|
2174
2264
|
* @public
|
|
2175
2265
|
* <p>Describes a stack error.</p>
|
|
@@ -2348,24 +2438,34 @@ export interface ImagePermissions {
|
|
|
2348
2438
|
}
|
|
2349
2439
|
/**
|
|
2350
2440
|
* @public
|
|
2441
|
+
* @enum
|
|
2351
2442
|
*/
|
|
2352
|
-
export declare
|
|
2353
|
-
AVAILABLE
|
|
2354
|
-
COPYING
|
|
2355
|
-
CREATING
|
|
2356
|
-
DELETING
|
|
2357
|
-
FAILED
|
|
2358
|
-
IMPORTING
|
|
2359
|
-
PENDING
|
|
2360
|
-
}
|
|
2443
|
+
export declare const ImageState: {
|
|
2444
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
2445
|
+
readonly COPYING: "COPYING";
|
|
2446
|
+
readonly CREATING: "CREATING";
|
|
2447
|
+
readonly DELETING: "DELETING";
|
|
2448
|
+
readonly FAILED: "FAILED";
|
|
2449
|
+
readonly IMPORTING: "IMPORTING";
|
|
2450
|
+
readonly PENDING: "PENDING";
|
|
2451
|
+
};
|
|
2361
2452
|
/**
|
|
2362
2453
|
* @public
|
|
2363
2454
|
*/
|
|
2364
|
-
export
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2455
|
+
export type ImageState = (typeof ImageState)[keyof typeof ImageState];
|
|
2456
|
+
/**
|
|
2457
|
+
* @public
|
|
2458
|
+
* @enum
|
|
2459
|
+
*/
|
|
2460
|
+
export declare const ImageStateChangeReasonCode: {
|
|
2461
|
+
readonly IMAGE_BUILDER_NOT_AVAILABLE: "IMAGE_BUILDER_NOT_AVAILABLE";
|
|
2462
|
+
readonly IMAGE_COPY_FAILURE: "IMAGE_COPY_FAILURE";
|
|
2463
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
2464
|
+
};
|
|
2465
|
+
/**
|
|
2466
|
+
* @public
|
|
2467
|
+
*/
|
|
2468
|
+
export type ImageStateChangeReasonCode = (typeof ImageStateChangeReasonCode)[keyof typeof ImageStateChangeReasonCode];
|
|
2369
2469
|
/**
|
|
2370
2470
|
* @public
|
|
2371
2471
|
* <p>Describes the reason why the last image state change occurred.</p>
|
|
@@ -2382,12 +2482,17 @@ export interface ImageStateChangeReason {
|
|
|
2382
2482
|
}
|
|
2383
2483
|
/**
|
|
2384
2484
|
* @public
|
|
2485
|
+
* @enum
|
|
2385
2486
|
*/
|
|
2386
|
-
export declare
|
|
2387
|
-
PRIVATE
|
|
2388
|
-
PUBLIC
|
|
2389
|
-
SHARED
|
|
2390
|
-
}
|
|
2487
|
+
export declare const VisibilityType: {
|
|
2488
|
+
readonly PRIVATE: "PRIVATE";
|
|
2489
|
+
readonly PUBLIC: "PUBLIC";
|
|
2490
|
+
readonly SHARED: "SHARED";
|
|
2491
|
+
};
|
|
2492
|
+
/**
|
|
2493
|
+
* @public
|
|
2494
|
+
*/
|
|
2495
|
+
export type VisibilityType = (typeof VisibilityType)[keyof typeof VisibilityType];
|
|
2391
2496
|
/**
|
|
2392
2497
|
* @public
|
|
2393
2498
|
* <p>Describes an image.</p>
|
|
@@ -2484,10 +2589,15 @@ export interface CreateUsageReportSubscriptionRequest {
|
|
|
2484
2589
|
}
|
|
2485
2590
|
/**
|
|
2486
2591
|
* @public
|
|
2592
|
+
* @enum
|
|
2487
2593
|
*/
|
|
2488
|
-
export declare
|
|
2489
|
-
DAILY
|
|
2490
|
-
}
|
|
2594
|
+
export declare const UsageReportSchedule: {
|
|
2595
|
+
readonly DAILY: "DAILY";
|
|
2596
|
+
};
|
|
2597
|
+
/**
|
|
2598
|
+
* @public
|
|
2599
|
+
*/
|
|
2600
|
+
export type UsageReportSchedule = (typeof UsageReportSchedule)[keyof typeof UsageReportSchedule];
|
|
2491
2601
|
/**
|
|
2492
2602
|
* @public
|
|
2493
2603
|
*/
|
|
@@ -2508,11 +2618,16 @@ export interface CreateUsageReportSubscriptionResult {
|
|
|
2508
2618
|
}
|
|
2509
2619
|
/**
|
|
2510
2620
|
* @public
|
|
2621
|
+
* @enum
|
|
2511
2622
|
*/
|
|
2512
|
-
export declare
|
|
2513
|
-
RESEND
|
|
2514
|
-
SUPPRESS
|
|
2515
|
-
}
|
|
2623
|
+
export declare const MessageAction: {
|
|
2624
|
+
readonly RESEND: "RESEND";
|
|
2625
|
+
readonly SUPPRESS: "SUPPRESS";
|
|
2626
|
+
};
|
|
2627
|
+
/**
|
|
2628
|
+
* @public
|
|
2629
|
+
*/
|
|
2630
|
+
export type MessageAction = (typeof MessageAction)[keyof typeof MessageAction];
|
|
2516
2631
|
/**
|
|
2517
2632
|
* @public
|
|
2518
2633
|
*/
|
|
@@ -3082,19 +3197,29 @@ export interface DescribeSessionsRequest {
|
|
|
3082
3197
|
}
|
|
3083
3198
|
/**
|
|
3084
3199
|
* @public
|
|
3200
|
+
* @enum
|
|
3085
3201
|
*/
|
|
3086
|
-
export declare
|
|
3087
|
-
CONNECTED
|
|
3088
|
-
NOT_CONNECTED
|
|
3089
|
-
}
|
|
3202
|
+
export declare const SessionConnectionState: {
|
|
3203
|
+
readonly CONNECTED: "CONNECTED";
|
|
3204
|
+
readonly NOT_CONNECTED: "NOT_CONNECTED";
|
|
3205
|
+
};
|
|
3090
3206
|
/**
|
|
3091
3207
|
* @public
|
|
3092
3208
|
*/
|
|
3093
|
-
export
|
|
3094
|
-
|
|
3095
|
-
|
|
3096
|
-
|
|
3097
|
-
|
|
3209
|
+
export type SessionConnectionState = (typeof SessionConnectionState)[keyof typeof SessionConnectionState];
|
|
3210
|
+
/**
|
|
3211
|
+
* @public
|
|
3212
|
+
* @enum
|
|
3213
|
+
*/
|
|
3214
|
+
export declare const SessionState: {
|
|
3215
|
+
readonly ACTIVE: "ACTIVE";
|
|
3216
|
+
readonly EXPIRED: "EXPIRED";
|
|
3217
|
+
readonly PENDING: "PENDING";
|
|
3218
|
+
};
|
|
3219
|
+
/**
|
|
3220
|
+
* @public
|
|
3221
|
+
*/
|
|
3222
|
+
export type SessionState = (typeof SessionState)[keyof typeof SessionState];
|
|
3098
3223
|
/**
|
|
3099
3224
|
* @public
|
|
3100
3225
|
* <p>Describes a streaming session.</p>
|
|
@@ -3196,12 +3321,17 @@ export interface DescribeUsageReportSubscriptionsRequest {
|
|
|
3196
3321
|
}
|
|
3197
3322
|
/**
|
|
3198
3323
|
* @public
|
|
3324
|
+
* @enum
|
|
3199
3325
|
*/
|
|
3200
|
-
export declare
|
|
3201
|
-
ACCESS_DENIED
|
|
3202
|
-
INTERNAL_SERVICE_ERROR
|
|
3203
|
-
RESOURCE_NOT_FOUND
|
|
3204
|
-
}
|
|
3326
|
+
export declare const UsageReportExecutionErrorCode: {
|
|
3327
|
+
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
3328
|
+
readonly INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR";
|
|
3329
|
+
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
3330
|
+
};
|
|
3331
|
+
/**
|
|
3332
|
+
* @public
|
|
3333
|
+
*/
|
|
3334
|
+
export type UsageReportExecutionErrorCode = (typeof UsageReportExecutionErrorCode)[keyof typeof UsageReportExecutionErrorCode];
|
|
3205
3335
|
/**
|
|
3206
3336
|
* @public
|
|
3207
3337
|
* <p>Describes the error that is returned when a usage report can't be generated.</p>
|
|
@@ -3511,15 +3641,20 @@ export interface ExpireSessionResult {
|
|
|
3511
3641
|
}
|
|
3512
3642
|
/**
|
|
3513
3643
|
* @public
|
|
3644
|
+
* @enum
|
|
3514
3645
|
*/
|
|
3515
|
-
export declare
|
|
3516
|
-
DOMAIN_JOIN_INFO
|
|
3517
|
-
IAM_ROLE_ARN
|
|
3518
|
-
SESSION_SCRIPT_S3_LOCATION
|
|
3519
|
-
USB_DEVICE_FILTER_STRINGS
|
|
3520
|
-
VPC_CONFIGURATION
|
|
3521
|
-
VPC_CONFIGURATION_SECURITY_GROUP_IDS
|
|
3522
|
-
}
|
|
3646
|
+
export declare const FleetAttribute: {
|
|
3647
|
+
readonly DOMAIN_JOIN_INFO: "DOMAIN_JOIN_INFO";
|
|
3648
|
+
readonly IAM_ROLE_ARN: "IAM_ROLE_ARN";
|
|
3649
|
+
readonly SESSION_SCRIPT_S3_LOCATION: "SESSION_SCRIPT_S3_LOCATION";
|
|
3650
|
+
readonly USB_DEVICE_FILTER_STRINGS: "USB_DEVICE_FILTER_STRINGS";
|
|
3651
|
+
readonly VPC_CONFIGURATION: "VPC_CONFIGURATION";
|
|
3652
|
+
readonly VPC_CONFIGURATION_SECURITY_GROUP_IDS: "VPC_CONFIGURATION_SECURITY_GROUP_IDS";
|
|
3653
|
+
};
|
|
3654
|
+
/**
|
|
3655
|
+
* @public
|
|
3656
|
+
*/
|
|
3657
|
+
export type FleetAttribute = (typeof FleetAttribute)[keyof typeof FleetAttribute];
|
|
3523
3658
|
/**
|
|
3524
3659
|
* @public
|
|
3525
3660
|
*/
|
|
@@ -4117,21 +4252,26 @@ export interface UpdateImagePermissionsResult {
|
|
|
4117
4252
|
}
|
|
4118
4253
|
/**
|
|
4119
4254
|
* @public
|
|
4255
|
+
* @enum
|
|
4120
4256
|
*/
|
|
4121
|
-
export declare
|
|
4122
|
-
ACCESS_ENDPOINTS
|
|
4123
|
-
EMBED_HOST_DOMAINS
|
|
4124
|
-
FEEDBACK_URL
|
|
4125
|
-
IAM_ROLE_ARN
|
|
4126
|
-
REDIRECT_URL
|
|
4127
|
-
STORAGE_CONNECTORS
|
|
4128
|
-
STORAGE_CONNECTOR_GOOGLE_DRIVE
|
|
4129
|
-
STORAGE_CONNECTOR_HOMEFOLDERS
|
|
4130
|
-
STORAGE_CONNECTOR_ONE_DRIVE
|
|
4131
|
-
STREAMING_EXPERIENCE_SETTINGS
|
|
4132
|
-
THEME_NAME
|
|
4133
|
-
USER_SETTINGS
|
|
4134
|
-
}
|
|
4257
|
+
export declare const StackAttribute: {
|
|
4258
|
+
readonly ACCESS_ENDPOINTS: "ACCESS_ENDPOINTS";
|
|
4259
|
+
readonly EMBED_HOST_DOMAINS: "EMBED_HOST_DOMAINS";
|
|
4260
|
+
readonly FEEDBACK_URL: "FEEDBACK_URL";
|
|
4261
|
+
readonly IAM_ROLE_ARN: "IAM_ROLE_ARN";
|
|
4262
|
+
readonly REDIRECT_URL: "REDIRECT_URL";
|
|
4263
|
+
readonly STORAGE_CONNECTORS: "STORAGE_CONNECTORS";
|
|
4264
|
+
readonly STORAGE_CONNECTOR_GOOGLE_DRIVE: "STORAGE_CONNECTOR_GOOGLE_DRIVE";
|
|
4265
|
+
readonly STORAGE_CONNECTOR_HOMEFOLDERS: "STORAGE_CONNECTOR_HOMEFOLDERS";
|
|
4266
|
+
readonly STORAGE_CONNECTOR_ONE_DRIVE: "STORAGE_CONNECTOR_ONE_DRIVE";
|
|
4267
|
+
readonly STREAMING_EXPERIENCE_SETTINGS: "STREAMING_EXPERIENCE_SETTINGS";
|
|
4268
|
+
readonly THEME_NAME: "THEME_NAME";
|
|
4269
|
+
readonly USER_SETTINGS: "USER_SETTINGS";
|
|
4270
|
+
};
|
|
4271
|
+
/**
|
|
4272
|
+
* @public
|
|
4273
|
+
*/
|
|
4274
|
+
export type StackAttribute = (typeof StackAttribute)[keyof typeof StackAttribute];
|
|
4135
4275
|
/**
|
|
4136
4276
|
* @public
|
|
4137
4277
|
*/
|