@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,25 +1,53 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import {
|
|
2
|
+
AccessEndpointType,
|
|
3
|
+
Action,
|
|
4
|
+
AgentSoftwareVersion,
|
|
5
|
+
AppBlockBuilderAttribute,
|
|
6
|
+
AppBlockBuilderPlatformType,
|
|
7
|
+
AppBlockBuilderState,
|
|
8
|
+
AppBlockBuilderStateChangeReasonCode,
|
|
9
|
+
AppBlockState,
|
|
10
|
+
ApplicationAttribute,
|
|
11
|
+
AppVisibility,
|
|
12
|
+
AuthenticationType,
|
|
13
|
+
CertificateBasedAuthStatus,
|
|
14
|
+
DynamicAppProvidersEnabled,
|
|
15
|
+
ExportImageTaskState,
|
|
16
|
+
FleetAttribute,
|
|
17
|
+
FleetErrorCode,
|
|
18
|
+
FleetState,
|
|
19
|
+
FleetType,
|
|
20
|
+
ImageBuilderState,
|
|
21
|
+
ImageBuilderStateChangeReasonCode,
|
|
22
|
+
ImageSharedWithOthers,
|
|
23
|
+
ImageState,
|
|
24
|
+
ImageStateChangeReasonCode,
|
|
25
|
+
ImageType,
|
|
26
|
+
LatestAppstreamAgentVersion,
|
|
27
|
+
MessageAction,
|
|
28
|
+
PackagingType,
|
|
29
|
+
Permission,
|
|
30
|
+
PlatformType,
|
|
31
|
+
PreferredProtocol,
|
|
32
|
+
SessionConnectionState,
|
|
33
|
+
SessionState,
|
|
34
|
+
SoftwareDeploymentStatus,
|
|
35
|
+
StackAttribute,
|
|
36
|
+
StackErrorCode,
|
|
37
|
+
StorageConnectorType,
|
|
38
|
+
StreamView,
|
|
39
|
+
ThemeAttribute,
|
|
40
|
+
ThemeState,
|
|
41
|
+
ThemeStyling,
|
|
42
|
+
UsageReportExecutionErrorCode,
|
|
43
|
+
UsageReportSchedule,
|
|
44
|
+
UserStackAssociationErrorCode,
|
|
45
|
+
VisibilityType,
|
|
46
|
+
} from "./enums";
|
|
8
47
|
export interface AccessEndpoint {
|
|
9
48
|
EndpointType: AccessEndpointType | undefined;
|
|
10
49
|
VpceId?: string | undefined;
|
|
11
50
|
}
|
|
12
|
-
export declare const Action: {
|
|
13
|
-
readonly AUTO_TIME_ZONE_REDIRECTION: "AUTO_TIME_ZONE_REDIRECTION";
|
|
14
|
-
readonly CLIPBOARD_COPY_FROM_LOCAL_DEVICE: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE";
|
|
15
|
-
readonly CLIPBOARD_COPY_TO_LOCAL_DEVICE: "CLIPBOARD_COPY_TO_LOCAL_DEVICE";
|
|
16
|
-
readonly DOMAIN_PASSWORD_SIGNIN: "DOMAIN_PASSWORD_SIGNIN";
|
|
17
|
-
readonly DOMAIN_SMART_CARD_SIGNIN: "DOMAIN_SMART_CARD_SIGNIN";
|
|
18
|
-
readonly FILE_DOWNLOAD: "FILE_DOWNLOAD";
|
|
19
|
-
readonly FILE_UPLOAD: "FILE_UPLOAD";
|
|
20
|
-
readonly PRINTING_TO_LOCAL_DEVICE: "PRINTING_TO_LOCAL_DEVICE";
|
|
21
|
-
};
|
|
22
|
-
export type Action = (typeof Action)[keyof typeof Action];
|
|
23
51
|
export interface AdminAppLicenseUsageRecord {
|
|
24
52
|
UserArn: string | undefined;
|
|
25
53
|
BillingPeriod: string | undefined;
|
|
@@ -29,21 +57,10 @@ export interface AdminAppLicenseUsageRecord {
|
|
|
29
57
|
LicenseType: string | undefined;
|
|
30
58
|
UserId: string | undefined;
|
|
31
59
|
}
|
|
32
|
-
export declare const AgentSoftwareVersion: {
|
|
33
|
-
readonly ALWAYS_LATEST: "ALWAYS_LATEST";
|
|
34
|
-
readonly CURRENT_LATEST: "CURRENT_LATEST";
|
|
35
|
-
};
|
|
36
|
-
export type AgentSoftwareVersion =
|
|
37
|
-
(typeof AgentSoftwareVersion)[keyof typeof AgentSoftwareVersion];
|
|
38
60
|
export interface ErrorDetails {
|
|
39
61
|
ErrorCode?: string | undefined;
|
|
40
62
|
ErrorMessage?: string | undefined;
|
|
41
63
|
}
|
|
42
|
-
export declare const PackagingType: {
|
|
43
|
-
readonly APPSTREAM2: "APPSTREAM2";
|
|
44
|
-
readonly CUSTOM: "CUSTOM";
|
|
45
|
-
};
|
|
46
|
-
export type PackagingType = (typeof PackagingType)[keyof typeof PackagingType];
|
|
47
64
|
export interface S3Location {
|
|
48
65
|
S3Bucket: string | undefined;
|
|
49
66
|
S3Key?: string | undefined;
|
|
@@ -54,11 +71,6 @@ export interface ScriptDetails {
|
|
|
54
71
|
ExecutableParameters?: string | undefined;
|
|
55
72
|
TimeoutInSeconds: number | undefined;
|
|
56
73
|
}
|
|
57
|
-
export declare const AppBlockState: {
|
|
58
|
-
readonly ACTIVE: "ACTIVE";
|
|
59
|
-
readonly INACTIVE: "INACTIVE";
|
|
60
|
-
};
|
|
61
|
-
export type AppBlockState = (typeof AppBlockState)[keyof typeof AppBlockState];
|
|
62
74
|
export interface AppBlock {
|
|
63
75
|
Name: string | undefined;
|
|
64
76
|
Arn: string | undefined;
|
|
@@ -72,64 +84,11 @@ export interface AppBlock {
|
|
|
72
84
|
State?: AppBlockState | undefined;
|
|
73
85
|
AppBlockErrors?: ErrorDetails[] | undefined;
|
|
74
86
|
}
|
|
75
|
-
export declare const FleetErrorCode: {
|
|
76
|
-
readonly DOMAIN_JOIN_ERROR_ACCESS_DENIED: "DOMAIN_JOIN_ERROR_ACCESS_DENIED";
|
|
77
|
-
readonly DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED: "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED";
|
|
78
|
-
readonly DOMAIN_JOIN_ERROR_FILE_NOT_FOUND: "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND";
|
|
79
|
-
readonly DOMAIN_JOIN_ERROR_INVALID_PARAMETER: "DOMAIN_JOIN_ERROR_INVALID_PARAMETER";
|
|
80
|
-
readonly DOMAIN_JOIN_ERROR_LOGON_FAILURE: "DOMAIN_JOIN_ERROR_LOGON_FAILURE";
|
|
81
|
-
readonly DOMAIN_JOIN_ERROR_MORE_DATA: "DOMAIN_JOIN_ERROR_MORE_DATA";
|
|
82
|
-
readonly DOMAIN_JOIN_ERROR_NOT_SUPPORTED: "DOMAIN_JOIN_ERROR_NOT_SUPPORTED";
|
|
83
|
-
readonly DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN: "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN";
|
|
84
|
-
readonly DOMAIN_JOIN_INTERNAL_SERVICE_ERROR: "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR";
|
|
85
|
-
readonly DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME: "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME";
|
|
86
|
-
readonly DOMAIN_JOIN_NERR_PASSWORD_EXPIRED: "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED";
|
|
87
|
-
readonly DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED: "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED";
|
|
88
|
-
readonly FLEET_INSTANCE_PROVISIONING_FAILURE: "FLEET_INSTANCE_PROVISIONING_FAILURE";
|
|
89
|
-
readonly FLEET_STOPPED: "FLEET_STOPPED";
|
|
90
|
-
readonly IAM_SERVICE_ROLE_IS_MISSING: "IAM_SERVICE_ROLE_IS_MISSING";
|
|
91
|
-
readonly IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION: "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION";
|
|
92
|
-
readonly IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION: "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION";
|
|
93
|
-
readonly IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION: "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION";
|
|
94
|
-
readonly IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION: "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION";
|
|
95
|
-
readonly IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION";
|
|
96
|
-
readonly IGW_NOT_ATTACHED: "IGW_NOT_ATTACHED";
|
|
97
|
-
readonly IMAGE_NOT_FOUND: "IMAGE_NOT_FOUND";
|
|
98
|
-
readonly INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR";
|
|
99
|
-
readonly INVALID_SUBNET_CONFIGURATION: "INVALID_SUBNET_CONFIGURATION";
|
|
100
|
-
readonly MACHINE_ROLE_IS_MISSING: "MACHINE_ROLE_IS_MISSING";
|
|
101
|
-
readonly NETWORK_INTERFACE_LIMIT_EXCEEDED: "NETWORK_INTERFACE_LIMIT_EXCEEDED";
|
|
102
|
-
readonly SECURITY_GROUPS_NOT_FOUND: "SECURITY_GROUPS_NOT_FOUND";
|
|
103
|
-
readonly STS_DISABLED_IN_REGION: "STS_DISABLED_IN_REGION";
|
|
104
|
-
readonly SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES: "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES";
|
|
105
|
-
readonly SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND";
|
|
106
|
-
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
107
|
-
};
|
|
108
|
-
export type FleetErrorCode =
|
|
109
|
-
(typeof FleetErrorCode)[keyof typeof FleetErrorCode];
|
|
110
87
|
export interface ResourceError {
|
|
111
88
|
ErrorCode?: FleetErrorCode | undefined;
|
|
112
89
|
ErrorMessage?: string | undefined;
|
|
113
90
|
ErrorTimestamp?: Date | undefined;
|
|
114
91
|
}
|
|
115
|
-
export declare const AppBlockBuilderPlatformType: {
|
|
116
|
-
readonly WINDOWS_SERVER_2019: "WINDOWS_SERVER_2019";
|
|
117
|
-
};
|
|
118
|
-
export type AppBlockBuilderPlatformType =
|
|
119
|
-
(typeof AppBlockBuilderPlatformType)[keyof typeof AppBlockBuilderPlatformType];
|
|
120
|
-
export declare const AppBlockBuilderState: {
|
|
121
|
-
readonly RUNNING: "RUNNING";
|
|
122
|
-
readonly STARTING: "STARTING";
|
|
123
|
-
readonly STOPPED: "STOPPED";
|
|
124
|
-
readonly STOPPING: "STOPPING";
|
|
125
|
-
};
|
|
126
|
-
export type AppBlockBuilderState =
|
|
127
|
-
(typeof AppBlockBuilderState)[keyof typeof AppBlockBuilderState];
|
|
128
|
-
export declare const AppBlockBuilderStateChangeReasonCode: {
|
|
129
|
-
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
130
|
-
};
|
|
131
|
-
export type AppBlockBuilderStateChangeReasonCode =
|
|
132
|
-
(typeof AppBlockBuilderStateChangeReasonCode)[keyof typeof AppBlockBuilderStateChangeReasonCode];
|
|
133
92
|
export interface AppBlockBuilderStateChangeReason {
|
|
134
93
|
Code?: AppBlockBuilderStateChangeReasonCode | undefined;
|
|
135
94
|
Message?: string | undefined;
|
|
@@ -158,13 +117,6 @@ export interface AppBlockBuilderAppBlockAssociation {
|
|
|
158
117
|
AppBlockArn: string | undefined;
|
|
159
118
|
AppBlockBuilderName: string | undefined;
|
|
160
119
|
}
|
|
161
|
-
export declare const AppBlockBuilderAttribute: {
|
|
162
|
-
readonly ACCESS_ENDPOINTS: "ACCESS_ENDPOINTS";
|
|
163
|
-
readonly IAM_ROLE_ARN: "IAM_ROLE_ARN";
|
|
164
|
-
readonly VPC_CONFIGURATION_SECURITY_GROUP_IDS: "VPC_CONFIGURATION_SECURITY_GROUP_IDS";
|
|
165
|
-
};
|
|
166
|
-
export type AppBlockBuilderAttribute =
|
|
167
|
-
(typeof AppBlockBuilderAttribute)[keyof typeof AppBlockBuilderAttribute];
|
|
168
120
|
export interface ApplicationConfig {
|
|
169
121
|
Name: string | undefined;
|
|
170
122
|
DisplayName?: string | undefined;
|
|
@@ -174,16 +126,6 @@ export interface ApplicationConfig {
|
|
|
174
126
|
WorkingDirectory?: string | undefined;
|
|
175
127
|
LaunchParameters?: string | undefined;
|
|
176
128
|
}
|
|
177
|
-
export declare const PlatformType: {
|
|
178
|
-
readonly AMAZON_LINUX2: "AMAZON_LINUX2";
|
|
179
|
-
readonly RHEL8: "RHEL8";
|
|
180
|
-
readonly ROCKY_LINUX8: "ROCKY_LINUX8";
|
|
181
|
-
readonly WINDOWS: "WINDOWS";
|
|
182
|
-
readonly WINDOWS_SERVER_2016: "WINDOWS_SERVER_2016";
|
|
183
|
-
readonly WINDOWS_SERVER_2019: "WINDOWS_SERVER_2019";
|
|
184
|
-
readonly WINDOWS_SERVER_2022: "WINDOWS_SERVER_2022";
|
|
185
|
-
};
|
|
186
|
-
export type PlatformType = (typeof PlatformType)[keyof typeof PlatformType];
|
|
187
129
|
export interface Application {
|
|
188
130
|
Name?: string | undefined;
|
|
189
131
|
DisplayName?: string | undefined;
|
|
@@ -201,12 +143,6 @@ export interface Application {
|
|
|
201
143
|
InstanceFamilies?: string[] | undefined;
|
|
202
144
|
CreatedTime?: Date | undefined;
|
|
203
145
|
}
|
|
204
|
-
export declare const ApplicationAttribute: {
|
|
205
|
-
readonly LAUNCH_PARAMETERS: "LAUNCH_PARAMETERS";
|
|
206
|
-
readonly WORKING_DIRECTORY: "WORKING_DIRECTORY";
|
|
207
|
-
};
|
|
208
|
-
export type ApplicationAttribute =
|
|
209
|
-
(typeof ApplicationAttribute)[keyof typeof ApplicationAttribute];
|
|
210
146
|
export interface ApplicationFleetAssociation {
|
|
211
147
|
FleetName: string | undefined;
|
|
212
148
|
ApplicationArn: string | undefined;
|
|
@@ -220,11 +156,6 @@ export interface ApplicationSettingsResponse {
|
|
|
220
156
|
SettingsGroup?: string | undefined;
|
|
221
157
|
S3BucketName?: string | undefined;
|
|
222
158
|
}
|
|
223
|
-
export declare const AppVisibility: {
|
|
224
|
-
readonly ALL: "ALL";
|
|
225
|
-
readonly ASSOCIATED: "ASSOCIATED";
|
|
226
|
-
};
|
|
227
|
-
export type AppVisibility = (typeof AppVisibility)[keyof typeof AppVisibility];
|
|
228
159
|
export interface AssociateAppBlockBuilderAppBlockRequest {
|
|
229
160
|
AppBlockArn: string | undefined;
|
|
230
161
|
AppBlockBuilderName: string | undefined;
|
|
@@ -234,52 +165,6 @@ export interface AssociateAppBlockBuilderAppBlockResult {
|
|
|
234
165
|
| AppBlockBuilderAppBlockAssociation
|
|
235
166
|
| undefined;
|
|
236
167
|
}
|
|
237
|
-
export declare class ConcurrentModificationException extends __BaseException {
|
|
238
|
-
readonly name: "ConcurrentModificationException";
|
|
239
|
-
readonly $fault: "client";
|
|
240
|
-
Message?: string | undefined;
|
|
241
|
-
constructor(
|
|
242
|
-
opts: __ExceptionOptionType<
|
|
243
|
-
ConcurrentModificationException,
|
|
244
|
-
__BaseException
|
|
245
|
-
>
|
|
246
|
-
);
|
|
247
|
-
}
|
|
248
|
-
export declare class InvalidParameterCombinationException extends __BaseException {
|
|
249
|
-
readonly name: "InvalidParameterCombinationException";
|
|
250
|
-
readonly $fault: "client";
|
|
251
|
-
Message?: string | undefined;
|
|
252
|
-
constructor(
|
|
253
|
-
opts: __ExceptionOptionType<
|
|
254
|
-
InvalidParameterCombinationException,
|
|
255
|
-
__BaseException
|
|
256
|
-
>
|
|
257
|
-
);
|
|
258
|
-
}
|
|
259
|
-
export declare class LimitExceededException extends __BaseException {
|
|
260
|
-
readonly name: "LimitExceededException";
|
|
261
|
-
readonly $fault: "client";
|
|
262
|
-
Message?: string | undefined;
|
|
263
|
-
constructor(
|
|
264
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
265
|
-
);
|
|
266
|
-
}
|
|
267
|
-
export declare class OperationNotPermittedException extends __BaseException {
|
|
268
|
-
readonly name: "OperationNotPermittedException";
|
|
269
|
-
readonly $fault: "client";
|
|
270
|
-
Message?: string | undefined;
|
|
271
|
-
constructor(
|
|
272
|
-
opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>
|
|
273
|
-
);
|
|
274
|
-
}
|
|
275
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
276
|
-
readonly name: "ResourceNotFoundException";
|
|
277
|
-
readonly $fault: "client";
|
|
278
|
-
Message?: string | undefined;
|
|
279
|
-
constructor(
|
|
280
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
281
|
-
);
|
|
282
|
-
}
|
|
283
168
|
export interface AssociateApplicationFleetRequest {
|
|
284
169
|
FleetName: string | undefined;
|
|
285
170
|
ApplicationArn: string | undefined;
|
|
@@ -293,48 +178,16 @@ export interface AssociateApplicationToEntitlementRequest {
|
|
|
293
178
|
ApplicationIdentifier: string | undefined;
|
|
294
179
|
}
|
|
295
180
|
export interface AssociateApplicationToEntitlementResult {}
|
|
296
|
-
export declare class EntitlementNotFoundException extends __BaseException {
|
|
297
|
-
readonly name: "EntitlementNotFoundException";
|
|
298
|
-
readonly $fault: "client";
|
|
299
|
-
Message?: string | undefined;
|
|
300
|
-
constructor(
|
|
301
|
-
opts: __ExceptionOptionType<EntitlementNotFoundException, __BaseException>
|
|
302
|
-
);
|
|
303
|
-
}
|
|
304
181
|
export interface AssociateFleetRequest {
|
|
305
182
|
FleetName: string | undefined;
|
|
306
183
|
StackName: string | undefined;
|
|
307
184
|
}
|
|
308
185
|
export interface AssociateFleetResult {}
|
|
309
|
-
export declare class IncompatibleImageException extends __BaseException {
|
|
310
|
-
readonly name: "IncompatibleImageException";
|
|
311
|
-
readonly $fault: "client";
|
|
312
|
-
Message?: string | undefined;
|
|
313
|
-
constructor(
|
|
314
|
-
opts: __ExceptionOptionType<IncompatibleImageException, __BaseException>
|
|
315
|
-
);
|
|
316
|
-
}
|
|
317
|
-
export declare class InvalidAccountStatusException extends __BaseException {
|
|
318
|
-
readonly name: "InvalidAccountStatusException";
|
|
319
|
-
readonly $fault: "client";
|
|
320
|
-
Message?: string | undefined;
|
|
321
|
-
constructor(
|
|
322
|
-
opts: __ExceptionOptionType<InvalidAccountStatusException, __BaseException>
|
|
323
|
-
);
|
|
324
|
-
}
|
|
325
186
|
export interface AssociateSoftwareToImageBuilderRequest {
|
|
326
187
|
ImageBuilderName: string | undefined;
|
|
327
188
|
SoftwareNames: string[] | undefined;
|
|
328
189
|
}
|
|
329
190
|
export interface AssociateSoftwareToImageBuilderResult {}
|
|
330
|
-
export declare const AuthenticationType: {
|
|
331
|
-
readonly API: "API";
|
|
332
|
-
readonly AWS_AD: "AWS_AD";
|
|
333
|
-
readonly SAML: "SAML";
|
|
334
|
-
readonly USERPOOL: "USERPOOL";
|
|
335
|
-
};
|
|
336
|
-
export type AuthenticationType =
|
|
337
|
-
(typeof AuthenticationType)[keyof typeof AuthenticationType];
|
|
338
191
|
export interface UserStackAssociation {
|
|
339
192
|
StackName: string | undefined;
|
|
340
193
|
UserName: string | undefined;
|
|
@@ -344,14 +197,6 @@ export interface UserStackAssociation {
|
|
|
344
197
|
export interface BatchAssociateUserStackRequest {
|
|
345
198
|
UserStackAssociations: UserStackAssociation[] | undefined;
|
|
346
199
|
}
|
|
347
|
-
export declare const UserStackAssociationErrorCode: {
|
|
348
|
-
readonly DIRECTORY_NOT_FOUND: "DIRECTORY_NOT_FOUND";
|
|
349
|
-
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
350
|
-
readonly STACK_NOT_FOUND: "STACK_NOT_FOUND";
|
|
351
|
-
readonly USER_NAME_NOT_FOUND: "USER_NAME_NOT_FOUND";
|
|
352
|
-
};
|
|
353
|
-
export type UserStackAssociationErrorCode =
|
|
354
|
-
(typeof UserStackAssociationErrorCode)[keyof typeof UserStackAssociationErrorCode];
|
|
355
200
|
export interface UserStackAssociationError {
|
|
356
201
|
UserStackAssociation?: UserStackAssociation | undefined;
|
|
357
202
|
ErrorCode?: UserStackAssociationErrorCode | undefined;
|
|
@@ -366,13 +211,6 @@ export interface BatchDisassociateUserStackRequest {
|
|
|
366
211
|
export interface BatchDisassociateUserStackResult {
|
|
367
212
|
errors?: UserStackAssociationError[] | undefined;
|
|
368
213
|
}
|
|
369
|
-
export declare const CertificateBasedAuthStatus: {
|
|
370
|
-
readonly DISABLED: "DISABLED";
|
|
371
|
-
readonly ENABLED: "ENABLED";
|
|
372
|
-
readonly ENABLED_NO_DIRECTORY_LOGIN_FALLBACK: "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK";
|
|
373
|
-
};
|
|
374
|
-
export type CertificateBasedAuthStatus =
|
|
375
|
-
(typeof CertificateBasedAuthStatus)[keyof typeof CertificateBasedAuthStatus];
|
|
376
214
|
export interface CertificateBasedAuthProperties {
|
|
377
215
|
Status?: CertificateBasedAuthStatus | undefined;
|
|
378
216
|
CertificateAuthorityArn?: string | undefined;
|
|
@@ -400,22 +238,6 @@ export interface CopyImageRequest {
|
|
|
400
238
|
export interface CopyImageResponse {
|
|
401
239
|
DestinationImageName?: string | undefined;
|
|
402
240
|
}
|
|
403
|
-
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
404
|
-
readonly name: "ResourceAlreadyExistsException";
|
|
405
|
-
readonly $fault: "client";
|
|
406
|
-
Message?: string | undefined;
|
|
407
|
-
constructor(
|
|
408
|
-
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
409
|
-
);
|
|
410
|
-
}
|
|
411
|
-
export declare class ResourceNotAvailableException extends __BaseException {
|
|
412
|
-
readonly name: "ResourceNotAvailableException";
|
|
413
|
-
readonly $fault: "client";
|
|
414
|
-
Message?: string | undefined;
|
|
415
|
-
constructor(
|
|
416
|
-
opts: __ExceptionOptionType<ResourceNotAvailableException, __BaseException>
|
|
417
|
-
);
|
|
418
|
-
}
|
|
419
241
|
export interface CreateAppBlockRequest {
|
|
420
242
|
Name: string | undefined;
|
|
421
243
|
Description?: string | undefined;
|
|
@@ -444,22 +266,6 @@ export interface CreateAppBlockBuilderRequest {
|
|
|
444
266
|
export interface CreateAppBlockBuilderResult {
|
|
445
267
|
AppBlockBuilder?: AppBlockBuilder | undefined;
|
|
446
268
|
}
|
|
447
|
-
export declare class InvalidRoleException extends __BaseException {
|
|
448
|
-
readonly name: "InvalidRoleException";
|
|
449
|
-
readonly $fault: "client";
|
|
450
|
-
Message?: string | undefined;
|
|
451
|
-
constructor(
|
|
452
|
-
opts: __ExceptionOptionType<InvalidRoleException, __BaseException>
|
|
453
|
-
);
|
|
454
|
-
}
|
|
455
|
-
export declare class RequestLimitExceededException extends __BaseException {
|
|
456
|
-
readonly name: "RequestLimitExceededException";
|
|
457
|
-
readonly $fault: "client";
|
|
458
|
-
Message?: string | undefined;
|
|
459
|
-
constructor(
|
|
460
|
-
opts: __ExceptionOptionType<RequestLimitExceededException, __BaseException>
|
|
461
|
-
);
|
|
462
|
-
}
|
|
463
269
|
export interface CreateAppBlockBuilderStreamingURLRequest {
|
|
464
270
|
AppBlockBuilderName: string | undefined;
|
|
465
271
|
Validity?: number | undefined;
|
|
@@ -527,17 +333,6 @@ export interface Entitlement {
|
|
|
527
333
|
export interface CreateEntitlementResult {
|
|
528
334
|
Entitlement?: Entitlement | undefined;
|
|
529
335
|
}
|
|
530
|
-
export declare class EntitlementAlreadyExistsException extends __BaseException {
|
|
531
|
-
readonly name: "EntitlementAlreadyExistsException";
|
|
532
|
-
readonly $fault: "client";
|
|
533
|
-
Message?: string | undefined;
|
|
534
|
-
constructor(
|
|
535
|
-
opts: __ExceptionOptionType<
|
|
536
|
-
EntitlementAlreadyExistsException,
|
|
537
|
-
__BaseException
|
|
538
|
-
>
|
|
539
|
-
);
|
|
540
|
-
}
|
|
541
336
|
export interface CreateExportImageTaskRequest {
|
|
542
337
|
ImageName: string | undefined;
|
|
543
338
|
AmiName: string | undefined;
|
|
@@ -545,13 +340,6 @@ export interface CreateExportImageTaskRequest {
|
|
|
545
340
|
TagSpecifications?: Record<string, string> | undefined;
|
|
546
341
|
AmiDescription?: string | undefined;
|
|
547
342
|
}
|
|
548
|
-
export declare const ExportImageTaskState: {
|
|
549
|
-
readonly COMPLETED: "COMPLETED";
|
|
550
|
-
readonly EXPORTING: "EXPORTING";
|
|
551
|
-
readonly FAILED: "FAILED";
|
|
552
|
-
};
|
|
553
|
-
export type ExportImageTaskState =
|
|
554
|
-
(typeof ExportImageTaskState)[keyof typeof ExportImageTaskState];
|
|
555
343
|
export interface ExportImageTask {
|
|
556
344
|
TaskId: string | undefined;
|
|
557
345
|
ImageArn: string | undefined;
|
|
@@ -570,20 +358,9 @@ export interface DomainJoinInfo {
|
|
|
570
358
|
DirectoryName?: string | undefined;
|
|
571
359
|
OrganizationalUnitDistinguishedName?: string | undefined;
|
|
572
360
|
}
|
|
573
|
-
export declare const FleetType: {
|
|
574
|
-
readonly ALWAYS_ON: "ALWAYS_ON";
|
|
575
|
-
readonly ELASTIC: "ELASTIC";
|
|
576
|
-
readonly ON_DEMAND: "ON_DEMAND";
|
|
577
|
-
};
|
|
578
|
-
export type FleetType = (typeof FleetType)[keyof typeof FleetType];
|
|
579
361
|
export interface VolumeConfig {
|
|
580
362
|
VolumeSizeInGb?: number | undefined;
|
|
581
363
|
}
|
|
582
|
-
export declare const StreamView: {
|
|
583
|
-
readonly APP: "APP";
|
|
584
|
-
readonly DESKTOP: "DESKTOP";
|
|
585
|
-
};
|
|
586
|
-
export type StreamView = (typeof StreamView)[keyof typeof StreamView];
|
|
587
364
|
export interface CreateFleetRequest {
|
|
588
365
|
Name: string | undefined;
|
|
589
366
|
ImageName?: string | undefined;
|
|
@@ -613,13 +390,6 @@ export interface FleetError {
|
|
|
613
390
|
ErrorCode?: FleetErrorCode | undefined;
|
|
614
391
|
ErrorMessage?: string | undefined;
|
|
615
392
|
}
|
|
616
|
-
export declare const FleetState: {
|
|
617
|
-
readonly RUNNING: "RUNNING";
|
|
618
|
-
readonly STARTING: "STARTING";
|
|
619
|
-
readonly STOPPED: "STOPPED";
|
|
620
|
-
readonly STOPPING: "STOPPING";
|
|
621
|
-
};
|
|
622
|
-
export type FleetState = (typeof FleetState)[keyof typeof FleetState];
|
|
623
393
|
export interface Fleet {
|
|
624
394
|
Arn: string | undefined;
|
|
625
395
|
Name: string | undefined;
|
|
@@ -669,41 +439,11 @@ export interface CreateImageBuilderRequest {
|
|
|
669
439
|
SoftwaresToInstall?: string[] | undefined;
|
|
670
440
|
SoftwaresToUninstall?: string[] | undefined;
|
|
671
441
|
}
|
|
672
|
-
export declare const LatestAppstreamAgentVersion: {
|
|
673
|
-
readonly FALSE: "FALSE";
|
|
674
|
-
readonly TRUE: "TRUE";
|
|
675
|
-
};
|
|
676
|
-
export type LatestAppstreamAgentVersion =
|
|
677
|
-
(typeof LatestAppstreamAgentVersion)[keyof typeof LatestAppstreamAgentVersion];
|
|
678
442
|
export interface NetworkAccessConfiguration {
|
|
679
443
|
EniPrivateIpAddress?: string | undefined;
|
|
680
444
|
EniIpv6Addresses?: string[] | undefined;
|
|
681
445
|
EniId?: string | undefined;
|
|
682
446
|
}
|
|
683
|
-
export declare const ImageBuilderState: {
|
|
684
|
-
readonly DELETING: "DELETING";
|
|
685
|
-
readonly FAILED: "FAILED";
|
|
686
|
-
readonly PENDING: "PENDING";
|
|
687
|
-
readonly PENDING_IMAGE_IMPORT: "PENDING_IMAGE_IMPORT";
|
|
688
|
-
readonly PENDING_QUALIFICATION: "PENDING_QUALIFICATION";
|
|
689
|
-
readonly PENDING_SYNCING_APPS: "PENDING_SYNCING_APPS";
|
|
690
|
-
readonly REBOOTING: "REBOOTING";
|
|
691
|
-
readonly RUNNING: "RUNNING";
|
|
692
|
-
readonly SNAPSHOTTING: "SNAPSHOTTING";
|
|
693
|
-
readonly STOPPED: "STOPPED";
|
|
694
|
-
readonly STOPPING: "STOPPING";
|
|
695
|
-
readonly SYNCING_APPS: "SYNCING_APPS";
|
|
696
|
-
readonly UPDATING: "UPDATING";
|
|
697
|
-
readonly UPDATING_AGENT: "UPDATING_AGENT";
|
|
698
|
-
};
|
|
699
|
-
export type ImageBuilderState =
|
|
700
|
-
(typeof ImageBuilderState)[keyof typeof ImageBuilderState];
|
|
701
|
-
export declare const ImageBuilderStateChangeReasonCode: {
|
|
702
|
-
readonly IMAGE_UNAVAILABLE: "IMAGE_UNAVAILABLE";
|
|
703
|
-
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
704
|
-
};
|
|
705
|
-
export type ImageBuilderStateChangeReasonCode =
|
|
706
|
-
(typeof ImageBuilderStateChangeReasonCode)[keyof typeof ImageBuilderStateChangeReasonCode];
|
|
707
447
|
export interface ImageBuilderStateChangeReason {
|
|
708
448
|
Code?: ImageBuilderStateChangeReasonCode | undefined;
|
|
709
449
|
Message?: string | undefined;
|
|
@@ -756,58 +496,14 @@ export interface CreateImportedImageRequest {
|
|
|
756
496
|
AppCatalogConfig?: ApplicationConfig[] | undefined;
|
|
757
497
|
DryRun?: boolean | undefined;
|
|
758
498
|
}
|
|
759
|
-
export declare const DynamicAppProvidersEnabled: {
|
|
760
|
-
readonly DISABLED: "DISABLED";
|
|
761
|
-
readonly ENABLED: "ENABLED";
|
|
762
|
-
};
|
|
763
|
-
export type DynamicAppProvidersEnabled =
|
|
764
|
-
(typeof DynamicAppProvidersEnabled)[keyof typeof DynamicAppProvidersEnabled];
|
|
765
499
|
export interface ImagePermissions {
|
|
766
500
|
allowFleet?: boolean | undefined;
|
|
767
501
|
allowImageBuilder?: boolean | undefined;
|
|
768
502
|
}
|
|
769
|
-
export declare const ImageSharedWithOthers: {
|
|
770
|
-
readonly FALSE: "FALSE";
|
|
771
|
-
readonly TRUE: "TRUE";
|
|
772
|
-
};
|
|
773
|
-
export type ImageSharedWithOthers =
|
|
774
|
-
(typeof ImageSharedWithOthers)[keyof typeof ImageSharedWithOthers];
|
|
775
|
-
export declare const ImageType: {
|
|
776
|
-
readonly CUSTOM: "CUSTOM";
|
|
777
|
-
readonly NATIVE: "NATIVE";
|
|
778
|
-
};
|
|
779
|
-
export type ImageType = (typeof ImageType)[keyof typeof ImageType];
|
|
780
|
-
export declare const ImageState: {
|
|
781
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
782
|
-
readonly COPYING: "COPYING";
|
|
783
|
-
readonly CREATING: "CREATING";
|
|
784
|
-
readonly DELETING: "DELETING";
|
|
785
|
-
readonly FAILED: "FAILED";
|
|
786
|
-
readonly IMPORTING: "IMPORTING";
|
|
787
|
-
readonly PENDING: "PENDING";
|
|
788
|
-
readonly VALIDATING: "VALIDATING";
|
|
789
|
-
};
|
|
790
|
-
export type ImageState = (typeof ImageState)[keyof typeof ImageState];
|
|
791
|
-
export declare const ImageStateChangeReasonCode: {
|
|
792
|
-
readonly IMAGE_BUILDER_NOT_AVAILABLE: "IMAGE_BUILDER_NOT_AVAILABLE";
|
|
793
|
-
readonly IMAGE_COPY_FAILURE: "IMAGE_COPY_FAILURE";
|
|
794
|
-
readonly IMAGE_IMPORT_FAILURE: "IMAGE_IMPORT_FAILURE";
|
|
795
|
-
readonly IMAGE_UPDATE_FAILURE: "IMAGE_UPDATE_FAILURE";
|
|
796
|
-
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
797
|
-
};
|
|
798
|
-
export type ImageStateChangeReasonCode =
|
|
799
|
-
(typeof ImageStateChangeReasonCode)[keyof typeof ImageStateChangeReasonCode];
|
|
800
503
|
export interface ImageStateChangeReason {
|
|
801
504
|
Code?: ImageStateChangeReasonCode | undefined;
|
|
802
505
|
Message?: string | undefined;
|
|
803
506
|
}
|
|
804
|
-
export declare const VisibilityType: {
|
|
805
|
-
readonly PRIVATE: "PRIVATE";
|
|
806
|
-
readonly PUBLIC: "PUBLIC";
|
|
807
|
-
readonly SHARED: "SHARED";
|
|
808
|
-
};
|
|
809
|
-
export type VisibilityType =
|
|
810
|
-
(typeof VisibilityType)[keyof typeof VisibilityType];
|
|
811
507
|
export interface Image {
|
|
812
508
|
Name: string | undefined;
|
|
813
509
|
Arn?: string | undefined;
|
|
@@ -836,41 +532,15 @@ export interface Image {
|
|
|
836
532
|
export interface CreateImportedImageResult {
|
|
837
533
|
Image?: Image | undefined;
|
|
838
534
|
}
|
|
839
|
-
export declare class DryRunOperationException extends __BaseException {
|
|
840
|
-
readonly name: "DryRunOperationException";
|
|
841
|
-
readonly $fault: "client";
|
|
842
|
-
Message?: string | undefined;
|
|
843
|
-
constructor(
|
|
844
|
-
opts: __ExceptionOptionType<DryRunOperationException, __BaseException>
|
|
845
|
-
);
|
|
846
|
-
}
|
|
847
|
-
export declare const StorageConnectorType: {
|
|
848
|
-
readonly GOOGLE_DRIVE: "GOOGLE_DRIVE";
|
|
849
|
-
readonly HOMEFOLDERS: "HOMEFOLDERS";
|
|
850
|
-
readonly ONE_DRIVE: "ONE_DRIVE";
|
|
851
|
-
};
|
|
852
|
-
export type StorageConnectorType =
|
|
853
|
-
(typeof StorageConnectorType)[keyof typeof StorageConnectorType];
|
|
854
535
|
export interface StorageConnector {
|
|
855
536
|
ConnectorType: StorageConnectorType | undefined;
|
|
856
537
|
ResourceIdentifier?: string | undefined;
|
|
857
538
|
Domains?: string[] | undefined;
|
|
858
539
|
DomainsRequireAdminConsent?: string[] | undefined;
|
|
859
540
|
}
|
|
860
|
-
export declare const PreferredProtocol: {
|
|
861
|
-
readonly TCP: "TCP";
|
|
862
|
-
readonly UDP: "UDP";
|
|
863
|
-
};
|
|
864
|
-
export type PreferredProtocol =
|
|
865
|
-
(typeof PreferredProtocol)[keyof typeof PreferredProtocol];
|
|
866
541
|
export interface StreamingExperienceSettings {
|
|
867
542
|
PreferredProtocol?: PreferredProtocol | undefined;
|
|
868
543
|
}
|
|
869
|
-
export declare const Permission: {
|
|
870
|
-
readonly DISABLED: "DISABLED";
|
|
871
|
-
readonly ENABLED: "ENABLED";
|
|
872
|
-
};
|
|
873
|
-
export type Permission = (typeof Permission)[keyof typeof Permission];
|
|
874
544
|
export interface UserSetting {
|
|
875
545
|
Action: Action | undefined;
|
|
876
546
|
Permission: Permission | undefined;
|
|
@@ -890,12 +560,6 @@ export interface CreateStackRequest {
|
|
|
890
560
|
EmbedHostDomains?: string[] | undefined;
|
|
891
561
|
StreamingExperienceSettings?: StreamingExperienceSettings | undefined;
|
|
892
562
|
}
|
|
893
|
-
export declare const StackErrorCode: {
|
|
894
|
-
readonly INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR";
|
|
895
|
-
readonly STORAGE_CONNECTOR_ERROR: "STORAGE_CONNECTOR_ERROR";
|
|
896
|
-
};
|
|
897
|
-
export type StackErrorCode =
|
|
898
|
-
(typeof StackErrorCode)[keyof typeof StackErrorCode];
|
|
899
563
|
export interface StackError {
|
|
900
564
|
ErrorCode?: StackErrorCode | undefined;
|
|
901
565
|
ErrorMessage?: string | undefined;
|
|
@@ -935,13 +599,6 @@ export interface ThemeFooterLink {
|
|
|
935
599
|
DisplayName?: string | undefined;
|
|
936
600
|
FooterLinkURL?: string | undefined;
|
|
937
601
|
}
|
|
938
|
-
export declare const ThemeStyling: {
|
|
939
|
-
readonly BLUE: "BLUE";
|
|
940
|
-
readonly LIGHT_BLUE: "LIGHT_BLUE";
|
|
941
|
-
readonly PINK: "PINK";
|
|
942
|
-
readonly RED: "RED";
|
|
943
|
-
};
|
|
944
|
-
export type ThemeStyling = (typeof ThemeStyling)[keyof typeof ThemeStyling];
|
|
945
602
|
export interface CreateThemeForStackRequest {
|
|
946
603
|
StackName: string | undefined;
|
|
947
604
|
FooterLinks?: ThemeFooterLink[] | undefined;
|
|
@@ -950,11 +607,6 @@ export interface CreateThemeForStackRequest {
|
|
|
950
607
|
OrganizationLogoS3Location: S3Location | undefined;
|
|
951
608
|
FaviconS3Location: S3Location | undefined;
|
|
952
609
|
}
|
|
953
|
-
export declare const ThemeState: {
|
|
954
|
-
readonly DISABLED: "DISABLED";
|
|
955
|
-
readonly ENABLED: "ENABLED";
|
|
956
|
-
};
|
|
957
|
-
export type ThemeState = (typeof ThemeState)[keyof typeof ThemeState];
|
|
958
610
|
export interface Theme {
|
|
959
611
|
StackName?: string | undefined;
|
|
960
612
|
State?: ThemeState | undefined;
|
|
@@ -981,20 +633,10 @@ export interface CreateUpdatedImageResult {
|
|
|
981
633
|
canUpdateImage?: boolean | undefined;
|
|
982
634
|
}
|
|
983
635
|
export interface CreateUsageReportSubscriptionRequest {}
|
|
984
|
-
export declare const UsageReportSchedule: {
|
|
985
|
-
readonly DAILY: "DAILY";
|
|
986
|
-
};
|
|
987
|
-
export type UsageReportSchedule =
|
|
988
|
-
(typeof UsageReportSchedule)[keyof typeof UsageReportSchedule];
|
|
989
636
|
export interface CreateUsageReportSubscriptionResult {
|
|
990
637
|
S3BucketName?: string | undefined;
|
|
991
638
|
Schedule?: UsageReportSchedule | undefined;
|
|
992
639
|
}
|
|
993
|
-
export declare const MessageAction: {
|
|
994
|
-
readonly RESEND: "RESEND";
|
|
995
|
-
readonly SUPPRESS: "SUPPRESS";
|
|
996
|
-
};
|
|
997
|
-
export type MessageAction = (typeof MessageAction)[keyof typeof MessageAction];
|
|
998
640
|
export interface CreateUserRequest {
|
|
999
641
|
UserName: string | undefined;
|
|
1000
642
|
MessageAction?: MessageAction | undefined;
|
|
@@ -1007,14 +649,6 @@ export interface DeleteAppBlockRequest {
|
|
|
1007
649
|
Name: string | undefined;
|
|
1008
650
|
}
|
|
1009
651
|
export interface DeleteAppBlockResult {}
|
|
1010
|
-
export declare class ResourceInUseException extends __BaseException {
|
|
1011
|
-
readonly name: "ResourceInUseException";
|
|
1012
|
-
readonly $fault: "client";
|
|
1013
|
-
Message?: string | undefined;
|
|
1014
|
-
constructor(
|
|
1015
|
-
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
1016
|
-
);
|
|
1017
|
-
}
|
|
1018
652
|
export interface DeleteAppBlockBuilderRequest {
|
|
1019
653
|
Name: string | undefined;
|
|
1020
654
|
}
|
|
@@ -1197,18 +831,6 @@ export interface DescribeSessionsRequest {
|
|
|
1197
831
|
AuthenticationType?: AuthenticationType | undefined;
|
|
1198
832
|
InstanceId?: string | undefined;
|
|
1199
833
|
}
|
|
1200
|
-
export declare const SessionConnectionState: {
|
|
1201
|
-
readonly CONNECTED: "CONNECTED";
|
|
1202
|
-
readonly NOT_CONNECTED: "NOT_CONNECTED";
|
|
1203
|
-
};
|
|
1204
|
-
export type SessionConnectionState =
|
|
1205
|
-
(typeof SessionConnectionState)[keyof typeof SessionConnectionState];
|
|
1206
|
-
export declare const SessionState: {
|
|
1207
|
-
readonly ACTIVE: "ACTIVE";
|
|
1208
|
-
readonly EXPIRED: "EXPIRED";
|
|
1209
|
-
readonly PENDING: "PENDING";
|
|
1210
|
-
};
|
|
1211
|
-
export type SessionState = (typeof SessionState)[keyof typeof SessionState];
|
|
1212
834
|
export interface Session {
|
|
1213
835
|
Id: string | undefined;
|
|
1214
836
|
UserId: string | undefined;
|
|
@@ -1231,17 +853,6 @@ export interface DescribeSoftwareAssociationsRequest {
|
|
|
1231
853
|
MaxResults?: number | undefined;
|
|
1232
854
|
NextToken?: string | undefined;
|
|
1233
855
|
}
|
|
1234
|
-
export declare const SoftwareDeploymentStatus: {
|
|
1235
|
-
readonly FAILED_TO_INSTALL: "FAILED_TO_INSTALL";
|
|
1236
|
-
readonly FAILED_TO_UNINSTALL: "FAILED_TO_UNINSTALL";
|
|
1237
|
-
readonly INSTALLED: "INSTALLED";
|
|
1238
|
-
readonly PENDING_INSTALLATION: "PENDING_INSTALLATION";
|
|
1239
|
-
readonly PENDING_UNINSTALLATION: "PENDING_UNINSTALLATION";
|
|
1240
|
-
readonly STAGED_FOR_INSTALLATION: "STAGED_FOR_INSTALLATION";
|
|
1241
|
-
readonly STAGED_FOR_UNINSTALLATION: "STAGED_FOR_UNINSTALLATION";
|
|
1242
|
-
};
|
|
1243
|
-
export type SoftwareDeploymentStatus =
|
|
1244
|
-
(typeof SoftwareDeploymentStatus)[keyof typeof SoftwareDeploymentStatus];
|
|
1245
856
|
export interface SoftwareAssociations {
|
|
1246
857
|
SoftwareName?: string | undefined;
|
|
1247
858
|
Status?: SoftwareDeploymentStatus | undefined;
|
|
@@ -1270,13 +881,6 @@ export interface DescribeUsageReportSubscriptionsRequest {
|
|
|
1270
881
|
MaxResults?: number | undefined;
|
|
1271
882
|
NextToken?: string | undefined;
|
|
1272
883
|
}
|
|
1273
|
-
export declare const UsageReportExecutionErrorCode: {
|
|
1274
|
-
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
1275
|
-
readonly INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR";
|
|
1276
|
-
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
1277
|
-
};
|
|
1278
|
-
export type UsageReportExecutionErrorCode =
|
|
1279
|
-
(typeof UsageReportExecutionErrorCode)[keyof typeof UsageReportExecutionErrorCode];
|
|
1280
884
|
export interface LastReportGenerationExecutionError {
|
|
1281
885
|
ErrorCode?: UsageReportExecutionErrorCode | undefined;
|
|
1282
886
|
ErrorMessage?: string | undefined;
|
|
@@ -1368,18 +972,6 @@ export interface Filter {
|
|
|
1368
972
|
Name: string | undefined;
|
|
1369
973
|
Values: string[] | undefined;
|
|
1370
974
|
}
|
|
1371
|
-
export declare const FleetAttribute: {
|
|
1372
|
-
readonly DOMAIN_JOIN_INFO: "DOMAIN_JOIN_INFO";
|
|
1373
|
-
readonly IAM_ROLE_ARN: "IAM_ROLE_ARN";
|
|
1374
|
-
readonly MAX_SESSIONS_PER_INSTANCE: "MAX_SESSIONS_PER_INSTANCE";
|
|
1375
|
-
readonly SESSION_SCRIPT_S3_LOCATION: "SESSION_SCRIPT_S3_LOCATION";
|
|
1376
|
-
readonly USB_DEVICE_FILTER_STRINGS: "USB_DEVICE_FILTER_STRINGS";
|
|
1377
|
-
readonly VOLUME_CONFIGURATION: "VOLUME_CONFIGURATION";
|
|
1378
|
-
readonly VPC_CONFIGURATION: "VPC_CONFIGURATION";
|
|
1379
|
-
readonly VPC_CONFIGURATION_SECURITY_GROUP_IDS: "VPC_CONFIGURATION_SECURITY_GROUP_IDS";
|
|
1380
|
-
};
|
|
1381
|
-
export type FleetAttribute =
|
|
1382
|
-
(typeof FleetAttribute)[keyof typeof FleetAttribute];
|
|
1383
975
|
export interface GetExportImageTaskRequest {
|
|
1384
976
|
TaskId?: string | undefined;
|
|
1385
977
|
}
|
|
@@ -1557,22 +1149,6 @@ export interface UpdateImagePermissionsRequest {
|
|
|
1557
1149
|
ImagePermissions: ImagePermissions | undefined;
|
|
1558
1150
|
}
|
|
1559
1151
|
export interface UpdateImagePermissionsResult {}
|
|
1560
|
-
export declare const StackAttribute: {
|
|
1561
|
-
readonly ACCESS_ENDPOINTS: "ACCESS_ENDPOINTS";
|
|
1562
|
-
readonly EMBED_HOST_DOMAINS: "EMBED_HOST_DOMAINS";
|
|
1563
|
-
readonly FEEDBACK_URL: "FEEDBACK_URL";
|
|
1564
|
-
readonly IAM_ROLE_ARN: "IAM_ROLE_ARN";
|
|
1565
|
-
readonly REDIRECT_URL: "REDIRECT_URL";
|
|
1566
|
-
readonly STORAGE_CONNECTORS: "STORAGE_CONNECTORS";
|
|
1567
|
-
readonly STORAGE_CONNECTOR_GOOGLE_DRIVE: "STORAGE_CONNECTOR_GOOGLE_DRIVE";
|
|
1568
|
-
readonly STORAGE_CONNECTOR_HOMEFOLDERS: "STORAGE_CONNECTOR_HOMEFOLDERS";
|
|
1569
|
-
readonly STORAGE_CONNECTOR_ONE_DRIVE: "STORAGE_CONNECTOR_ONE_DRIVE";
|
|
1570
|
-
readonly STREAMING_EXPERIENCE_SETTINGS: "STREAMING_EXPERIENCE_SETTINGS";
|
|
1571
|
-
readonly THEME_NAME: "THEME_NAME";
|
|
1572
|
-
readonly USER_SETTINGS: "USER_SETTINGS";
|
|
1573
|
-
};
|
|
1574
|
-
export type StackAttribute =
|
|
1575
|
-
(typeof StackAttribute)[keyof typeof StackAttribute];
|
|
1576
1152
|
export interface UpdateStackRequest {
|
|
1577
1153
|
DisplayName?: string | undefined;
|
|
1578
1154
|
Description?: string | undefined;
|
|
@@ -1591,11 +1167,6 @@ export interface UpdateStackRequest {
|
|
|
1591
1167
|
export interface UpdateStackResult {
|
|
1592
1168
|
Stack?: Stack | undefined;
|
|
1593
1169
|
}
|
|
1594
|
-
export declare const ThemeAttribute: {
|
|
1595
|
-
readonly FOOTER_LINKS: "FOOTER_LINKS";
|
|
1596
|
-
};
|
|
1597
|
-
export type ThemeAttribute =
|
|
1598
|
-
(typeof ThemeAttribute)[keyof typeof ThemeAttribute];
|
|
1599
1170
|
export interface UpdateThemeForStackRequest {
|
|
1600
1171
|
StackName: string | undefined;
|
|
1601
1172
|
FooterLinks?: ThemeFooterLink[] | undefined;
|