@aws-sdk/client-appstream 3.934.0 → 3.936.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/index.js +272 -271
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +271 -0
- package/dist-es/models/errors.js +211 -0
- package/dist-es/models/models_0.js +1 -482
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +623 -0
- package/dist-types/models/errors.d.ts +257 -0
- package/dist-types/models/models_0.d.ts +1 -880
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +344 -0
- package/dist-types/ts3.4/models/errors.d.ts +131 -0
- package/dist-types/ts3.4/models/models_0.d.ts +46 -475
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { AppStreamServiceException as __BaseException } from "./AppStreamServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* @public
|
|
5
|
-
* @enum
|
|
6
|
-
*/
|
|
7
|
-
export declare const AccessEndpointType: {
|
|
8
|
-
readonly STREAMING: "STREAMING";
|
|
9
|
-
};
|
|
10
|
-
/**
|
|
11
|
-
* @public
|
|
12
|
-
*/
|
|
13
|
-
export type AccessEndpointType = (typeof AccessEndpointType)[keyof typeof AccessEndpointType];
|
|
1
|
+
import { AccessEndpointType, Action, AgentSoftwareVersion, AppBlockBuilderAttribute, AppBlockBuilderPlatformType, AppBlockBuilderState, AppBlockBuilderStateChangeReasonCode, AppBlockState, ApplicationAttribute, AppVisibility, AuthenticationType, CertificateBasedAuthStatus, DynamicAppProvidersEnabled, ExportImageTaskState, FleetAttribute, FleetErrorCode, FleetState, FleetType, ImageBuilderState, ImageBuilderStateChangeReasonCode, ImageSharedWithOthers, ImageState, ImageStateChangeReasonCode, ImageType, LatestAppstreamAgentVersion, MessageAction, PackagingType, Permission, PlatformType, PreferredProtocol, SessionConnectionState, SessionState, SoftwareDeploymentStatus, StackAttribute, StackErrorCode, StorageConnectorType, StreamView, ThemeAttribute, ThemeState, ThemeStyling, UsageReportExecutionErrorCode, UsageReportSchedule, UserStackAssociationErrorCode, VisibilityType } from "./enums";
|
|
14
2
|
/**
|
|
15
3
|
* <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 WorkSpaces Applications. When you specify an interface endpoint for a stack, users of the stack can connect to WorkSpaces Applications 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>
|
|
16
4
|
* @public
|
|
@@ -27,24 +15,6 @@ export interface AccessEndpoint {
|
|
|
27
15
|
*/
|
|
28
16
|
VpceId?: string | undefined;
|
|
29
17
|
}
|
|
30
|
-
/**
|
|
31
|
-
* @public
|
|
32
|
-
* @enum
|
|
33
|
-
*/
|
|
34
|
-
export declare const Action: {
|
|
35
|
-
readonly AUTO_TIME_ZONE_REDIRECTION: "AUTO_TIME_ZONE_REDIRECTION";
|
|
36
|
-
readonly CLIPBOARD_COPY_FROM_LOCAL_DEVICE: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE";
|
|
37
|
-
readonly CLIPBOARD_COPY_TO_LOCAL_DEVICE: "CLIPBOARD_COPY_TO_LOCAL_DEVICE";
|
|
38
|
-
readonly DOMAIN_PASSWORD_SIGNIN: "DOMAIN_PASSWORD_SIGNIN";
|
|
39
|
-
readonly DOMAIN_SMART_CARD_SIGNIN: "DOMAIN_SMART_CARD_SIGNIN";
|
|
40
|
-
readonly FILE_DOWNLOAD: "FILE_DOWNLOAD";
|
|
41
|
-
readonly FILE_UPLOAD: "FILE_UPLOAD";
|
|
42
|
-
readonly PRINTING_TO_LOCAL_DEVICE: "PRINTING_TO_LOCAL_DEVICE";
|
|
43
|
-
};
|
|
44
|
-
/**
|
|
45
|
-
* @public
|
|
46
|
-
*/
|
|
47
|
-
export type Action = (typeof Action)[keyof typeof Action];
|
|
48
18
|
/**
|
|
49
19
|
* <p>The collection of license usage records.</p>
|
|
50
20
|
* @public
|
|
@@ -86,18 +56,6 @@ export interface AdminAppLicenseUsageRecord {
|
|
|
86
56
|
*/
|
|
87
57
|
UserId: string | undefined;
|
|
88
58
|
}
|
|
89
|
-
/**
|
|
90
|
-
* @public
|
|
91
|
-
* @enum
|
|
92
|
-
*/
|
|
93
|
-
export declare const AgentSoftwareVersion: {
|
|
94
|
-
readonly ALWAYS_LATEST: "ALWAYS_LATEST";
|
|
95
|
-
readonly CURRENT_LATEST: "CURRENT_LATEST";
|
|
96
|
-
};
|
|
97
|
-
/**
|
|
98
|
-
* @public
|
|
99
|
-
*/
|
|
100
|
-
export type AgentSoftwareVersion = (typeof AgentSoftwareVersion)[keyof typeof AgentSoftwareVersion];
|
|
101
59
|
/**
|
|
102
60
|
* <p>The error details.</p>
|
|
103
61
|
* @public
|
|
@@ -114,18 +72,6 @@ export interface ErrorDetails {
|
|
|
114
72
|
*/
|
|
115
73
|
ErrorMessage?: string | undefined;
|
|
116
74
|
}
|
|
117
|
-
/**
|
|
118
|
-
* @public
|
|
119
|
-
* @enum
|
|
120
|
-
*/
|
|
121
|
-
export declare const PackagingType: {
|
|
122
|
-
readonly APPSTREAM2: "APPSTREAM2";
|
|
123
|
-
readonly CUSTOM: "CUSTOM";
|
|
124
|
-
};
|
|
125
|
-
/**
|
|
126
|
-
* @public
|
|
127
|
-
*/
|
|
128
|
-
export type PackagingType = (typeof PackagingType)[keyof typeof PackagingType];
|
|
129
75
|
/**
|
|
130
76
|
* <p>Describes the S3 location.</p>
|
|
131
77
|
* @public
|
|
@@ -191,18 +137,6 @@ export interface ScriptDetails {
|
|
|
191
137
|
*/
|
|
192
138
|
TimeoutInSeconds: number | undefined;
|
|
193
139
|
}
|
|
194
|
-
/**
|
|
195
|
-
* @public
|
|
196
|
-
* @enum
|
|
197
|
-
*/
|
|
198
|
-
export declare const AppBlockState: {
|
|
199
|
-
readonly ACTIVE: "ACTIVE";
|
|
200
|
-
readonly INACTIVE: "INACTIVE";
|
|
201
|
-
};
|
|
202
|
-
/**
|
|
203
|
-
* @public
|
|
204
|
-
*/
|
|
205
|
-
export type AppBlockState = (typeof AppBlockState)[keyof typeof AppBlockState];
|
|
206
140
|
/**
|
|
207
141
|
* <p>Describes an app block.</p>
|
|
208
142
|
* <p>App blocks are a WorkSpaces Applications resource that stores the details about the
|
|
@@ -276,47 +210,6 @@ export interface AppBlock {
|
|
|
276
210
|
*/
|
|
277
211
|
AppBlockErrors?: ErrorDetails[] | undefined;
|
|
278
212
|
}
|
|
279
|
-
/**
|
|
280
|
-
* @public
|
|
281
|
-
* @enum
|
|
282
|
-
*/
|
|
283
|
-
export declare const FleetErrorCode: {
|
|
284
|
-
readonly DOMAIN_JOIN_ERROR_ACCESS_DENIED: "DOMAIN_JOIN_ERROR_ACCESS_DENIED";
|
|
285
|
-
readonly DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED: "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED";
|
|
286
|
-
readonly DOMAIN_JOIN_ERROR_FILE_NOT_FOUND: "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND";
|
|
287
|
-
readonly DOMAIN_JOIN_ERROR_INVALID_PARAMETER: "DOMAIN_JOIN_ERROR_INVALID_PARAMETER";
|
|
288
|
-
readonly DOMAIN_JOIN_ERROR_LOGON_FAILURE: "DOMAIN_JOIN_ERROR_LOGON_FAILURE";
|
|
289
|
-
readonly DOMAIN_JOIN_ERROR_MORE_DATA: "DOMAIN_JOIN_ERROR_MORE_DATA";
|
|
290
|
-
readonly DOMAIN_JOIN_ERROR_NOT_SUPPORTED: "DOMAIN_JOIN_ERROR_NOT_SUPPORTED";
|
|
291
|
-
readonly DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN: "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN";
|
|
292
|
-
readonly DOMAIN_JOIN_INTERNAL_SERVICE_ERROR: "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR";
|
|
293
|
-
readonly DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME: "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME";
|
|
294
|
-
readonly DOMAIN_JOIN_NERR_PASSWORD_EXPIRED: "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED";
|
|
295
|
-
readonly DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED: "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED";
|
|
296
|
-
readonly FLEET_INSTANCE_PROVISIONING_FAILURE: "FLEET_INSTANCE_PROVISIONING_FAILURE";
|
|
297
|
-
readonly FLEET_STOPPED: "FLEET_STOPPED";
|
|
298
|
-
readonly IAM_SERVICE_ROLE_IS_MISSING: "IAM_SERVICE_ROLE_IS_MISSING";
|
|
299
|
-
readonly IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION: "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION";
|
|
300
|
-
readonly IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION: "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION";
|
|
301
|
-
readonly IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION: "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION";
|
|
302
|
-
readonly IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION: "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION";
|
|
303
|
-
readonly IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION";
|
|
304
|
-
readonly IGW_NOT_ATTACHED: "IGW_NOT_ATTACHED";
|
|
305
|
-
readonly IMAGE_NOT_FOUND: "IMAGE_NOT_FOUND";
|
|
306
|
-
readonly INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR";
|
|
307
|
-
readonly INVALID_SUBNET_CONFIGURATION: "INVALID_SUBNET_CONFIGURATION";
|
|
308
|
-
readonly MACHINE_ROLE_IS_MISSING: "MACHINE_ROLE_IS_MISSING";
|
|
309
|
-
readonly NETWORK_INTERFACE_LIMIT_EXCEEDED: "NETWORK_INTERFACE_LIMIT_EXCEEDED";
|
|
310
|
-
readonly SECURITY_GROUPS_NOT_FOUND: "SECURITY_GROUPS_NOT_FOUND";
|
|
311
|
-
readonly STS_DISABLED_IN_REGION: "STS_DISABLED_IN_REGION";
|
|
312
|
-
readonly SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES: "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES";
|
|
313
|
-
readonly SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND";
|
|
314
|
-
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
315
|
-
};
|
|
316
|
-
/**
|
|
317
|
-
* @public
|
|
318
|
-
*/
|
|
319
|
-
export type FleetErrorCode = (typeof FleetErrorCode)[keyof typeof FleetErrorCode];
|
|
320
213
|
/**
|
|
321
214
|
* <p>Describes a resource error.</p>
|
|
322
215
|
* @public
|
|
@@ -338,42 +231,6 @@ export interface ResourceError {
|
|
|
338
231
|
*/
|
|
339
232
|
ErrorTimestamp?: Date | undefined;
|
|
340
233
|
}
|
|
341
|
-
/**
|
|
342
|
-
* @public
|
|
343
|
-
* @enum
|
|
344
|
-
*/
|
|
345
|
-
export declare const AppBlockBuilderPlatformType: {
|
|
346
|
-
readonly WINDOWS_SERVER_2019: "WINDOWS_SERVER_2019";
|
|
347
|
-
};
|
|
348
|
-
/**
|
|
349
|
-
* @public
|
|
350
|
-
*/
|
|
351
|
-
export type AppBlockBuilderPlatformType = (typeof AppBlockBuilderPlatformType)[keyof typeof AppBlockBuilderPlatformType];
|
|
352
|
-
/**
|
|
353
|
-
* @public
|
|
354
|
-
* @enum
|
|
355
|
-
*/
|
|
356
|
-
export declare const AppBlockBuilderState: {
|
|
357
|
-
readonly RUNNING: "RUNNING";
|
|
358
|
-
readonly STARTING: "STARTING";
|
|
359
|
-
readonly STOPPED: "STOPPED";
|
|
360
|
-
readonly STOPPING: "STOPPING";
|
|
361
|
-
};
|
|
362
|
-
/**
|
|
363
|
-
* @public
|
|
364
|
-
*/
|
|
365
|
-
export type AppBlockBuilderState = (typeof AppBlockBuilderState)[keyof typeof AppBlockBuilderState];
|
|
366
|
-
/**
|
|
367
|
-
* @public
|
|
368
|
-
* @enum
|
|
369
|
-
*/
|
|
370
|
-
export declare const AppBlockBuilderStateChangeReasonCode: {
|
|
371
|
-
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
372
|
-
};
|
|
373
|
-
/**
|
|
374
|
-
* @public
|
|
375
|
-
*/
|
|
376
|
-
export type AppBlockBuilderStateChangeReasonCode = (typeof AppBlockBuilderStateChangeReasonCode)[keyof typeof AppBlockBuilderStateChangeReasonCode];
|
|
377
234
|
/**
|
|
378
235
|
* <p>Describes the reason why the last app block builder state change occurred.</p>
|
|
379
236
|
* @public
|
|
@@ -500,19 +357,6 @@ export interface AppBlockBuilderAppBlockAssociation {
|
|
|
500
357
|
*/
|
|
501
358
|
AppBlockBuilderName: string | undefined;
|
|
502
359
|
}
|
|
503
|
-
/**
|
|
504
|
-
* @public
|
|
505
|
-
* @enum
|
|
506
|
-
*/
|
|
507
|
-
export declare const AppBlockBuilderAttribute: {
|
|
508
|
-
readonly ACCESS_ENDPOINTS: "ACCESS_ENDPOINTS";
|
|
509
|
-
readonly IAM_ROLE_ARN: "IAM_ROLE_ARN";
|
|
510
|
-
readonly VPC_CONFIGURATION_SECURITY_GROUP_IDS: "VPC_CONFIGURATION_SECURITY_GROUP_IDS";
|
|
511
|
-
};
|
|
512
|
-
/**
|
|
513
|
-
* @public
|
|
514
|
-
*/
|
|
515
|
-
export type AppBlockBuilderAttribute = (typeof AppBlockBuilderAttribute)[keyof typeof AppBlockBuilderAttribute];
|
|
516
360
|
/**
|
|
517
361
|
* <p>Configuration for an application in the imported image's application catalog. This structure defines how applications appear and launch for users.</p>
|
|
518
362
|
* @public
|
|
@@ -554,23 +398,6 @@ export interface ApplicationConfig {
|
|
|
554
398
|
*/
|
|
555
399
|
LaunchParameters?: string | undefined;
|
|
556
400
|
}
|
|
557
|
-
/**
|
|
558
|
-
* @public
|
|
559
|
-
* @enum
|
|
560
|
-
*/
|
|
561
|
-
export declare const PlatformType: {
|
|
562
|
-
readonly AMAZON_LINUX2: "AMAZON_LINUX2";
|
|
563
|
-
readonly RHEL8: "RHEL8";
|
|
564
|
-
readonly ROCKY_LINUX8: "ROCKY_LINUX8";
|
|
565
|
-
readonly WINDOWS: "WINDOWS";
|
|
566
|
-
readonly WINDOWS_SERVER_2016: "WINDOWS_SERVER_2016";
|
|
567
|
-
readonly WINDOWS_SERVER_2019: "WINDOWS_SERVER_2019";
|
|
568
|
-
readonly WINDOWS_SERVER_2022: "WINDOWS_SERVER_2022";
|
|
569
|
-
};
|
|
570
|
-
/**
|
|
571
|
-
* @public
|
|
572
|
-
*/
|
|
573
|
-
export type PlatformType = (typeof PlatformType)[keyof typeof PlatformType];
|
|
574
401
|
/**
|
|
575
402
|
* <p>Describes an application in the application catalog.</p>
|
|
576
403
|
* @public
|
|
@@ -652,18 +479,6 @@ export interface Application {
|
|
|
652
479
|
*/
|
|
653
480
|
CreatedTime?: Date | undefined;
|
|
654
481
|
}
|
|
655
|
-
/**
|
|
656
|
-
* @public
|
|
657
|
-
* @enum
|
|
658
|
-
*/
|
|
659
|
-
export declare const ApplicationAttribute: {
|
|
660
|
-
readonly LAUNCH_PARAMETERS: "LAUNCH_PARAMETERS";
|
|
661
|
-
readonly WORKING_DIRECTORY: "WORKING_DIRECTORY";
|
|
662
|
-
};
|
|
663
|
-
/**
|
|
664
|
-
* @public
|
|
665
|
-
*/
|
|
666
|
-
export type ApplicationAttribute = (typeof ApplicationAttribute)[keyof typeof ApplicationAttribute];
|
|
667
482
|
/**
|
|
668
483
|
* <p>Describes the application fleet association.</p>
|
|
669
484
|
* @public
|
|
@@ -718,18 +533,6 @@ export interface ApplicationSettingsResponse {
|
|
|
718
533
|
*/
|
|
719
534
|
S3BucketName?: string | undefined;
|
|
720
535
|
}
|
|
721
|
-
/**
|
|
722
|
-
* @public
|
|
723
|
-
* @enum
|
|
724
|
-
*/
|
|
725
|
-
export declare const AppVisibility: {
|
|
726
|
-
readonly ALL: "ALL";
|
|
727
|
-
readonly ASSOCIATED: "ASSOCIATED";
|
|
728
|
-
};
|
|
729
|
-
/**
|
|
730
|
-
* @public
|
|
731
|
-
*/
|
|
732
|
-
export type AppVisibility = (typeof AppVisibility)[keyof typeof AppVisibility];
|
|
733
536
|
/**
|
|
734
537
|
* @public
|
|
735
538
|
*/
|
|
@@ -755,91 +558,6 @@ export interface AssociateAppBlockBuilderAppBlockResult {
|
|
|
755
558
|
*/
|
|
756
559
|
AppBlockBuilderAppBlockAssociation?: AppBlockBuilderAppBlockAssociation | undefined;
|
|
757
560
|
}
|
|
758
|
-
/**
|
|
759
|
-
* <p>An API error occurred. Wait a few minutes and try again.</p>
|
|
760
|
-
* @public
|
|
761
|
-
*/
|
|
762
|
-
export declare class ConcurrentModificationException extends __BaseException {
|
|
763
|
-
readonly name: "ConcurrentModificationException";
|
|
764
|
-
readonly $fault: "client";
|
|
765
|
-
/**
|
|
766
|
-
* <p>The error message in the exception.</p>
|
|
767
|
-
* @public
|
|
768
|
-
*/
|
|
769
|
-
Message?: string | undefined;
|
|
770
|
-
/**
|
|
771
|
-
* @internal
|
|
772
|
-
*/
|
|
773
|
-
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
774
|
-
}
|
|
775
|
-
/**
|
|
776
|
-
* <p>Indicates an incorrect combination of parameters, or a missing parameter.</p>
|
|
777
|
-
* @public
|
|
778
|
-
*/
|
|
779
|
-
export declare class InvalidParameterCombinationException extends __BaseException {
|
|
780
|
-
readonly name: "InvalidParameterCombinationException";
|
|
781
|
-
readonly $fault: "client";
|
|
782
|
-
/**
|
|
783
|
-
* <p>The error message in the exception.</p>
|
|
784
|
-
* @public
|
|
785
|
-
*/
|
|
786
|
-
Message?: string | undefined;
|
|
787
|
-
/**
|
|
788
|
-
* @internal
|
|
789
|
-
*/
|
|
790
|
-
constructor(opts: __ExceptionOptionType<InvalidParameterCombinationException, __BaseException>);
|
|
791
|
-
}
|
|
792
|
-
/**
|
|
793
|
-
* <p>The requested limit exceeds the permitted limit for an account.</p>
|
|
794
|
-
* @public
|
|
795
|
-
*/
|
|
796
|
-
export declare class LimitExceededException extends __BaseException {
|
|
797
|
-
readonly name: "LimitExceededException";
|
|
798
|
-
readonly $fault: "client";
|
|
799
|
-
/**
|
|
800
|
-
* <p>The error message in the exception.</p>
|
|
801
|
-
* @public
|
|
802
|
-
*/
|
|
803
|
-
Message?: string | undefined;
|
|
804
|
-
/**
|
|
805
|
-
* @internal
|
|
806
|
-
*/
|
|
807
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
808
|
-
}
|
|
809
|
-
/**
|
|
810
|
-
* <p>The attempted operation is not permitted.</p>
|
|
811
|
-
* @public
|
|
812
|
-
*/
|
|
813
|
-
export declare class OperationNotPermittedException extends __BaseException {
|
|
814
|
-
readonly name: "OperationNotPermittedException";
|
|
815
|
-
readonly $fault: "client";
|
|
816
|
-
/**
|
|
817
|
-
* <p>The error message in the exception.</p>
|
|
818
|
-
* @public
|
|
819
|
-
*/
|
|
820
|
-
Message?: string | undefined;
|
|
821
|
-
/**
|
|
822
|
-
* @internal
|
|
823
|
-
*/
|
|
824
|
-
constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
|
|
825
|
-
}
|
|
826
|
-
/**
|
|
827
|
-
* <p>The specified resource was not found.</p>
|
|
828
|
-
* @public
|
|
829
|
-
*/
|
|
830
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
831
|
-
readonly name: "ResourceNotFoundException";
|
|
832
|
-
readonly $fault: "client";
|
|
833
|
-
/**
|
|
834
|
-
* <p>The error message in the exception.</p>
|
|
835
|
-
* @public
|
|
836
|
-
*/
|
|
837
|
-
Message?: string | undefined;
|
|
838
|
-
/**
|
|
839
|
-
* @internal
|
|
840
|
-
*/
|
|
841
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
842
|
-
}
|
|
843
561
|
/**
|
|
844
562
|
* @public
|
|
845
563
|
*/
|
|
@@ -892,23 +610,6 @@ export interface AssociateApplicationToEntitlementRequest {
|
|
|
892
610
|
*/
|
|
893
611
|
export interface AssociateApplicationToEntitlementResult {
|
|
894
612
|
}
|
|
895
|
-
/**
|
|
896
|
-
* <p>The entitlement can't be found.</p>
|
|
897
|
-
* @public
|
|
898
|
-
*/
|
|
899
|
-
export declare class EntitlementNotFoundException extends __BaseException {
|
|
900
|
-
readonly name: "EntitlementNotFoundException";
|
|
901
|
-
readonly $fault: "client";
|
|
902
|
-
/**
|
|
903
|
-
* <p>The error message in the exception.</p>
|
|
904
|
-
* @public
|
|
905
|
-
*/
|
|
906
|
-
Message?: string | undefined;
|
|
907
|
-
/**
|
|
908
|
-
* @internal
|
|
909
|
-
*/
|
|
910
|
-
constructor(opts: __ExceptionOptionType<EntitlementNotFoundException, __BaseException>);
|
|
911
|
-
}
|
|
912
613
|
/**
|
|
913
614
|
* @public
|
|
914
615
|
*/
|
|
@@ -929,40 +630,6 @@ export interface AssociateFleetRequest {
|
|
|
929
630
|
*/
|
|
930
631
|
export interface AssociateFleetResult {
|
|
931
632
|
}
|
|
932
|
-
/**
|
|
933
|
-
* <p>The image can't be updated because it's not compatible for updates.</p>
|
|
934
|
-
* @public
|
|
935
|
-
*/
|
|
936
|
-
export declare class IncompatibleImageException extends __BaseException {
|
|
937
|
-
readonly name: "IncompatibleImageException";
|
|
938
|
-
readonly $fault: "client";
|
|
939
|
-
/**
|
|
940
|
-
* <p>The error message in the exception.</p>
|
|
941
|
-
* @public
|
|
942
|
-
*/
|
|
943
|
-
Message?: string | undefined;
|
|
944
|
-
/**
|
|
945
|
-
* @internal
|
|
946
|
-
*/
|
|
947
|
-
constructor(opts: __ExceptionOptionType<IncompatibleImageException, __BaseException>);
|
|
948
|
-
}
|
|
949
|
-
/**
|
|
950
|
-
* <p>The resource cannot be created because your AWS account is suspended. For assistance, contact AWS Support. </p>
|
|
951
|
-
* @public
|
|
952
|
-
*/
|
|
953
|
-
export declare class InvalidAccountStatusException extends __BaseException {
|
|
954
|
-
readonly name: "InvalidAccountStatusException";
|
|
955
|
-
readonly $fault: "client";
|
|
956
|
-
/**
|
|
957
|
-
* <p>The error message in the exception.</p>
|
|
958
|
-
* @public
|
|
959
|
-
*/
|
|
960
|
-
Message?: string | undefined;
|
|
961
|
-
/**
|
|
962
|
-
* @internal
|
|
963
|
-
*/
|
|
964
|
-
constructor(opts: __ExceptionOptionType<InvalidAccountStatusException, __BaseException>);
|
|
965
|
-
}
|
|
966
633
|
/**
|
|
967
634
|
* @public
|
|
968
635
|
*/
|
|
@@ -1058,20 +725,6 @@ export interface AssociateSoftwareToImageBuilderRequest {
|
|
|
1058
725
|
*/
|
|
1059
726
|
export interface AssociateSoftwareToImageBuilderResult {
|
|
1060
727
|
}
|
|
1061
|
-
/**
|
|
1062
|
-
* @public
|
|
1063
|
-
* @enum
|
|
1064
|
-
*/
|
|
1065
|
-
export declare const AuthenticationType: {
|
|
1066
|
-
readonly API: "API";
|
|
1067
|
-
readonly AWS_AD: "AWS_AD";
|
|
1068
|
-
readonly SAML: "SAML";
|
|
1069
|
-
readonly USERPOOL: "USERPOOL";
|
|
1070
|
-
};
|
|
1071
|
-
/**
|
|
1072
|
-
* @public
|
|
1073
|
-
*/
|
|
1074
|
-
export type AuthenticationType = (typeof AuthenticationType)[keyof typeof AuthenticationType];
|
|
1075
728
|
/**
|
|
1076
729
|
* <p>Describes a user in the user pool and the associated stack.</p>
|
|
1077
730
|
* @public
|
|
@@ -1111,20 +764,6 @@ export interface BatchAssociateUserStackRequest {
|
|
|
1111
764
|
*/
|
|
1112
765
|
UserStackAssociations: UserStackAssociation[] | undefined;
|
|
1113
766
|
}
|
|
1114
|
-
/**
|
|
1115
|
-
* @public
|
|
1116
|
-
* @enum
|
|
1117
|
-
*/
|
|
1118
|
-
export declare const UserStackAssociationErrorCode: {
|
|
1119
|
-
readonly DIRECTORY_NOT_FOUND: "DIRECTORY_NOT_FOUND";
|
|
1120
|
-
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
1121
|
-
readonly STACK_NOT_FOUND: "STACK_NOT_FOUND";
|
|
1122
|
-
readonly USER_NAME_NOT_FOUND: "USER_NAME_NOT_FOUND";
|
|
1123
|
-
};
|
|
1124
|
-
/**
|
|
1125
|
-
* @public
|
|
1126
|
-
*/
|
|
1127
|
-
export type UserStackAssociationErrorCode = (typeof UserStackAssociationErrorCode)[keyof typeof UserStackAssociationErrorCode];
|
|
1128
767
|
/**
|
|
1129
768
|
* <p>Describes the error that is returned when a user can’t be associated with or disassociated from a stack. </p>
|
|
1130
769
|
* @public
|
|
@@ -1176,19 +815,6 @@ export interface BatchDisassociateUserStackResult {
|
|
|
1176
815
|
*/
|
|
1177
816
|
errors?: UserStackAssociationError[] | undefined;
|
|
1178
817
|
}
|
|
1179
|
-
/**
|
|
1180
|
-
* @public
|
|
1181
|
-
* @enum
|
|
1182
|
-
*/
|
|
1183
|
-
export declare const CertificateBasedAuthStatus: {
|
|
1184
|
-
readonly DISABLED: "DISABLED";
|
|
1185
|
-
readonly ENABLED: "ENABLED";
|
|
1186
|
-
readonly ENABLED_NO_DIRECTORY_LOGIN_FALLBACK: "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK";
|
|
1187
|
-
};
|
|
1188
|
-
/**
|
|
1189
|
-
* @public
|
|
1190
|
-
*/
|
|
1191
|
-
export type CertificateBasedAuthStatus = (typeof CertificateBasedAuthStatus)[keyof typeof CertificateBasedAuthStatus];
|
|
1192
818
|
/**
|
|
1193
819
|
* <p>The certificate-based authentication properties used to authenticate SAML 2.0 Identity
|
|
1194
820
|
* Provider (IdP) user identities to Active Directory domain-joined streaming instances.
|
|
@@ -1316,40 +942,6 @@ export interface CopyImageResponse {
|
|
|
1316
942
|
*/
|
|
1317
943
|
DestinationImageName?: string | undefined;
|
|
1318
944
|
}
|
|
1319
|
-
/**
|
|
1320
|
-
* <p>The specified resource already exists.</p>
|
|
1321
|
-
* @public
|
|
1322
|
-
*/
|
|
1323
|
-
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
1324
|
-
readonly name: "ResourceAlreadyExistsException";
|
|
1325
|
-
readonly $fault: "client";
|
|
1326
|
-
/**
|
|
1327
|
-
* <p>The error message in the exception.</p>
|
|
1328
|
-
* @public
|
|
1329
|
-
*/
|
|
1330
|
-
Message?: string | undefined;
|
|
1331
|
-
/**
|
|
1332
|
-
* @internal
|
|
1333
|
-
*/
|
|
1334
|
-
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
1335
|
-
}
|
|
1336
|
-
/**
|
|
1337
|
-
* <p>The specified resource exists and is not in use, but isn't available.</p>
|
|
1338
|
-
* @public
|
|
1339
|
-
*/
|
|
1340
|
-
export declare class ResourceNotAvailableException extends __BaseException {
|
|
1341
|
-
readonly name: "ResourceNotAvailableException";
|
|
1342
|
-
readonly $fault: "client";
|
|
1343
|
-
/**
|
|
1344
|
-
* <p>The error message in the exception.</p>
|
|
1345
|
-
* @public
|
|
1346
|
-
*/
|
|
1347
|
-
Message?: string | undefined;
|
|
1348
|
-
/**
|
|
1349
|
-
* @internal
|
|
1350
|
-
*/
|
|
1351
|
-
constructor(opts: __ExceptionOptionType<ResourceNotAvailableException, __BaseException>);
|
|
1352
|
-
}
|
|
1353
945
|
/**
|
|
1354
946
|
* @public
|
|
1355
947
|
*/
|
|
@@ -1505,40 +1097,6 @@ export interface CreateAppBlockBuilderResult {
|
|
|
1505
1097
|
*/
|
|
1506
1098
|
AppBlockBuilder?: AppBlockBuilder | undefined;
|
|
1507
1099
|
}
|
|
1508
|
-
/**
|
|
1509
|
-
* <p>The specified role is invalid.</p>
|
|
1510
|
-
* @public
|
|
1511
|
-
*/
|
|
1512
|
-
export declare class InvalidRoleException extends __BaseException {
|
|
1513
|
-
readonly name: "InvalidRoleException";
|
|
1514
|
-
readonly $fault: "client";
|
|
1515
|
-
/**
|
|
1516
|
-
* <p>The error message in the exception.</p>
|
|
1517
|
-
* @public
|
|
1518
|
-
*/
|
|
1519
|
-
Message?: string | undefined;
|
|
1520
|
-
/**
|
|
1521
|
-
* @internal
|
|
1522
|
-
*/
|
|
1523
|
-
constructor(opts: __ExceptionOptionType<InvalidRoleException, __BaseException>);
|
|
1524
|
-
}
|
|
1525
|
-
/**
|
|
1526
|
-
* <p>WorkSpaces Applications can’t process the request right now because the Describe calls from your AWS account are being throttled by Amazon EC2. Try again later.</p>
|
|
1527
|
-
* @public
|
|
1528
|
-
*/
|
|
1529
|
-
export declare class RequestLimitExceededException extends __BaseException {
|
|
1530
|
-
readonly name: "RequestLimitExceededException";
|
|
1531
|
-
readonly $fault: "client";
|
|
1532
|
-
/**
|
|
1533
|
-
* <p>The error message in the exception.</p>
|
|
1534
|
-
* @public
|
|
1535
|
-
*/
|
|
1536
|
-
Message?: string | undefined;
|
|
1537
|
-
/**
|
|
1538
|
-
* @internal
|
|
1539
|
-
*/
|
|
1540
|
-
constructor(opts: __ExceptionOptionType<RequestLimitExceededException, __BaseException>);
|
|
1541
|
-
}
|
|
1542
1100
|
/**
|
|
1543
1101
|
* @public
|
|
1544
1102
|
*/
|
|
@@ -1867,23 +1425,6 @@ export interface CreateEntitlementResult {
|
|
|
1867
1425
|
*/
|
|
1868
1426
|
Entitlement?: Entitlement | undefined;
|
|
1869
1427
|
}
|
|
1870
|
-
/**
|
|
1871
|
-
* <p>The entitlement already exists.</p>
|
|
1872
|
-
* @public
|
|
1873
|
-
*/
|
|
1874
|
-
export declare class EntitlementAlreadyExistsException extends __BaseException {
|
|
1875
|
-
readonly name: "EntitlementAlreadyExistsException";
|
|
1876
|
-
readonly $fault: "client";
|
|
1877
|
-
/**
|
|
1878
|
-
* <p>The error message in the exception.</p>
|
|
1879
|
-
* @public
|
|
1880
|
-
*/
|
|
1881
|
-
Message?: string | undefined;
|
|
1882
|
-
/**
|
|
1883
|
-
* @internal
|
|
1884
|
-
*/
|
|
1885
|
-
constructor(opts: __ExceptionOptionType<EntitlementAlreadyExistsException, __BaseException>);
|
|
1886
|
-
}
|
|
1887
1428
|
/**
|
|
1888
1429
|
* @public
|
|
1889
1430
|
*/
|
|
@@ -1914,19 +1455,6 @@ export interface CreateExportImageTaskRequest {
|
|
|
1914
1455
|
*/
|
|
1915
1456
|
AmiDescription?: string | undefined;
|
|
1916
1457
|
}
|
|
1917
|
-
/**
|
|
1918
|
-
* @public
|
|
1919
|
-
* @enum
|
|
1920
|
-
*/
|
|
1921
|
-
export declare const ExportImageTaskState: {
|
|
1922
|
-
readonly COMPLETED: "COMPLETED";
|
|
1923
|
-
readonly EXPORTING: "EXPORTING";
|
|
1924
|
-
readonly FAILED: "FAILED";
|
|
1925
|
-
};
|
|
1926
|
-
/**
|
|
1927
|
-
* @public
|
|
1928
|
-
*/
|
|
1929
|
-
export type ExportImageTaskState = (typeof ExportImageTaskState)[keyof typeof ExportImageTaskState];
|
|
1930
1458
|
/**
|
|
1931
1459
|
* <p>Information about an export image task, including its current state, timestamps, and any error details.</p>
|
|
1932
1460
|
* @public
|
|
@@ -2004,19 +1532,6 @@ export interface DomainJoinInfo {
|
|
|
2004
1532
|
*/
|
|
2005
1533
|
OrganizationalUnitDistinguishedName?: string | undefined;
|
|
2006
1534
|
}
|
|
2007
|
-
/**
|
|
2008
|
-
* @public
|
|
2009
|
-
* @enum
|
|
2010
|
-
*/
|
|
2011
|
-
export declare const FleetType: {
|
|
2012
|
-
readonly ALWAYS_ON: "ALWAYS_ON";
|
|
2013
|
-
readonly ELASTIC: "ELASTIC";
|
|
2014
|
-
readonly ON_DEMAND: "ON_DEMAND";
|
|
2015
|
-
};
|
|
2016
|
-
/**
|
|
2017
|
-
* @public
|
|
2018
|
-
*/
|
|
2019
|
-
export type FleetType = (typeof FleetType)[keyof typeof FleetType];
|
|
2020
1535
|
/**
|
|
2021
1536
|
* <p>Configuration for the root volume of fleet instances and image builders. This allows you to customize the storage capacity beyond the default 200 GB.</p>
|
|
2022
1537
|
* @public
|
|
@@ -2028,18 +1543,6 @@ export interface VolumeConfig {
|
|
|
2028
1543
|
*/
|
|
2029
1544
|
VolumeSizeInGb?: number | undefined;
|
|
2030
1545
|
}
|
|
2031
|
-
/**
|
|
2032
|
-
* @public
|
|
2033
|
-
* @enum
|
|
2034
|
-
*/
|
|
2035
|
-
export declare const StreamView: {
|
|
2036
|
-
readonly APP: "APP";
|
|
2037
|
-
readonly DESKTOP: "DESKTOP";
|
|
2038
|
-
};
|
|
2039
|
-
/**
|
|
2040
|
-
* @public
|
|
2041
|
-
*/
|
|
2042
|
-
export type StreamView = (typeof StreamView)[keyof typeof StreamView];
|
|
2043
1546
|
/**
|
|
2044
1547
|
* @public
|
|
2045
1548
|
*/
|
|
@@ -2388,20 +1891,6 @@ export interface FleetError {
|
|
|
2388
1891
|
*/
|
|
2389
1892
|
ErrorMessage?: string | undefined;
|
|
2390
1893
|
}
|
|
2391
|
-
/**
|
|
2392
|
-
* @public
|
|
2393
|
-
* @enum
|
|
2394
|
-
*/
|
|
2395
|
-
export declare const FleetState: {
|
|
2396
|
-
readonly RUNNING: "RUNNING";
|
|
2397
|
-
readonly STARTING: "STARTING";
|
|
2398
|
-
readonly STOPPED: "STOPPED";
|
|
2399
|
-
readonly STOPPING: "STOPPING";
|
|
2400
|
-
};
|
|
2401
|
-
/**
|
|
2402
|
-
* @public
|
|
2403
|
-
*/
|
|
2404
|
-
export type FleetState = (typeof FleetState)[keyof typeof FleetState];
|
|
2405
1894
|
/**
|
|
2406
1895
|
* <p>Describes a fleet.</p>
|
|
2407
1896
|
* @public
|
|
@@ -3122,18 +2611,6 @@ export interface CreateImageBuilderRequest {
|
|
|
3122
2611
|
*/
|
|
3123
2612
|
SoftwaresToUninstall?: string[] | undefined;
|
|
3124
2613
|
}
|
|
3125
|
-
/**
|
|
3126
|
-
* @public
|
|
3127
|
-
* @enum
|
|
3128
|
-
*/
|
|
3129
|
-
export declare const LatestAppstreamAgentVersion: {
|
|
3130
|
-
readonly FALSE: "FALSE";
|
|
3131
|
-
readonly TRUE: "TRUE";
|
|
3132
|
-
};
|
|
3133
|
-
/**
|
|
3134
|
-
* @public
|
|
3135
|
-
*/
|
|
3136
|
-
export type LatestAppstreamAgentVersion = (typeof LatestAppstreamAgentVersion)[keyof typeof LatestAppstreamAgentVersion];
|
|
3137
2614
|
/**
|
|
3138
2615
|
* <p>Describes the network details of the fleet or image builder instance.</p>
|
|
3139
2616
|
* @public
|
|
@@ -3155,42 +2632,6 @@ export interface NetworkAccessConfiguration {
|
|
|
3155
2632
|
*/
|
|
3156
2633
|
EniId?: string | undefined;
|
|
3157
2634
|
}
|
|
3158
|
-
/**
|
|
3159
|
-
* @public
|
|
3160
|
-
* @enum
|
|
3161
|
-
*/
|
|
3162
|
-
export declare const ImageBuilderState: {
|
|
3163
|
-
readonly DELETING: "DELETING";
|
|
3164
|
-
readonly FAILED: "FAILED";
|
|
3165
|
-
readonly PENDING: "PENDING";
|
|
3166
|
-
readonly PENDING_IMAGE_IMPORT: "PENDING_IMAGE_IMPORT";
|
|
3167
|
-
readonly PENDING_QUALIFICATION: "PENDING_QUALIFICATION";
|
|
3168
|
-
readonly PENDING_SYNCING_APPS: "PENDING_SYNCING_APPS";
|
|
3169
|
-
readonly REBOOTING: "REBOOTING";
|
|
3170
|
-
readonly RUNNING: "RUNNING";
|
|
3171
|
-
readonly SNAPSHOTTING: "SNAPSHOTTING";
|
|
3172
|
-
readonly STOPPED: "STOPPED";
|
|
3173
|
-
readonly STOPPING: "STOPPING";
|
|
3174
|
-
readonly SYNCING_APPS: "SYNCING_APPS";
|
|
3175
|
-
readonly UPDATING: "UPDATING";
|
|
3176
|
-
readonly UPDATING_AGENT: "UPDATING_AGENT";
|
|
3177
|
-
};
|
|
3178
|
-
/**
|
|
3179
|
-
* @public
|
|
3180
|
-
*/
|
|
3181
|
-
export type ImageBuilderState = (typeof ImageBuilderState)[keyof typeof ImageBuilderState];
|
|
3182
|
-
/**
|
|
3183
|
-
* @public
|
|
3184
|
-
* @enum
|
|
3185
|
-
*/
|
|
3186
|
-
export declare const ImageBuilderStateChangeReasonCode: {
|
|
3187
|
-
readonly IMAGE_UNAVAILABLE: "IMAGE_UNAVAILABLE";
|
|
3188
|
-
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
3189
|
-
};
|
|
3190
|
-
/**
|
|
3191
|
-
* @public
|
|
3192
|
-
*/
|
|
3193
|
-
export type ImageBuilderStateChangeReasonCode = (typeof ImageBuilderStateChangeReasonCode)[keyof typeof ImageBuilderStateChangeReasonCode];
|
|
3194
2635
|
/**
|
|
3195
2636
|
* <p>Describes the reason why the last image builder state change occurred.</p>
|
|
3196
2637
|
* @public
|
|
@@ -3573,18 +3014,6 @@ export interface CreateImportedImageRequest {
|
|
|
3573
3014
|
*/
|
|
3574
3015
|
DryRun?: boolean | undefined;
|
|
3575
3016
|
}
|
|
3576
|
-
/**
|
|
3577
|
-
* @public
|
|
3578
|
-
* @enum
|
|
3579
|
-
*/
|
|
3580
|
-
export declare const DynamicAppProvidersEnabled: {
|
|
3581
|
-
readonly DISABLED: "DISABLED";
|
|
3582
|
-
readonly ENABLED: "ENABLED";
|
|
3583
|
-
};
|
|
3584
|
-
/**
|
|
3585
|
-
* @public
|
|
3586
|
-
*/
|
|
3587
|
-
export type DynamicAppProvidersEnabled = (typeof DynamicAppProvidersEnabled)[keyof typeof DynamicAppProvidersEnabled];
|
|
3588
3017
|
/**
|
|
3589
3018
|
* <p>Describes the permissions for an image. </p>
|
|
3590
3019
|
* @public
|
|
@@ -3601,63 +3030,6 @@ export interface ImagePermissions {
|
|
|
3601
3030
|
*/
|
|
3602
3031
|
allowImageBuilder?: boolean | undefined;
|
|
3603
3032
|
}
|
|
3604
|
-
/**
|
|
3605
|
-
* @public
|
|
3606
|
-
* @enum
|
|
3607
|
-
*/
|
|
3608
|
-
export declare const ImageSharedWithOthers: {
|
|
3609
|
-
readonly FALSE: "FALSE";
|
|
3610
|
-
readonly TRUE: "TRUE";
|
|
3611
|
-
};
|
|
3612
|
-
/**
|
|
3613
|
-
* @public
|
|
3614
|
-
*/
|
|
3615
|
-
export type ImageSharedWithOthers = (typeof ImageSharedWithOthers)[keyof typeof ImageSharedWithOthers];
|
|
3616
|
-
/**
|
|
3617
|
-
* @public
|
|
3618
|
-
* @enum
|
|
3619
|
-
*/
|
|
3620
|
-
export declare const ImageType: {
|
|
3621
|
-
readonly CUSTOM: "CUSTOM";
|
|
3622
|
-
readonly NATIVE: "NATIVE";
|
|
3623
|
-
};
|
|
3624
|
-
/**
|
|
3625
|
-
* @public
|
|
3626
|
-
*/
|
|
3627
|
-
export type ImageType = (typeof ImageType)[keyof typeof ImageType];
|
|
3628
|
-
/**
|
|
3629
|
-
* @public
|
|
3630
|
-
* @enum
|
|
3631
|
-
*/
|
|
3632
|
-
export declare const ImageState: {
|
|
3633
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
3634
|
-
readonly COPYING: "COPYING";
|
|
3635
|
-
readonly CREATING: "CREATING";
|
|
3636
|
-
readonly DELETING: "DELETING";
|
|
3637
|
-
readonly FAILED: "FAILED";
|
|
3638
|
-
readonly IMPORTING: "IMPORTING";
|
|
3639
|
-
readonly PENDING: "PENDING";
|
|
3640
|
-
readonly VALIDATING: "VALIDATING";
|
|
3641
|
-
};
|
|
3642
|
-
/**
|
|
3643
|
-
* @public
|
|
3644
|
-
*/
|
|
3645
|
-
export type ImageState = (typeof ImageState)[keyof typeof ImageState];
|
|
3646
|
-
/**
|
|
3647
|
-
* @public
|
|
3648
|
-
* @enum
|
|
3649
|
-
*/
|
|
3650
|
-
export declare const ImageStateChangeReasonCode: {
|
|
3651
|
-
readonly IMAGE_BUILDER_NOT_AVAILABLE: "IMAGE_BUILDER_NOT_AVAILABLE";
|
|
3652
|
-
readonly IMAGE_COPY_FAILURE: "IMAGE_COPY_FAILURE";
|
|
3653
|
-
readonly IMAGE_IMPORT_FAILURE: "IMAGE_IMPORT_FAILURE";
|
|
3654
|
-
readonly IMAGE_UPDATE_FAILURE: "IMAGE_UPDATE_FAILURE";
|
|
3655
|
-
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
3656
|
-
};
|
|
3657
|
-
/**
|
|
3658
|
-
* @public
|
|
3659
|
-
*/
|
|
3660
|
-
export type ImageStateChangeReasonCode = (typeof ImageStateChangeReasonCode)[keyof typeof ImageStateChangeReasonCode];
|
|
3661
3033
|
/**
|
|
3662
3034
|
* <p>Describes the reason why the last image state change occurred.</p>
|
|
3663
3035
|
* @public
|
|
@@ -3674,19 +3046,6 @@ export interface ImageStateChangeReason {
|
|
|
3674
3046
|
*/
|
|
3675
3047
|
Message?: string | undefined;
|
|
3676
3048
|
}
|
|
3677
|
-
/**
|
|
3678
|
-
* @public
|
|
3679
|
-
* @enum
|
|
3680
|
-
*/
|
|
3681
|
-
export declare const VisibilityType: {
|
|
3682
|
-
readonly PRIVATE: "PRIVATE";
|
|
3683
|
-
readonly PUBLIC: "PUBLIC";
|
|
3684
|
-
readonly SHARED: "SHARED";
|
|
3685
|
-
};
|
|
3686
|
-
/**
|
|
3687
|
-
* @public
|
|
3688
|
-
*/
|
|
3689
|
-
export type VisibilityType = (typeof VisibilityType)[keyof typeof VisibilityType];
|
|
3690
3049
|
/**
|
|
3691
3050
|
* <p>Describes an image.</p>
|
|
3692
3051
|
* @public
|
|
@@ -3846,36 +3205,6 @@ export interface CreateImportedImageResult {
|
|
|
3846
3205
|
*/
|
|
3847
3206
|
Image?: Image | undefined;
|
|
3848
3207
|
}
|
|
3849
|
-
/**
|
|
3850
|
-
* <p>The exception that is thrown when a dry run operation is requested. This indicates that the validation checks have been performed successfully, but no actual resources were created or modified.</p>
|
|
3851
|
-
* @public
|
|
3852
|
-
*/
|
|
3853
|
-
export declare class DryRunOperationException extends __BaseException {
|
|
3854
|
-
readonly name: "DryRunOperationException";
|
|
3855
|
-
readonly $fault: "client";
|
|
3856
|
-
/**
|
|
3857
|
-
* <p>The error message in the exception.</p>
|
|
3858
|
-
* @public
|
|
3859
|
-
*/
|
|
3860
|
-
Message?: string | undefined;
|
|
3861
|
-
/**
|
|
3862
|
-
* @internal
|
|
3863
|
-
*/
|
|
3864
|
-
constructor(opts: __ExceptionOptionType<DryRunOperationException, __BaseException>);
|
|
3865
|
-
}
|
|
3866
|
-
/**
|
|
3867
|
-
* @public
|
|
3868
|
-
* @enum
|
|
3869
|
-
*/
|
|
3870
|
-
export declare const StorageConnectorType: {
|
|
3871
|
-
readonly GOOGLE_DRIVE: "GOOGLE_DRIVE";
|
|
3872
|
-
readonly HOMEFOLDERS: "HOMEFOLDERS";
|
|
3873
|
-
readonly ONE_DRIVE: "ONE_DRIVE";
|
|
3874
|
-
};
|
|
3875
|
-
/**
|
|
3876
|
-
* @public
|
|
3877
|
-
*/
|
|
3878
|
-
export type StorageConnectorType = (typeof StorageConnectorType)[keyof typeof StorageConnectorType];
|
|
3879
3208
|
/**
|
|
3880
3209
|
* <p>Describes a connector that enables persistent storage for users.</p>
|
|
3881
3210
|
* @public
|
|
@@ -3902,18 +3231,6 @@ export interface StorageConnector {
|
|
|
3902
3231
|
*/
|
|
3903
3232
|
DomainsRequireAdminConsent?: string[] | undefined;
|
|
3904
3233
|
}
|
|
3905
|
-
/**
|
|
3906
|
-
* @public
|
|
3907
|
-
* @enum
|
|
3908
|
-
*/
|
|
3909
|
-
export declare const PreferredProtocol: {
|
|
3910
|
-
readonly TCP: "TCP";
|
|
3911
|
-
readonly UDP: "UDP";
|
|
3912
|
-
};
|
|
3913
|
-
/**
|
|
3914
|
-
* @public
|
|
3915
|
-
*/
|
|
3916
|
-
export type PreferredProtocol = (typeof PreferredProtocol)[keyof typeof PreferredProtocol];
|
|
3917
3234
|
/**
|
|
3918
3235
|
* <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>
|
|
3919
3236
|
* @public
|
|
@@ -3925,18 +3242,6 @@ export interface StreamingExperienceSettings {
|
|
|
3925
3242
|
*/
|
|
3926
3243
|
PreferredProtocol?: PreferredProtocol | undefined;
|
|
3927
3244
|
}
|
|
3928
|
-
/**
|
|
3929
|
-
* @public
|
|
3930
|
-
* @enum
|
|
3931
|
-
*/
|
|
3932
|
-
export declare const Permission: {
|
|
3933
|
-
readonly DISABLED: "DISABLED";
|
|
3934
|
-
readonly ENABLED: "ENABLED";
|
|
3935
|
-
};
|
|
3936
|
-
/**
|
|
3937
|
-
* @public
|
|
3938
|
-
*/
|
|
3939
|
-
export type Permission = (typeof Permission)[keyof typeof Permission];
|
|
3940
3245
|
/**
|
|
3941
3246
|
* <p>Describes an action and whether the action is enabled or disabled for users during their streaming sessions.</p>
|
|
3942
3247
|
* @public
|
|
@@ -4030,18 +3335,6 @@ export interface CreateStackRequest {
|
|
|
4030
3335
|
*/
|
|
4031
3336
|
StreamingExperienceSettings?: StreamingExperienceSettings | undefined;
|
|
4032
3337
|
}
|
|
4033
|
-
/**
|
|
4034
|
-
* @public
|
|
4035
|
-
* @enum
|
|
4036
|
-
*/
|
|
4037
|
-
export declare const StackErrorCode: {
|
|
4038
|
-
readonly INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR";
|
|
4039
|
-
readonly STORAGE_CONNECTOR_ERROR: "STORAGE_CONNECTOR_ERROR";
|
|
4040
|
-
};
|
|
4041
|
-
/**
|
|
4042
|
-
* @public
|
|
4043
|
-
*/
|
|
4044
|
-
export type StackErrorCode = (typeof StackErrorCode)[keyof typeof StackErrorCode];
|
|
4045
3338
|
/**
|
|
4046
3339
|
* <p>Describes a stack error.</p>
|
|
4047
3340
|
* @public
|
|
@@ -4212,20 +3505,6 @@ export interface ThemeFooterLink {
|
|
|
4212
3505
|
*/
|
|
4213
3506
|
FooterLinkURL?: string | undefined;
|
|
4214
3507
|
}
|
|
4215
|
-
/**
|
|
4216
|
-
* @public
|
|
4217
|
-
* @enum
|
|
4218
|
-
*/
|
|
4219
|
-
export declare const ThemeStyling: {
|
|
4220
|
-
readonly BLUE: "BLUE";
|
|
4221
|
-
readonly LIGHT_BLUE: "LIGHT_BLUE";
|
|
4222
|
-
readonly PINK: "PINK";
|
|
4223
|
-
readonly RED: "RED";
|
|
4224
|
-
};
|
|
4225
|
-
/**
|
|
4226
|
-
* @public
|
|
4227
|
-
*/
|
|
4228
|
-
export type ThemeStyling = (typeof ThemeStyling)[keyof typeof ThemeStyling];
|
|
4229
3508
|
/**
|
|
4230
3509
|
* @public
|
|
4231
3510
|
*/
|
|
@@ -4261,18 +3540,6 @@ export interface CreateThemeForStackRequest {
|
|
|
4261
3540
|
*/
|
|
4262
3541
|
FaviconS3Location: S3Location | undefined;
|
|
4263
3542
|
}
|
|
4264
|
-
/**
|
|
4265
|
-
* @public
|
|
4266
|
-
* @enum
|
|
4267
|
-
*/
|
|
4268
|
-
export declare const ThemeState: {
|
|
4269
|
-
readonly DISABLED: "DISABLED";
|
|
4270
|
-
readonly ENABLED: "ENABLED";
|
|
4271
|
-
};
|
|
4272
|
-
/**
|
|
4273
|
-
* @public
|
|
4274
|
-
*/
|
|
4275
|
-
export type ThemeState = (typeof ThemeState)[keyof typeof ThemeState];
|
|
4276
3543
|
/**
|
|
4277
3544
|
* <p>The custom branding theme, which might include a custom logo, website links, and other branding to display to users.</p>
|
|
4278
3545
|
* @public
|
|
@@ -4388,17 +3655,6 @@ export interface CreateUpdatedImageResult {
|
|
|
4388
3655
|
*/
|
|
4389
3656
|
export interface CreateUsageReportSubscriptionRequest {
|
|
4390
3657
|
}
|
|
4391
|
-
/**
|
|
4392
|
-
* @public
|
|
4393
|
-
* @enum
|
|
4394
|
-
*/
|
|
4395
|
-
export declare const UsageReportSchedule: {
|
|
4396
|
-
readonly DAILY: "DAILY";
|
|
4397
|
-
};
|
|
4398
|
-
/**
|
|
4399
|
-
* @public
|
|
4400
|
-
*/
|
|
4401
|
-
export type UsageReportSchedule = (typeof UsageReportSchedule)[keyof typeof UsageReportSchedule];
|
|
4402
3658
|
/**
|
|
4403
3659
|
* @public
|
|
4404
3660
|
*/
|
|
@@ -4419,18 +3675,6 @@ export interface CreateUsageReportSubscriptionResult {
|
|
|
4419
3675
|
*/
|
|
4420
3676
|
Schedule?: UsageReportSchedule | undefined;
|
|
4421
3677
|
}
|
|
4422
|
-
/**
|
|
4423
|
-
* @public
|
|
4424
|
-
* @enum
|
|
4425
|
-
*/
|
|
4426
|
-
export declare const MessageAction: {
|
|
4427
|
-
readonly RESEND: "RESEND";
|
|
4428
|
-
readonly SUPPRESS: "SUPPRESS";
|
|
4429
|
-
};
|
|
4430
|
-
/**
|
|
4431
|
-
* @public
|
|
4432
|
-
*/
|
|
4433
|
-
export type MessageAction = (typeof MessageAction)[keyof typeof MessageAction];
|
|
4434
3678
|
/**
|
|
4435
3679
|
* @public
|
|
4436
3680
|
*/
|
|
@@ -4487,23 +3731,6 @@ export interface DeleteAppBlockRequest {
|
|
|
4487
3731
|
*/
|
|
4488
3732
|
export interface DeleteAppBlockResult {
|
|
4489
3733
|
}
|
|
4490
|
-
/**
|
|
4491
|
-
* <p>The specified resource is in use.</p>
|
|
4492
|
-
* @public
|
|
4493
|
-
*/
|
|
4494
|
-
export declare class ResourceInUseException extends __BaseException {
|
|
4495
|
-
readonly name: "ResourceInUseException";
|
|
4496
|
-
readonly $fault: "client";
|
|
4497
|
-
/**
|
|
4498
|
-
* <p>The error message in the exception.</p>
|
|
4499
|
-
* @public
|
|
4500
|
-
*/
|
|
4501
|
-
Message?: string | undefined;
|
|
4502
|
-
/**
|
|
4503
|
-
* @internal
|
|
4504
|
-
*/
|
|
4505
|
-
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
4506
|
-
}
|
|
4507
3734
|
/**
|
|
4508
3735
|
* @public
|
|
4509
3736
|
*/
|
|
@@ -5228,31 +4455,6 @@ export interface DescribeSessionsRequest {
|
|
|
5228
4455
|
*/
|
|
5229
4456
|
InstanceId?: string | undefined;
|
|
5230
4457
|
}
|
|
5231
|
-
/**
|
|
5232
|
-
* @public
|
|
5233
|
-
* @enum
|
|
5234
|
-
*/
|
|
5235
|
-
export declare const SessionConnectionState: {
|
|
5236
|
-
readonly CONNECTED: "CONNECTED";
|
|
5237
|
-
readonly NOT_CONNECTED: "NOT_CONNECTED";
|
|
5238
|
-
};
|
|
5239
|
-
/**
|
|
5240
|
-
* @public
|
|
5241
|
-
*/
|
|
5242
|
-
export type SessionConnectionState = (typeof SessionConnectionState)[keyof typeof SessionConnectionState];
|
|
5243
|
-
/**
|
|
5244
|
-
* @public
|
|
5245
|
-
* @enum
|
|
5246
|
-
*/
|
|
5247
|
-
export declare const SessionState: {
|
|
5248
|
-
readonly ACTIVE: "ACTIVE";
|
|
5249
|
-
readonly EXPIRED: "EXPIRED";
|
|
5250
|
-
readonly PENDING: "PENDING";
|
|
5251
|
-
};
|
|
5252
|
-
/**
|
|
5253
|
-
* @public
|
|
5254
|
-
*/
|
|
5255
|
-
export type SessionState = (typeof SessionState)[keyof typeof SessionState];
|
|
5256
4458
|
/**
|
|
5257
4459
|
* <p>Describes a streaming session.</p>
|
|
5258
4460
|
* @public
|
|
@@ -5350,23 +4552,6 @@ export interface DescribeSoftwareAssociationsRequest {
|
|
|
5350
4552
|
*/
|
|
5351
4553
|
NextToken?: string | undefined;
|
|
5352
4554
|
}
|
|
5353
|
-
/**
|
|
5354
|
-
* @public
|
|
5355
|
-
* @enum
|
|
5356
|
-
*/
|
|
5357
|
-
export declare const SoftwareDeploymentStatus: {
|
|
5358
|
-
readonly FAILED_TO_INSTALL: "FAILED_TO_INSTALL";
|
|
5359
|
-
readonly FAILED_TO_UNINSTALL: "FAILED_TO_UNINSTALL";
|
|
5360
|
-
readonly INSTALLED: "INSTALLED";
|
|
5361
|
-
readonly PENDING_INSTALLATION: "PENDING_INSTALLATION";
|
|
5362
|
-
readonly PENDING_UNINSTALLATION: "PENDING_UNINSTALLATION";
|
|
5363
|
-
readonly STAGED_FOR_INSTALLATION: "STAGED_FOR_INSTALLATION";
|
|
5364
|
-
readonly STAGED_FOR_UNINSTALLATION: "STAGED_FOR_UNINSTALLATION";
|
|
5365
|
-
};
|
|
5366
|
-
/**
|
|
5367
|
-
* @public
|
|
5368
|
-
*/
|
|
5369
|
-
export type SoftwareDeploymentStatus = (typeof SoftwareDeploymentStatus)[keyof typeof SoftwareDeploymentStatus];
|
|
5370
4555
|
/**
|
|
5371
4556
|
* <p>The association between a license-included application and a resource.</p>
|
|
5372
4557
|
* @public
|
|
@@ -5562,19 +4747,6 @@ export interface DescribeUsageReportSubscriptionsRequest {
|
|
|
5562
4747
|
*/
|
|
5563
4748
|
NextToken?: string | undefined;
|
|
5564
4749
|
}
|
|
5565
|
-
/**
|
|
5566
|
-
* @public
|
|
5567
|
-
* @enum
|
|
5568
|
-
*/
|
|
5569
|
-
export declare const UsageReportExecutionErrorCode: {
|
|
5570
|
-
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
5571
|
-
readonly INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR";
|
|
5572
|
-
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
5573
|
-
};
|
|
5574
|
-
/**
|
|
5575
|
-
* @public
|
|
5576
|
-
*/
|
|
5577
|
-
export type UsageReportExecutionErrorCode = (typeof UsageReportExecutionErrorCode)[keyof typeof UsageReportExecutionErrorCode];
|
|
5578
4750
|
/**
|
|
5579
4751
|
* <p>Describes the error that is returned when a usage report can't be generated.</p>
|
|
5580
4752
|
* @public
|
|
@@ -6054,24 +5226,6 @@ export interface Filter {
|
|
|
6054
5226
|
*/
|
|
6055
5227
|
Values: string[] | undefined;
|
|
6056
5228
|
}
|
|
6057
|
-
/**
|
|
6058
|
-
* @public
|
|
6059
|
-
* @enum
|
|
6060
|
-
*/
|
|
6061
|
-
export declare const FleetAttribute: {
|
|
6062
|
-
readonly DOMAIN_JOIN_INFO: "DOMAIN_JOIN_INFO";
|
|
6063
|
-
readonly IAM_ROLE_ARN: "IAM_ROLE_ARN";
|
|
6064
|
-
readonly MAX_SESSIONS_PER_INSTANCE: "MAX_SESSIONS_PER_INSTANCE";
|
|
6065
|
-
readonly SESSION_SCRIPT_S3_LOCATION: "SESSION_SCRIPT_S3_LOCATION";
|
|
6066
|
-
readonly USB_DEVICE_FILTER_STRINGS: "USB_DEVICE_FILTER_STRINGS";
|
|
6067
|
-
readonly VOLUME_CONFIGURATION: "VOLUME_CONFIGURATION";
|
|
6068
|
-
readonly VPC_CONFIGURATION: "VPC_CONFIGURATION";
|
|
6069
|
-
readonly VPC_CONFIGURATION_SECURITY_GROUP_IDS: "VPC_CONFIGURATION_SECURITY_GROUP_IDS";
|
|
6070
|
-
};
|
|
6071
|
-
/**
|
|
6072
|
-
* @public
|
|
6073
|
-
*/
|
|
6074
|
-
export type FleetAttribute = (typeof FleetAttribute)[keyof typeof FleetAttribute];
|
|
6075
5229
|
/**
|
|
6076
5230
|
* @public
|
|
6077
5231
|
*/
|
|
@@ -7008,28 +6162,6 @@ export interface UpdateImagePermissionsRequest {
|
|
|
7008
6162
|
*/
|
|
7009
6163
|
export interface UpdateImagePermissionsResult {
|
|
7010
6164
|
}
|
|
7011
|
-
/**
|
|
7012
|
-
* @public
|
|
7013
|
-
* @enum
|
|
7014
|
-
*/
|
|
7015
|
-
export declare const StackAttribute: {
|
|
7016
|
-
readonly ACCESS_ENDPOINTS: "ACCESS_ENDPOINTS";
|
|
7017
|
-
readonly EMBED_HOST_DOMAINS: "EMBED_HOST_DOMAINS";
|
|
7018
|
-
readonly FEEDBACK_URL: "FEEDBACK_URL";
|
|
7019
|
-
readonly IAM_ROLE_ARN: "IAM_ROLE_ARN";
|
|
7020
|
-
readonly REDIRECT_URL: "REDIRECT_URL";
|
|
7021
|
-
readonly STORAGE_CONNECTORS: "STORAGE_CONNECTORS";
|
|
7022
|
-
readonly STORAGE_CONNECTOR_GOOGLE_DRIVE: "STORAGE_CONNECTOR_GOOGLE_DRIVE";
|
|
7023
|
-
readonly STORAGE_CONNECTOR_HOMEFOLDERS: "STORAGE_CONNECTOR_HOMEFOLDERS";
|
|
7024
|
-
readonly STORAGE_CONNECTOR_ONE_DRIVE: "STORAGE_CONNECTOR_ONE_DRIVE";
|
|
7025
|
-
readonly STREAMING_EXPERIENCE_SETTINGS: "STREAMING_EXPERIENCE_SETTINGS";
|
|
7026
|
-
readonly THEME_NAME: "THEME_NAME";
|
|
7027
|
-
readonly USER_SETTINGS: "USER_SETTINGS";
|
|
7028
|
-
};
|
|
7029
|
-
/**
|
|
7030
|
-
* @public
|
|
7031
|
-
*/
|
|
7032
|
-
export type StackAttribute = (typeof StackAttribute)[keyof typeof StackAttribute];
|
|
7033
6165
|
/**
|
|
7034
6166
|
* @public
|
|
7035
6167
|
*/
|
|
@@ -7112,17 +6244,6 @@ export interface UpdateStackResult {
|
|
|
7112
6244
|
*/
|
|
7113
6245
|
Stack?: Stack | undefined;
|
|
7114
6246
|
}
|
|
7115
|
-
/**
|
|
7116
|
-
* @public
|
|
7117
|
-
* @enum
|
|
7118
|
-
*/
|
|
7119
|
-
export declare const ThemeAttribute: {
|
|
7120
|
-
readonly FOOTER_LINKS: "FOOTER_LINKS";
|
|
7121
|
-
};
|
|
7122
|
-
/**
|
|
7123
|
-
* @public
|
|
7124
|
-
*/
|
|
7125
|
-
export type ThemeAttribute = (typeof ThemeAttribute)[keyof typeof ThemeAttribute];
|
|
7126
6247
|
/**
|
|
7127
6248
|
* @public
|
|
7128
6249
|
*/
|