@aws-sdk/client-appstream 3.301.0 → 3.306.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/models/models_0.d.ts +327 -187
- package/dist-types/ts3.4/models/models_0.d.ts +232 -186
- package/package.json +35 -35
|
@@ -1,21 +1,24 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { AppStreamServiceException as __BaseException } from "./AppStreamServiceException";
|
|
3
|
-
export declare
|
|
4
|
-
STREAMING
|
|
5
|
-
}
|
|
3
|
+
export declare const AccessEndpointType: {
|
|
4
|
+
readonly STREAMING: "STREAMING";
|
|
5
|
+
};
|
|
6
|
+
export type AccessEndpointType =
|
|
7
|
+
(typeof AccessEndpointType)[keyof typeof AccessEndpointType];
|
|
6
8
|
export interface AccessEndpoint {
|
|
7
9
|
EndpointType: AccessEndpointType | string | undefined;
|
|
8
10
|
VpceId?: string;
|
|
9
11
|
}
|
|
10
|
-
export declare
|
|
11
|
-
CLIPBOARD_COPY_FROM_LOCAL_DEVICE
|
|
12
|
-
CLIPBOARD_COPY_TO_LOCAL_DEVICE
|
|
13
|
-
DOMAIN_PASSWORD_SIGNIN
|
|
14
|
-
DOMAIN_SMART_CARD_SIGNIN
|
|
15
|
-
FILE_DOWNLOAD
|
|
16
|
-
FILE_UPLOAD
|
|
17
|
-
PRINTING_TO_LOCAL_DEVICE
|
|
18
|
-
}
|
|
12
|
+
export declare const Action: {
|
|
13
|
+
readonly CLIPBOARD_COPY_FROM_LOCAL_DEVICE: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE";
|
|
14
|
+
readonly CLIPBOARD_COPY_TO_LOCAL_DEVICE: "CLIPBOARD_COPY_TO_LOCAL_DEVICE";
|
|
15
|
+
readonly DOMAIN_PASSWORD_SIGNIN: "DOMAIN_PASSWORD_SIGNIN";
|
|
16
|
+
readonly DOMAIN_SMART_CARD_SIGNIN: "DOMAIN_SMART_CARD_SIGNIN";
|
|
17
|
+
readonly FILE_DOWNLOAD: "FILE_DOWNLOAD";
|
|
18
|
+
readonly FILE_UPLOAD: "FILE_UPLOAD";
|
|
19
|
+
readonly PRINTING_TO_LOCAL_DEVICE: "PRINTING_TO_LOCAL_DEVICE";
|
|
20
|
+
};
|
|
21
|
+
export type Action = (typeof Action)[keyof typeof Action];
|
|
19
22
|
export interface S3Location {
|
|
20
23
|
S3Bucket: string | undefined;
|
|
21
24
|
S3Key: string | undefined;
|
|
@@ -35,12 +38,13 @@ export interface AppBlock {
|
|
|
35
38
|
SetupScriptDetails: ScriptDetails | undefined;
|
|
36
39
|
CreatedTime?: Date;
|
|
37
40
|
}
|
|
38
|
-
export declare
|
|
39
|
-
AMAZON_LINUX2
|
|
40
|
-
WINDOWS
|
|
41
|
-
WINDOWS_SERVER_2016
|
|
42
|
-
WINDOWS_SERVER_2019
|
|
43
|
-
}
|
|
41
|
+
export declare const PlatformType: {
|
|
42
|
+
readonly AMAZON_LINUX2: "AMAZON_LINUX2";
|
|
43
|
+
readonly WINDOWS: "WINDOWS";
|
|
44
|
+
readonly WINDOWS_SERVER_2016: "WINDOWS_SERVER_2016";
|
|
45
|
+
readonly WINDOWS_SERVER_2019: "WINDOWS_SERVER_2019";
|
|
46
|
+
};
|
|
47
|
+
export type PlatformType = (typeof PlatformType)[keyof typeof PlatformType];
|
|
44
48
|
export interface Application {
|
|
45
49
|
Name?: string;
|
|
46
50
|
DisplayName?: string;
|
|
@@ -58,10 +62,12 @@ export interface Application {
|
|
|
58
62
|
InstanceFamilies?: string[];
|
|
59
63
|
CreatedTime?: Date;
|
|
60
64
|
}
|
|
61
|
-
export declare
|
|
62
|
-
LAUNCH_PARAMETERS
|
|
63
|
-
WORKING_DIRECTORY
|
|
64
|
-
}
|
|
65
|
+
export declare const ApplicationAttribute: {
|
|
66
|
+
readonly LAUNCH_PARAMETERS: "LAUNCH_PARAMETERS";
|
|
67
|
+
readonly WORKING_DIRECTORY: "WORKING_DIRECTORY";
|
|
68
|
+
};
|
|
69
|
+
export type ApplicationAttribute =
|
|
70
|
+
(typeof ApplicationAttribute)[keyof typeof ApplicationAttribute];
|
|
65
71
|
export interface ApplicationFleetAssociation {
|
|
66
72
|
FleetName: string | undefined;
|
|
67
73
|
ApplicationArn: string | undefined;
|
|
@@ -75,10 +81,11 @@ export interface ApplicationSettingsResponse {
|
|
|
75
81
|
SettingsGroup?: string;
|
|
76
82
|
S3BucketName?: string;
|
|
77
83
|
}
|
|
78
|
-
export declare
|
|
79
|
-
ALL
|
|
80
|
-
ASSOCIATED
|
|
81
|
-
}
|
|
84
|
+
export declare const AppVisibility: {
|
|
85
|
+
readonly ALL: "ALL";
|
|
86
|
+
readonly ASSOCIATED: "ASSOCIATED";
|
|
87
|
+
};
|
|
88
|
+
export type AppVisibility = (typeof AppVisibility)[keyof typeof AppVisibility];
|
|
82
89
|
export interface AssociateApplicationFleetRequest {
|
|
83
90
|
FleetName: string | undefined;
|
|
84
91
|
ApplicationArn: string | undefined;
|
|
@@ -167,12 +174,14 @@ export declare class InvalidAccountStatusException extends __BaseException {
|
|
|
167
174
|
opts: __ExceptionOptionType<InvalidAccountStatusException, __BaseException>
|
|
168
175
|
);
|
|
169
176
|
}
|
|
170
|
-
export declare
|
|
171
|
-
API
|
|
172
|
-
AWS_AD
|
|
173
|
-
SAML
|
|
174
|
-
USERPOOL
|
|
175
|
-
}
|
|
177
|
+
export declare const AuthenticationType: {
|
|
178
|
+
readonly API: "API";
|
|
179
|
+
readonly AWS_AD: "AWS_AD";
|
|
180
|
+
readonly SAML: "SAML";
|
|
181
|
+
readonly USERPOOL: "USERPOOL";
|
|
182
|
+
};
|
|
183
|
+
export type AuthenticationType =
|
|
184
|
+
(typeof AuthenticationType)[keyof typeof AuthenticationType];
|
|
176
185
|
export interface UserStackAssociation {
|
|
177
186
|
StackName: string | undefined;
|
|
178
187
|
UserName: string | undefined;
|
|
@@ -182,12 +191,14 @@ export interface UserStackAssociation {
|
|
|
182
191
|
export interface BatchAssociateUserStackRequest {
|
|
183
192
|
UserStackAssociations: UserStackAssociation[] | undefined;
|
|
184
193
|
}
|
|
185
|
-
export declare
|
|
186
|
-
DIRECTORY_NOT_FOUND
|
|
187
|
-
INTERNAL_ERROR
|
|
188
|
-
STACK_NOT_FOUND
|
|
189
|
-
USER_NAME_NOT_FOUND
|
|
190
|
-
}
|
|
194
|
+
export declare const UserStackAssociationErrorCode: {
|
|
195
|
+
readonly DIRECTORY_NOT_FOUND: "DIRECTORY_NOT_FOUND";
|
|
196
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
197
|
+
readonly STACK_NOT_FOUND: "STACK_NOT_FOUND";
|
|
198
|
+
readonly USER_NAME_NOT_FOUND: "USER_NAME_NOT_FOUND";
|
|
199
|
+
};
|
|
200
|
+
export type UserStackAssociationErrorCode =
|
|
201
|
+
(typeof UserStackAssociationErrorCode)[keyof typeof UserStackAssociationErrorCode];
|
|
191
202
|
export interface UserStackAssociationError {
|
|
192
203
|
UserStackAssociation?: UserStackAssociation;
|
|
193
204
|
ErrorCode?: UserStackAssociationErrorCode | string;
|
|
@@ -202,11 +213,13 @@ export interface BatchDisassociateUserStackRequest {
|
|
|
202
213
|
export interface BatchDisassociateUserStackResult {
|
|
203
214
|
errors?: UserStackAssociationError[];
|
|
204
215
|
}
|
|
205
|
-
export declare
|
|
206
|
-
DISABLED
|
|
207
|
-
ENABLED
|
|
208
|
-
ENABLED_NO_DIRECTORY_LOGIN_FALLBACK
|
|
209
|
-
}
|
|
216
|
+
export declare const CertificateBasedAuthStatus: {
|
|
217
|
+
readonly DISABLED: "DISABLED";
|
|
218
|
+
readonly ENABLED: "ENABLED";
|
|
219
|
+
readonly ENABLED_NO_DIRECTORY_LOGIN_FALLBACK: "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK";
|
|
220
|
+
};
|
|
221
|
+
export type CertificateBasedAuthStatus =
|
|
222
|
+
(typeof CertificateBasedAuthStatus)[keyof typeof CertificateBasedAuthStatus];
|
|
210
223
|
export interface CertificateBasedAuthProperties {
|
|
211
224
|
Status?: CertificateBasedAuthStatus | string;
|
|
212
225
|
CertificateAuthorityArn?: string;
|
|
@@ -338,15 +351,17 @@ export interface DomainJoinInfo {
|
|
|
338
351
|
DirectoryName?: string;
|
|
339
352
|
OrganizationalUnitDistinguishedName?: string;
|
|
340
353
|
}
|
|
341
|
-
export declare
|
|
342
|
-
ALWAYS_ON
|
|
343
|
-
ELASTIC
|
|
344
|
-
ON_DEMAND
|
|
345
|
-
}
|
|
346
|
-
export
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
354
|
+
export declare const FleetType: {
|
|
355
|
+
readonly ALWAYS_ON: "ALWAYS_ON";
|
|
356
|
+
readonly ELASTIC: "ELASTIC";
|
|
357
|
+
readonly ON_DEMAND: "ON_DEMAND";
|
|
358
|
+
};
|
|
359
|
+
export type FleetType = (typeof FleetType)[keyof typeof FleetType];
|
|
360
|
+
export declare const StreamView: {
|
|
361
|
+
readonly APP: "APP";
|
|
362
|
+
readonly DESKTOP: "DESKTOP";
|
|
363
|
+
};
|
|
364
|
+
export type StreamView = (typeof StreamView)[keyof typeof StreamView];
|
|
350
365
|
export interface VpcConfig {
|
|
351
366
|
SubnetIds?: string[];
|
|
352
367
|
SecurityGroupIds?: string[];
|
|
@@ -374,48 +389,51 @@ export interface CreateFleetRequest {
|
|
|
374
389
|
UsbDeviceFilterStrings?: string[];
|
|
375
390
|
SessionScriptS3Location?: S3Location;
|
|
376
391
|
}
|
|
377
|
-
export declare
|
|
378
|
-
DOMAIN_JOIN_ERROR_ACCESS_DENIED
|
|
379
|
-
DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED
|
|
380
|
-
DOMAIN_JOIN_ERROR_FILE_NOT_FOUND
|
|
381
|
-
DOMAIN_JOIN_ERROR_INVALID_PARAMETER
|
|
382
|
-
DOMAIN_JOIN_ERROR_LOGON_FAILURE
|
|
383
|
-
DOMAIN_JOIN_ERROR_MORE_DATA
|
|
384
|
-
DOMAIN_JOIN_ERROR_NOT_SUPPORTED
|
|
385
|
-
DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN
|
|
386
|
-
DOMAIN_JOIN_INTERNAL_SERVICE_ERROR
|
|
387
|
-
DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME
|
|
388
|
-
DOMAIN_JOIN_NERR_PASSWORD_EXPIRED
|
|
389
|
-
DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED
|
|
390
|
-
FLEET_INSTANCE_PROVISIONING_FAILURE
|
|
391
|
-
FLEET_STOPPED
|
|
392
|
-
IAM_SERVICE_ROLE_IS_MISSING
|
|
393
|
-
IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION
|
|
394
|
-
IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION
|
|
395
|
-
IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION
|
|
396
|
-
IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION
|
|
397
|
-
IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION
|
|
398
|
-
IGW_NOT_ATTACHED
|
|
399
|
-
IMAGE_NOT_FOUND
|
|
400
|
-
INTERNAL_SERVICE_ERROR
|
|
401
|
-
INVALID_SUBNET_CONFIGURATION
|
|
402
|
-
MACHINE_ROLE_IS_MISSING
|
|
403
|
-
NETWORK_INTERFACE_LIMIT_EXCEEDED
|
|
404
|
-
SECURITY_GROUPS_NOT_FOUND
|
|
405
|
-
STS_DISABLED_IN_REGION
|
|
406
|
-
SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES
|
|
407
|
-
SUBNET_NOT_FOUND
|
|
408
|
-
}
|
|
392
|
+
export declare const FleetErrorCode: {
|
|
393
|
+
readonly DOMAIN_JOIN_ERROR_ACCESS_DENIED: "DOMAIN_JOIN_ERROR_ACCESS_DENIED";
|
|
394
|
+
readonly DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED: "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED";
|
|
395
|
+
readonly DOMAIN_JOIN_ERROR_FILE_NOT_FOUND: "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND";
|
|
396
|
+
readonly DOMAIN_JOIN_ERROR_INVALID_PARAMETER: "DOMAIN_JOIN_ERROR_INVALID_PARAMETER";
|
|
397
|
+
readonly DOMAIN_JOIN_ERROR_LOGON_FAILURE: "DOMAIN_JOIN_ERROR_LOGON_FAILURE";
|
|
398
|
+
readonly DOMAIN_JOIN_ERROR_MORE_DATA: "DOMAIN_JOIN_ERROR_MORE_DATA";
|
|
399
|
+
readonly DOMAIN_JOIN_ERROR_NOT_SUPPORTED: "DOMAIN_JOIN_ERROR_NOT_SUPPORTED";
|
|
400
|
+
readonly DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN: "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN";
|
|
401
|
+
readonly DOMAIN_JOIN_INTERNAL_SERVICE_ERROR: "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR";
|
|
402
|
+
readonly DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME: "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME";
|
|
403
|
+
readonly DOMAIN_JOIN_NERR_PASSWORD_EXPIRED: "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED";
|
|
404
|
+
readonly DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED: "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED";
|
|
405
|
+
readonly FLEET_INSTANCE_PROVISIONING_FAILURE: "FLEET_INSTANCE_PROVISIONING_FAILURE";
|
|
406
|
+
readonly FLEET_STOPPED: "FLEET_STOPPED";
|
|
407
|
+
readonly IAM_SERVICE_ROLE_IS_MISSING: "IAM_SERVICE_ROLE_IS_MISSING";
|
|
408
|
+
readonly IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION: "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION";
|
|
409
|
+
readonly IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION: "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION";
|
|
410
|
+
readonly IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION: "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION";
|
|
411
|
+
readonly IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION: "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION";
|
|
412
|
+
readonly IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION";
|
|
413
|
+
readonly IGW_NOT_ATTACHED: "IGW_NOT_ATTACHED";
|
|
414
|
+
readonly IMAGE_NOT_FOUND: "IMAGE_NOT_FOUND";
|
|
415
|
+
readonly INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR";
|
|
416
|
+
readonly INVALID_SUBNET_CONFIGURATION: "INVALID_SUBNET_CONFIGURATION";
|
|
417
|
+
readonly MACHINE_ROLE_IS_MISSING: "MACHINE_ROLE_IS_MISSING";
|
|
418
|
+
readonly NETWORK_INTERFACE_LIMIT_EXCEEDED: "NETWORK_INTERFACE_LIMIT_EXCEEDED";
|
|
419
|
+
readonly SECURITY_GROUPS_NOT_FOUND: "SECURITY_GROUPS_NOT_FOUND";
|
|
420
|
+
readonly STS_DISABLED_IN_REGION: "STS_DISABLED_IN_REGION";
|
|
421
|
+
readonly SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES: "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES";
|
|
422
|
+
readonly SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND";
|
|
423
|
+
};
|
|
424
|
+
export type FleetErrorCode =
|
|
425
|
+
(typeof FleetErrorCode)[keyof typeof FleetErrorCode];
|
|
409
426
|
export interface FleetError {
|
|
410
427
|
ErrorCode?: FleetErrorCode | string;
|
|
411
428
|
ErrorMessage?: string;
|
|
412
429
|
}
|
|
413
|
-
export declare
|
|
414
|
-
RUNNING
|
|
415
|
-
STARTING
|
|
416
|
-
STOPPED
|
|
417
|
-
STOPPING
|
|
418
|
-
}
|
|
430
|
+
export declare const FleetState: {
|
|
431
|
+
readonly RUNNING: "RUNNING";
|
|
432
|
+
readonly STARTING: "STARTING";
|
|
433
|
+
readonly STOPPED: "STOPPED";
|
|
434
|
+
readonly STOPPING: "STOPPING";
|
|
435
|
+
};
|
|
436
|
+
export type FleetState = (typeof FleetState)[keyof typeof FleetState];
|
|
419
437
|
export interface Fleet {
|
|
420
438
|
Arn: string | undefined;
|
|
421
439
|
Name: string | undefined;
|
|
@@ -477,23 +495,27 @@ export interface NetworkAccessConfiguration {
|
|
|
477
495
|
EniPrivateIpAddress?: string;
|
|
478
496
|
EniId?: string;
|
|
479
497
|
}
|
|
480
|
-
export declare
|
|
481
|
-
DELETING
|
|
482
|
-
FAILED
|
|
483
|
-
PENDING
|
|
484
|
-
PENDING_QUALIFICATION
|
|
485
|
-
REBOOTING
|
|
486
|
-
RUNNING
|
|
487
|
-
SNAPSHOTTING
|
|
488
|
-
STOPPED
|
|
489
|
-
STOPPING
|
|
490
|
-
UPDATING
|
|
491
|
-
UPDATING_AGENT
|
|
492
|
-
}
|
|
493
|
-
export
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
498
|
+
export declare const ImageBuilderState: {
|
|
499
|
+
readonly DELETING: "DELETING";
|
|
500
|
+
readonly FAILED: "FAILED";
|
|
501
|
+
readonly PENDING: "PENDING";
|
|
502
|
+
readonly PENDING_QUALIFICATION: "PENDING_QUALIFICATION";
|
|
503
|
+
readonly REBOOTING: "REBOOTING";
|
|
504
|
+
readonly RUNNING: "RUNNING";
|
|
505
|
+
readonly SNAPSHOTTING: "SNAPSHOTTING";
|
|
506
|
+
readonly STOPPED: "STOPPED";
|
|
507
|
+
readonly STOPPING: "STOPPING";
|
|
508
|
+
readonly UPDATING: "UPDATING";
|
|
509
|
+
readonly UPDATING_AGENT: "UPDATING_AGENT";
|
|
510
|
+
};
|
|
511
|
+
export type ImageBuilderState =
|
|
512
|
+
(typeof ImageBuilderState)[keyof typeof ImageBuilderState];
|
|
513
|
+
export declare const ImageBuilderStateChangeReasonCode: {
|
|
514
|
+
readonly IMAGE_UNAVAILABLE: "IMAGE_UNAVAILABLE";
|
|
515
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
516
|
+
};
|
|
517
|
+
export type ImageBuilderStateChangeReasonCode =
|
|
518
|
+
(typeof ImageBuilderStateChangeReasonCode)[keyof typeof ImageBuilderStateChangeReasonCode];
|
|
497
519
|
export interface ImageBuilderStateChangeReason {
|
|
498
520
|
Code?: ImageBuilderStateChangeReasonCode | string;
|
|
499
521
|
Message?: string;
|
|
@@ -529,27 +551,32 @@ export interface CreateImageBuilderStreamingURLResult {
|
|
|
529
551
|
StreamingURL?: string;
|
|
530
552
|
Expires?: Date;
|
|
531
553
|
}
|
|
532
|
-
export declare
|
|
533
|
-
GOOGLE_DRIVE
|
|
534
|
-
HOMEFOLDERS
|
|
535
|
-
ONE_DRIVE
|
|
536
|
-
}
|
|
554
|
+
export declare const StorageConnectorType: {
|
|
555
|
+
readonly GOOGLE_DRIVE: "GOOGLE_DRIVE";
|
|
556
|
+
readonly HOMEFOLDERS: "HOMEFOLDERS";
|
|
557
|
+
readonly ONE_DRIVE: "ONE_DRIVE";
|
|
558
|
+
};
|
|
559
|
+
export type StorageConnectorType =
|
|
560
|
+
(typeof StorageConnectorType)[keyof typeof StorageConnectorType];
|
|
537
561
|
export interface StorageConnector {
|
|
538
562
|
ConnectorType: StorageConnectorType | string | undefined;
|
|
539
563
|
ResourceIdentifier?: string;
|
|
540
564
|
Domains?: string[];
|
|
541
565
|
}
|
|
542
|
-
export declare
|
|
543
|
-
TCP
|
|
544
|
-
UDP
|
|
545
|
-
}
|
|
566
|
+
export declare const PreferredProtocol: {
|
|
567
|
+
readonly TCP: "TCP";
|
|
568
|
+
readonly UDP: "UDP";
|
|
569
|
+
};
|
|
570
|
+
export type PreferredProtocol =
|
|
571
|
+
(typeof PreferredProtocol)[keyof typeof PreferredProtocol];
|
|
546
572
|
export interface StreamingExperienceSettings {
|
|
547
573
|
PreferredProtocol?: PreferredProtocol | string;
|
|
548
574
|
}
|
|
549
|
-
export declare
|
|
550
|
-
DISABLED
|
|
551
|
-
ENABLED
|
|
552
|
-
}
|
|
575
|
+
export declare const Permission: {
|
|
576
|
+
readonly DISABLED: "DISABLED";
|
|
577
|
+
readonly ENABLED: "ENABLED";
|
|
578
|
+
};
|
|
579
|
+
export type Permission = (typeof Permission)[keyof typeof Permission];
|
|
553
580
|
export interface UserSetting {
|
|
554
581
|
Action: Action | string | undefined;
|
|
555
582
|
Permission: Permission | string | undefined;
|
|
@@ -568,10 +595,12 @@ export interface CreateStackRequest {
|
|
|
568
595
|
EmbedHostDomains?: string[];
|
|
569
596
|
StreamingExperienceSettings?: StreamingExperienceSettings;
|
|
570
597
|
}
|
|
571
|
-
export declare
|
|
572
|
-
INTERNAL_SERVICE_ERROR
|
|
573
|
-
STORAGE_CONNECTOR_ERROR
|
|
574
|
-
}
|
|
598
|
+
export declare const StackErrorCode: {
|
|
599
|
+
readonly INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR";
|
|
600
|
+
readonly STORAGE_CONNECTOR_ERROR: "STORAGE_CONNECTOR_ERROR";
|
|
601
|
+
};
|
|
602
|
+
export type StackErrorCode =
|
|
603
|
+
(typeof StackErrorCode)[keyof typeof StackErrorCode];
|
|
575
604
|
export interface StackError {
|
|
576
605
|
ErrorCode?: StackErrorCode | string;
|
|
577
606
|
ErrorMessage?: string;
|
|
@@ -619,29 +648,34 @@ export interface ImagePermissions {
|
|
|
619
648
|
allowFleet?: boolean;
|
|
620
649
|
allowImageBuilder?: boolean;
|
|
621
650
|
}
|
|
622
|
-
export declare
|
|
623
|
-
AVAILABLE
|
|
624
|
-
COPYING
|
|
625
|
-
CREATING
|
|
626
|
-
DELETING
|
|
627
|
-
FAILED
|
|
628
|
-
IMPORTING
|
|
629
|
-
PENDING
|
|
630
|
-
}
|
|
631
|
-
export
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
651
|
+
export declare const ImageState: {
|
|
652
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
653
|
+
readonly COPYING: "COPYING";
|
|
654
|
+
readonly CREATING: "CREATING";
|
|
655
|
+
readonly DELETING: "DELETING";
|
|
656
|
+
readonly FAILED: "FAILED";
|
|
657
|
+
readonly IMPORTING: "IMPORTING";
|
|
658
|
+
readonly PENDING: "PENDING";
|
|
659
|
+
};
|
|
660
|
+
export type ImageState = (typeof ImageState)[keyof typeof ImageState];
|
|
661
|
+
export declare const ImageStateChangeReasonCode: {
|
|
662
|
+
readonly IMAGE_BUILDER_NOT_AVAILABLE: "IMAGE_BUILDER_NOT_AVAILABLE";
|
|
663
|
+
readonly IMAGE_COPY_FAILURE: "IMAGE_COPY_FAILURE";
|
|
664
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
665
|
+
};
|
|
666
|
+
export type ImageStateChangeReasonCode =
|
|
667
|
+
(typeof ImageStateChangeReasonCode)[keyof typeof ImageStateChangeReasonCode];
|
|
636
668
|
export interface ImageStateChangeReason {
|
|
637
669
|
Code?: ImageStateChangeReasonCode | string;
|
|
638
670
|
Message?: string;
|
|
639
671
|
}
|
|
640
|
-
export declare
|
|
641
|
-
PRIVATE
|
|
642
|
-
PUBLIC
|
|
643
|
-
SHARED
|
|
644
|
-
}
|
|
672
|
+
export declare const VisibilityType: {
|
|
673
|
+
readonly PRIVATE: "PRIVATE";
|
|
674
|
+
readonly PUBLIC: "PUBLIC";
|
|
675
|
+
readonly SHARED: "SHARED";
|
|
676
|
+
};
|
|
677
|
+
export type VisibilityType =
|
|
678
|
+
(typeof VisibilityType)[keyof typeof VisibilityType];
|
|
645
679
|
export interface Image {
|
|
646
680
|
Name: string | undefined;
|
|
647
681
|
Arn?: string;
|
|
@@ -666,17 +700,20 @@ export interface CreateUpdatedImageResult {
|
|
|
666
700
|
canUpdateImage?: boolean;
|
|
667
701
|
}
|
|
668
702
|
export interface CreateUsageReportSubscriptionRequest {}
|
|
669
|
-
export declare
|
|
670
|
-
DAILY
|
|
671
|
-
}
|
|
703
|
+
export declare const UsageReportSchedule: {
|
|
704
|
+
readonly DAILY: "DAILY";
|
|
705
|
+
};
|
|
706
|
+
export type UsageReportSchedule =
|
|
707
|
+
(typeof UsageReportSchedule)[keyof typeof UsageReportSchedule];
|
|
672
708
|
export interface CreateUsageReportSubscriptionResult {
|
|
673
709
|
S3BucketName?: string;
|
|
674
710
|
Schedule?: UsageReportSchedule | string;
|
|
675
711
|
}
|
|
676
|
-
export declare
|
|
677
|
-
RESEND
|
|
678
|
-
SUPPRESS
|
|
679
|
-
}
|
|
712
|
+
export declare const MessageAction: {
|
|
713
|
+
readonly RESEND: "RESEND";
|
|
714
|
+
readonly SUPPRESS: "SUPPRESS";
|
|
715
|
+
};
|
|
716
|
+
export type MessageAction = (typeof MessageAction)[keyof typeof MessageAction];
|
|
680
717
|
export interface CreateUserRequest {
|
|
681
718
|
UserName: string | undefined;
|
|
682
719
|
MessageAction?: MessageAction | string;
|
|
@@ -840,15 +877,18 @@ export interface DescribeSessionsRequest {
|
|
|
840
877
|
Limit?: number;
|
|
841
878
|
AuthenticationType?: AuthenticationType | string;
|
|
842
879
|
}
|
|
843
|
-
export declare
|
|
844
|
-
CONNECTED
|
|
845
|
-
NOT_CONNECTED
|
|
846
|
-
}
|
|
847
|
-
export
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
880
|
+
export declare const SessionConnectionState: {
|
|
881
|
+
readonly CONNECTED: "CONNECTED";
|
|
882
|
+
readonly NOT_CONNECTED: "NOT_CONNECTED";
|
|
883
|
+
};
|
|
884
|
+
export type SessionConnectionState =
|
|
885
|
+
(typeof SessionConnectionState)[keyof typeof SessionConnectionState];
|
|
886
|
+
export declare const SessionState: {
|
|
887
|
+
readonly ACTIVE: "ACTIVE";
|
|
888
|
+
readonly EXPIRED: "EXPIRED";
|
|
889
|
+
readonly PENDING: "PENDING";
|
|
890
|
+
};
|
|
891
|
+
export type SessionState = (typeof SessionState)[keyof typeof SessionState];
|
|
852
892
|
export interface Session {
|
|
853
893
|
Id: string | undefined;
|
|
854
894
|
UserId: string | undefined;
|
|
@@ -877,11 +917,13 @@ export interface DescribeUsageReportSubscriptionsRequest {
|
|
|
877
917
|
MaxResults?: number;
|
|
878
918
|
NextToken?: string;
|
|
879
919
|
}
|
|
880
|
-
export declare
|
|
881
|
-
ACCESS_DENIED
|
|
882
|
-
INTERNAL_SERVICE_ERROR
|
|
883
|
-
RESOURCE_NOT_FOUND
|
|
884
|
-
}
|
|
920
|
+
export declare const UsageReportExecutionErrorCode: {
|
|
921
|
+
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
922
|
+
readonly INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR";
|
|
923
|
+
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
924
|
+
};
|
|
925
|
+
export type UsageReportExecutionErrorCode =
|
|
926
|
+
(typeof UsageReportExecutionErrorCode)[keyof typeof UsageReportExecutionErrorCode];
|
|
885
927
|
export interface LastReportGenerationExecutionError {
|
|
886
928
|
ErrorCode?: UsageReportExecutionErrorCode | string;
|
|
887
929
|
ErrorMessage?: string;
|
|
@@ -959,14 +1001,16 @@ export interface ExpireSessionRequest {
|
|
|
959
1001
|
SessionId: string | undefined;
|
|
960
1002
|
}
|
|
961
1003
|
export interface ExpireSessionResult {}
|
|
962
|
-
export declare
|
|
963
|
-
DOMAIN_JOIN_INFO
|
|
964
|
-
IAM_ROLE_ARN
|
|
965
|
-
SESSION_SCRIPT_S3_LOCATION
|
|
966
|
-
USB_DEVICE_FILTER_STRINGS
|
|
967
|
-
VPC_CONFIGURATION
|
|
968
|
-
VPC_CONFIGURATION_SECURITY_GROUP_IDS
|
|
969
|
-
}
|
|
1004
|
+
export declare const FleetAttribute: {
|
|
1005
|
+
readonly DOMAIN_JOIN_INFO: "DOMAIN_JOIN_INFO";
|
|
1006
|
+
readonly IAM_ROLE_ARN: "IAM_ROLE_ARN";
|
|
1007
|
+
readonly SESSION_SCRIPT_S3_LOCATION: "SESSION_SCRIPT_S3_LOCATION";
|
|
1008
|
+
readonly USB_DEVICE_FILTER_STRINGS: "USB_DEVICE_FILTER_STRINGS";
|
|
1009
|
+
readonly VPC_CONFIGURATION: "VPC_CONFIGURATION";
|
|
1010
|
+
readonly VPC_CONFIGURATION_SECURITY_GROUP_IDS: "VPC_CONFIGURATION_SECURITY_GROUP_IDS";
|
|
1011
|
+
};
|
|
1012
|
+
export type FleetAttribute =
|
|
1013
|
+
(typeof FleetAttribute)[keyof typeof FleetAttribute];
|
|
970
1014
|
export interface ListAssociatedFleetsRequest {
|
|
971
1015
|
StackName: string | undefined;
|
|
972
1016
|
NextToken?: string;
|
|
@@ -1095,20 +1139,22 @@ export interface UpdateImagePermissionsRequest {
|
|
|
1095
1139
|
ImagePermissions: ImagePermissions | undefined;
|
|
1096
1140
|
}
|
|
1097
1141
|
export interface UpdateImagePermissionsResult {}
|
|
1098
|
-
export declare
|
|
1099
|
-
ACCESS_ENDPOINTS
|
|
1100
|
-
EMBED_HOST_DOMAINS
|
|
1101
|
-
FEEDBACK_URL
|
|
1102
|
-
IAM_ROLE_ARN
|
|
1103
|
-
REDIRECT_URL
|
|
1104
|
-
STORAGE_CONNECTORS
|
|
1105
|
-
STORAGE_CONNECTOR_GOOGLE_DRIVE
|
|
1106
|
-
STORAGE_CONNECTOR_HOMEFOLDERS
|
|
1107
|
-
STORAGE_CONNECTOR_ONE_DRIVE
|
|
1108
|
-
STREAMING_EXPERIENCE_SETTINGS
|
|
1109
|
-
THEME_NAME
|
|
1110
|
-
USER_SETTINGS
|
|
1111
|
-
}
|
|
1142
|
+
export declare const StackAttribute: {
|
|
1143
|
+
readonly ACCESS_ENDPOINTS: "ACCESS_ENDPOINTS";
|
|
1144
|
+
readonly EMBED_HOST_DOMAINS: "EMBED_HOST_DOMAINS";
|
|
1145
|
+
readonly FEEDBACK_URL: "FEEDBACK_URL";
|
|
1146
|
+
readonly IAM_ROLE_ARN: "IAM_ROLE_ARN";
|
|
1147
|
+
readonly REDIRECT_URL: "REDIRECT_URL";
|
|
1148
|
+
readonly STORAGE_CONNECTORS: "STORAGE_CONNECTORS";
|
|
1149
|
+
readonly STORAGE_CONNECTOR_GOOGLE_DRIVE: "STORAGE_CONNECTOR_GOOGLE_DRIVE";
|
|
1150
|
+
readonly STORAGE_CONNECTOR_HOMEFOLDERS: "STORAGE_CONNECTOR_HOMEFOLDERS";
|
|
1151
|
+
readonly STORAGE_CONNECTOR_ONE_DRIVE: "STORAGE_CONNECTOR_ONE_DRIVE";
|
|
1152
|
+
readonly STREAMING_EXPERIENCE_SETTINGS: "STREAMING_EXPERIENCE_SETTINGS";
|
|
1153
|
+
readonly THEME_NAME: "THEME_NAME";
|
|
1154
|
+
readonly USER_SETTINGS: "USER_SETTINGS";
|
|
1155
|
+
};
|
|
1156
|
+
export type StackAttribute =
|
|
1157
|
+
(typeof StackAttribute)[keyof typeof StackAttribute];
|
|
1112
1158
|
export interface UpdateStackRequest {
|
|
1113
1159
|
DisplayName?: string;
|
|
1114
1160
|
Description?: string;
|