@aws-sdk/client-appstream 3.687.0 → 3.692.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-types/models/models_0.d.ts +477 -477
- package/dist-types/ts3.4/models/models_0.d.ts +481 -477
- package/package.json +36 -36
|
@@ -7,7 +7,7 @@ export type AccessEndpointType =
|
|
|
7
7
|
(typeof AccessEndpointType)[keyof typeof AccessEndpointType];
|
|
8
8
|
export interface AccessEndpoint {
|
|
9
9
|
EndpointType: AccessEndpointType | undefined;
|
|
10
|
-
VpceId?: string;
|
|
10
|
+
VpceId?: string | undefined;
|
|
11
11
|
}
|
|
12
12
|
export declare const Action: {
|
|
13
13
|
readonly AUTO_TIME_ZONE_REDIRECTION: "AUTO_TIME_ZONE_REDIRECTION";
|
|
@@ -21,8 +21,8 @@ export declare const Action: {
|
|
|
21
21
|
};
|
|
22
22
|
export type Action = (typeof Action)[keyof typeof Action];
|
|
23
23
|
export interface ErrorDetails {
|
|
24
|
-
ErrorCode?: string;
|
|
25
|
-
ErrorMessage?: string;
|
|
24
|
+
ErrorCode?: string | undefined;
|
|
25
|
+
ErrorMessage?: string | undefined;
|
|
26
26
|
}
|
|
27
27
|
export declare const PackagingType: {
|
|
28
28
|
readonly APPSTREAM2: "APPSTREAM2";
|
|
@@ -31,12 +31,12 @@ export declare const PackagingType: {
|
|
|
31
31
|
export type PackagingType = (typeof PackagingType)[keyof typeof PackagingType];
|
|
32
32
|
export interface S3Location {
|
|
33
33
|
S3Bucket: string | undefined;
|
|
34
|
-
S3Key?: string;
|
|
34
|
+
S3Key?: string | undefined;
|
|
35
35
|
}
|
|
36
36
|
export interface ScriptDetails {
|
|
37
37
|
ScriptS3Location: S3Location | undefined;
|
|
38
38
|
ExecutablePath: string | undefined;
|
|
39
|
-
ExecutableParameters?: string;
|
|
39
|
+
ExecutableParameters?: string | undefined;
|
|
40
40
|
TimeoutInSeconds: number | undefined;
|
|
41
41
|
}
|
|
42
42
|
export declare const AppBlockState: {
|
|
@@ -47,15 +47,15 @@ export type AppBlockState = (typeof AppBlockState)[keyof typeof AppBlockState];
|
|
|
47
47
|
export interface AppBlock {
|
|
48
48
|
Name: string | undefined;
|
|
49
49
|
Arn: string | undefined;
|
|
50
|
-
Description?: string;
|
|
51
|
-
DisplayName?: string;
|
|
52
|
-
SourceS3Location?: S3Location;
|
|
53
|
-
SetupScriptDetails?: ScriptDetails;
|
|
54
|
-
CreatedTime?: Date;
|
|
55
|
-
PostSetupScriptDetails?: ScriptDetails;
|
|
56
|
-
PackagingType?: PackagingType;
|
|
57
|
-
State?: AppBlockState;
|
|
58
|
-
AppBlockErrors?: ErrorDetails[];
|
|
50
|
+
Description?: string | undefined;
|
|
51
|
+
DisplayName?: string | undefined;
|
|
52
|
+
SourceS3Location?: S3Location | undefined;
|
|
53
|
+
SetupScriptDetails?: ScriptDetails | undefined;
|
|
54
|
+
CreatedTime?: Date | undefined;
|
|
55
|
+
PostSetupScriptDetails?: ScriptDetails | undefined;
|
|
56
|
+
PackagingType?: PackagingType | undefined;
|
|
57
|
+
State?: AppBlockState | undefined;
|
|
58
|
+
AppBlockErrors?: ErrorDetails[] | undefined;
|
|
59
59
|
}
|
|
60
60
|
export declare const FleetErrorCode: {
|
|
61
61
|
readonly DOMAIN_JOIN_ERROR_ACCESS_DENIED: "DOMAIN_JOIN_ERROR_ACCESS_DENIED";
|
|
@@ -92,9 +92,9 @@ export declare const FleetErrorCode: {
|
|
|
92
92
|
export type FleetErrorCode =
|
|
93
93
|
(typeof FleetErrorCode)[keyof typeof FleetErrorCode];
|
|
94
94
|
export interface ResourceError {
|
|
95
|
-
ErrorCode?: FleetErrorCode;
|
|
96
|
-
ErrorMessage?: string;
|
|
97
|
-
ErrorTimestamp?: Date;
|
|
95
|
+
ErrorCode?: FleetErrorCode | undefined;
|
|
96
|
+
ErrorMessage?: string | undefined;
|
|
97
|
+
ErrorTimestamp?: Date | undefined;
|
|
98
98
|
}
|
|
99
99
|
export declare const AppBlockBuilderPlatformType: {
|
|
100
100
|
readonly WINDOWS_SERVER_2019: "WINDOWS_SERVER_2019";
|
|
@@ -115,28 +115,28 @@ export declare const AppBlockBuilderStateChangeReasonCode: {
|
|
|
115
115
|
export type AppBlockBuilderStateChangeReasonCode =
|
|
116
116
|
(typeof AppBlockBuilderStateChangeReasonCode)[keyof typeof AppBlockBuilderStateChangeReasonCode];
|
|
117
117
|
export interface AppBlockBuilderStateChangeReason {
|
|
118
|
-
Code?: AppBlockBuilderStateChangeReasonCode;
|
|
119
|
-
Message?: string;
|
|
118
|
+
Code?: AppBlockBuilderStateChangeReasonCode | undefined;
|
|
119
|
+
Message?: string | undefined;
|
|
120
120
|
}
|
|
121
121
|
export interface VpcConfig {
|
|
122
|
-
SubnetIds?: string[];
|
|
123
|
-
SecurityGroupIds?: string[];
|
|
122
|
+
SubnetIds?: string[] | undefined;
|
|
123
|
+
SecurityGroupIds?: string[] | undefined;
|
|
124
124
|
}
|
|
125
125
|
export interface AppBlockBuilder {
|
|
126
126
|
Arn: string | undefined;
|
|
127
127
|
Name: string | undefined;
|
|
128
|
-
DisplayName?: string;
|
|
129
|
-
Description?: string;
|
|
128
|
+
DisplayName?: string | undefined;
|
|
129
|
+
Description?: string | undefined;
|
|
130
130
|
Platform: AppBlockBuilderPlatformType | undefined;
|
|
131
131
|
InstanceType: string | undefined;
|
|
132
|
-
EnableDefaultInternetAccess?: boolean;
|
|
133
|
-
IamRoleArn?: string;
|
|
132
|
+
EnableDefaultInternetAccess?: boolean | undefined;
|
|
133
|
+
IamRoleArn?: string | undefined;
|
|
134
134
|
VpcConfig: VpcConfig | undefined;
|
|
135
135
|
State: AppBlockBuilderState | undefined;
|
|
136
|
-
CreatedTime?: Date;
|
|
137
|
-
AppBlockBuilderErrors?: ResourceError[];
|
|
138
|
-
StateChangeReason?: AppBlockBuilderStateChangeReason;
|
|
139
|
-
AccessEndpoints?: AccessEndpoint[];
|
|
136
|
+
CreatedTime?: Date | undefined;
|
|
137
|
+
AppBlockBuilderErrors?: ResourceError[] | undefined;
|
|
138
|
+
StateChangeReason?: AppBlockBuilderStateChangeReason | undefined;
|
|
139
|
+
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
140
140
|
}
|
|
141
141
|
export interface AppBlockBuilderAppBlockAssociation {
|
|
142
142
|
AppBlockArn: string | undefined;
|
|
@@ -159,21 +159,21 @@ export declare const PlatformType: {
|
|
|
159
159
|
};
|
|
160
160
|
export type PlatformType = (typeof PlatformType)[keyof typeof PlatformType];
|
|
161
161
|
export interface Application {
|
|
162
|
-
Name?: string;
|
|
163
|
-
DisplayName?: string;
|
|
164
|
-
IconURL?: string;
|
|
165
|
-
LaunchPath?: string;
|
|
166
|
-
LaunchParameters?: string;
|
|
167
|
-
Enabled?: boolean;
|
|
168
|
-
Metadata?: Record<string, string
|
|
169
|
-
WorkingDirectory?: string;
|
|
170
|
-
Description?: string;
|
|
171
|
-
Arn?: string;
|
|
172
|
-
AppBlockArn?: string;
|
|
173
|
-
IconS3Location?: S3Location;
|
|
174
|
-
Platforms?: PlatformType[];
|
|
175
|
-
InstanceFamilies?: string[];
|
|
176
|
-
CreatedTime?: Date;
|
|
162
|
+
Name?: string | undefined;
|
|
163
|
+
DisplayName?: string | undefined;
|
|
164
|
+
IconURL?: string | undefined;
|
|
165
|
+
LaunchPath?: string | undefined;
|
|
166
|
+
LaunchParameters?: string | undefined;
|
|
167
|
+
Enabled?: boolean | undefined;
|
|
168
|
+
Metadata?: Record<string, string> | undefined;
|
|
169
|
+
WorkingDirectory?: string | undefined;
|
|
170
|
+
Description?: string | undefined;
|
|
171
|
+
Arn?: string | undefined;
|
|
172
|
+
AppBlockArn?: string | undefined;
|
|
173
|
+
IconS3Location?: S3Location | undefined;
|
|
174
|
+
Platforms?: PlatformType[] | undefined;
|
|
175
|
+
InstanceFamilies?: string[] | undefined;
|
|
176
|
+
CreatedTime?: Date | undefined;
|
|
177
177
|
}
|
|
178
178
|
export declare const ApplicationAttribute: {
|
|
179
179
|
readonly LAUNCH_PARAMETERS: "LAUNCH_PARAMETERS";
|
|
@@ -187,12 +187,12 @@ export interface ApplicationFleetAssociation {
|
|
|
187
187
|
}
|
|
188
188
|
export interface ApplicationSettings {
|
|
189
189
|
Enabled: boolean | undefined;
|
|
190
|
-
SettingsGroup?: string;
|
|
190
|
+
SettingsGroup?: string | undefined;
|
|
191
191
|
}
|
|
192
192
|
export interface ApplicationSettingsResponse {
|
|
193
|
-
Enabled?: boolean;
|
|
194
|
-
SettingsGroup?: string;
|
|
195
|
-
S3BucketName?: string;
|
|
193
|
+
Enabled?: boolean | undefined;
|
|
194
|
+
SettingsGroup?: string | undefined;
|
|
195
|
+
S3BucketName?: string | undefined;
|
|
196
196
|
}
|
|
197
197
|
export declare const AppVisibility: {
|
|
198
198
|
readonly ALL: "ALL";
|
|
@@ -204,12 +204,14 @@ export interface AssociateAppBlockBuilderAppBlockRequest {
|
|
|
204
204
|
AppBlockBuilderName: string | undefined;
|
|
205
205
|
}
|
|
206
206
|
export interface AssociateAppBlockBuilderAppBlockResult {
|
|
207
|
-
AppBlockBuilderAppBlockAssociation?:
|
|
207
|
+
AppBlockBuilderAppBlockAssociation?:
|
|
208
|
+
| AppBlockBuilderAppBlockAssociation
|
|
209
|
+
| undefined;
|
|
208
210
|
}
|
|
209
211
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
210
212
|
readonly name: "ConcurrentModificationException";
|
|
211
213
|
readonly $fault: "client";
|
|
212
|
-
Message?: string;
|
|
214
|
+
Message?: string | undefined;
|
|
213
215
|
constructor(
|
|
214
216
|
opts: __ExceptionOptionType<
|
|
215
217
|
ConcurrentModificationException,
|
|
@@ -220,7 +222,7 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
220
222
|
export declare class InvalidParameterCombinationException extends __BaseException {
|
|
221
223
|
readonly name: "InvalidParameterCombinationException";
|
|
222
224
|
readonly $fault: "client";
|
|
223
|
-
Message?: string;
|
|
225
|
+
Message?: string | undefined;
|
|
224
226
|
constructor(
|
|
225
227
|
opts: __ExceptionOptionType<
|
|
226
228
|
InvalidParameterCombinationException,
|
|
@@ -231,7 +233,7 @@ export declare class InvalidParameterCombinationException extends __BaseExceptio
|
|
|
231
233
|
export declare class LimitExceededException extends __BaseException {
|
|
232
234
|
readonly name: "LimitExceededException";
|
|
233
235
|
readonly $fault: "client";
|
|
234
|
-
Message?: string;
|
|
236
|
+
Message?: string | undefined;
|
|
235
237
|
constructor(
|
|
236
238
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
237
239
|
);
|
|
@@ -239,7 +241,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
239
241
|
export declare class OperationNotPermittedException extends __BaseException {
|
|
240
242
|
readonly name: "OperationNotPermittedException";
|
|
241
243
|
readonly $fault: "client";
|
|
242
|
-
Message?: string;
|
|
244
|
+
Message?: string | undefined;
|
|
243
245
|
constructor(
|
|
244
246
|
opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>
|
|
245
247
|
);
|
|
@@ -247,7 +249,7 @@ export declare class OperationNotPermittedException extends __BaseException {
|
|
|
247
249
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
248
250
|
readonly name: "ResourceNotFoundException";
|
|
249
251
|
readonly $fault: "client";
|
|
250
|
-
Message?: string;
|
|
252
|
+
Message?: string | undefined;
|
|
251
253
|
constructor(
|
|
252
254
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
253
255
|
);
|
|
@@ -257,7 +259,7 @@ export interface AssociateApplicationFleetRequest {
|
|
|
257
259
|
ApplicationArn: string | undefined;
|
|
258
260
|
}
|
|
259
261
|
export interface AssociateApplicationFleetResult {
|
|
260
|
-
ApplicationFleetAssociation?: ApplicationFleetAssociation;
|
|
262
|
+
ApplicationFleetAssociation?: ApplicationFleetAssociation | undefined;
|
|
261
263
|
}
|
|
262
264
|
export interface AssociateApplicationToEntitlementRequest {
|
|
263
265
|
StackName: string | undefined;
|
|
@@ -268,7 +270,7 @@ export interface AssociateApplicationToEntitlementResult {}
|
|
|
268
270
|
export declare class EntitlementNotFoundException extends __BaseException {
|
|
269
271
|
readonly name: "EntitlementNotFoundException";
|
|
270
272
|
readonly $fault: "client";
|
|
271
|
-
Message?: string;
|
|
273
|
+
Message?: string | undefined;
|
|
272
274
|
constructor(
|
|
273
275
|
opts: __ExceptionOptionType<EntitlementNotFoundException, __BaseException>
|
|
274
276
|
);
|
|
@@ -281,7 +283,7 @@ export interface AssociateFleetResult {}
|
|
|
281
283
|
export declare class IncompatibleImageException extends __BaseException {
|
|
282
284
|
readonly name: "IncompatibleImageException";
|
|
283
285
|
readonly $fault: "client";
|
|
284
|
-
Message?: string;
|
|
286
|
+
Message?: string | undefined;
|
|
285
287
|
constructor(
|
|
286
288
|
opts: __ExceptionOptionType<IncompatibleImageException, __BaseException>
|
|
287
289
|
);
|
|
@@ -289,7 +291,7 @@ export declare class IncompatibleImageException extends __BaseException {
|
|
|
289
291
|
export declare class InvalidAccountStatusException extends __BaseException {
|
|
290
292
|
readonly name: "InvalidAccountStatusException";
|
|
291
293
|
readonly $fault: "client";
|
|
292
|
-
Message?: string;
|
|
294
|
+
Message?: string | undefined;
|
|
293
295
|
constructor(
|
|
294
296
|
opts: __ExceptionOptionType<InvalidAccountStatusException, __BaseException>
|
|
295
297
|
);
|
|
@@ -306,7 +308,7 @@ export interface UserStackAssociation {
|
|
|
306
308
|
StackName: string | undefined;
|
|
307
309
|
UserName: string | undefined;
|
|
308
310
|
AuthenticationType: AuthenticationType | undefined;
|
|
309
|
-
SendEmailNotification?: boolean;
|
|
311
|
+
SendEmailNotification?: boolean | undefined;
|
|
310
312
|
}
|
|
311
313
|
export interface BatchAssociateUserStackRequest {
|
|
312
314
|
UserStackAssociations: UserStackAssociation[] | undefined;
|
|
@@ -320,18 +322,18 @@ export declare const UserStackAssociationErrorCode: {
|
|
|
320
322
|
export type UserStackAssociationErrorCode =
|
|
321
323
|
(typeof UserStackAssociationErrorCode)[keyof typeof UserStackAssociationErrorCode];
|
|
322
324
|
export interface UserStackAssociationError {
|
|
323
|
-
UserStackAssociation?: UserStackAssociation;
|
|
324
|
-
ErrorCode?: UserStackAssociationErrorCode;
|
|
325
|
-
ErrorMessage?: string;
|
|
325
|
+
UserStackAssociation?: UserStackAssociation | undefined;
|
|
326
|
+
ErrorCode?: UserStackAssociationErrorCode | undefined;
|
|
327
|
+
ErrorMessage?: string | undefined;
|
|
326
328
|
}
|
|
327
329
|
export interface BatchAssociateUserStackResult {
|
|
328
|
-
errors?: UserStackAssociationError[];
|
|
330
|
+
errors?: UserStackAssociationError[] | undefined;
|
|
329
331
|
}
|
|
330
332
|
export interface BatchDisassociateUserStackRequest {
|
|
331
333
|
UserStackAssociations: UserStackAssociation[] | undefined;
|
|
332
334
|
}
|
|
333
335
|
export interface BatchDisassociateUserStackResult {
|
|
334
|
-
errors?: UserStackAssociationError[];
|
|
336
|
+
errors?: UserStackAssociationError[] | undefined;
|
|
335
337
|
}
|
|
336
338
|
export declare const CertificateBasedAuthStatus: {
|
|
337
339
|
readonly DISABLED: "DISABLED";
|
|
@@ -341,36 +343,36 @@ export declare const CertificateBasedAuthStatus: {
|
|
|
341
343
|
export type CertificateBasedAuthStatus =
|
|
342
344
|
(typeof CertificateBasedAuthStatus)[keyof typeof CertificateBasedAuthStatus];
|
|
343
345
|
export interface CertificateBasedAuthProperties {
|
|
344
|
-
Status?: CertificateBasedAuthStatus;
|
|
345
|
-
CertificateAuthorityArn?: string;
|
|
346
|
+
Status?: CertificateBasedAuthStatus | undefined;
|
|
347
|
+
CertificateAuthorityArn?: string | undefined;
|
|
346
348
|
}
|
|
347
349
|
export interface ComputeCapacity {
|
|
348
|
-
DesiredInstances?: number;
|
|
349
|
-
DesiredSessions?: number;
|
|
350
|
+
DesiredInstances?: number | undefined;
|
|
351
|
+
DesiredSessions?: number | undefined;
|
|
350
352
|
}
|
|
351
353
|
export interface ComputeCapacityStatus {
|
|
352
354
|
Desired: number | undefined;
|
|
353
|
-
Running?: number;
|
|
354
|
-
InUse?: number;
|
|
355
|
-
Available?: number;
|
|
356
|
-
DesiredUserSessions?: number;
|
|
357
|
-
AvailableUserSessions?: number;
|
|
358
|
-
ActiveUserSessions?: number;
|
|
359
|
-
ActualUserSessions?: number;
|
|
355
|
+
Running?: number | undefined;
|
|
356
|
+
InUse?: number | undefined;
|
|
357
|
+
Available?: number | undefined;
|
|
358
|
+
DesiredUserSessions?: number | undefined;
|
|
359
|
+
AvailableUserSessions?: number | undefined;
|
|
360
|
+
ActiveUserSessions?: number | undefined;
|
|
361
|
+
ActualUserSessions?: number | undefined;
|
|
360
362
|
}
|
|
361
363
|
export interface CopyImageRequest {
|
|
362
364
|
SourceImageName: string | undefined;
|
|
363
365
|
DestinationImageName: string | undefined;
|
|
364
366
|
DestinationRegion: string | undefined;
|
|
365
|
-
DestinationImageDescription?: string;
|
|
367
|
+
DestinationImageDescription?: string | undefined;
|
|
366
368
|
}
|
|
367
369
|
export interface CopyImageResponse {
|
|
368
|
-
DestinationImageName?: string;
|
|
370
|
+
DestinationImageName?: string | undefined;
|
|
369
371
|
}
|
|
370
372
|
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
371
373
|
readonly name: "ResourceAlreadyExistsException";
|
|
372
374
|
readonly $fault: "client";
|
|
373
|
-
Message?: string;
|
|
375
|
+
Message?: string | undefined;
|
|
374
376
|
constructor(
|
|
375
377
|
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
376
378
|
);
|
|
@@ -378,43 +380,43 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
|
378
380
|
export declare class ResourceNotAvailableException extends __BaseException {
|
|
379
381
|
readonly name: "ResourceNotAvailableException";
|
|
380
382
|
readonly $fault: "client";
|
|
381
|
-
Message?: string;
|
|
383
|
+
Message?: string | undefined;
|
|
382
384
|
constructor(
|
|
383
385
|
opts: __ExceptionOptionType<ResourceNotAvailableException, __BaseException>
|
|
384
386
|
);
|
|
385
387
|
}
|
|
386
388
|
export interface CreateAppBlockRequest {
|
|
387
389
|
Name: string | undefined;
|
|
388
|
-
Description?: string;
|
|
389
|
-
DisplayName?: string;
|
|
390
|
+
Description?: string | undefined;
|
|
391
|
+
DisplayName?: string | undefined;
|
|
390
392
|
SourceS3Location: S3Location | undefined;
|
|
391
|
-
SetupScriptDetails?: ScriptDetails;
|
|
392
|
-
Tags?: Record<string, string
|
|
393
|
-
PostSetupScriptDetails?: ScriptDetails;
|
|
394
|
-
PackagingType?: PackagingType;
|
|
393
|
+
SetupScriptDetails?: ScriptDetails | undefined;
|
|
394
|
+
Tags?: Record<string, string> | undefined;
|
|
395
|
+
PostSetupScriptDetails?: ScriptDetails | undefined;
|
|
396
|
+
PackagingType?: PackagingType | undefined;
|
|
395
397
|
}
|
|
396
398
|
export interface CreateAppBlockResult {
|
|
397
|
-
AppBlock?: AppBlock;
|
|
399
|
+
AppBlock?: AppBlock | undefined;
|
|
398
400
|
}
|
|
399
401
|
export interface CreateAppBlockBuilderRequest {
|
|
400
402
|
Name: string | undefined;
|
|
401
|
-
Description?: string;
|
|
402
|
-
DisplayName?: string;
|
|
403
|
-
Tags?: Record<string, string
|
|
403
|
+
Description?: string | undefined;
|
|
404
|
+
DisplayName?: string | undefined;
|
|
405
|
+
Tags?: Record<string, string> | undefined;
|
|
404
406
|
Platform: AppBlockBuilderPlatformType | undefined;
|
|
405
407
|
InstanceType: string | undefined;
|
|
406
408
|
VpcConfig: VpcConfig | undefined;
|
|
407
|
-
EnableDefaultInternetAccess?: boolean;
|
|
408
|
-
IamRoleArn?: string;
|
|
409
|
-
AccessEndpoints?: AccessEndpoint[];
|
|
409
|
+
EnableDefaultInternetAccess?: boolean | undefined;
|
|
410
|
+
IamRoleArn?: string | undefined;
|
|
411
|
+
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
410
412
|
}
|
|
411
413
|
export interface CreateAppBlockBuilderResult {
|
|
412
|
-
AppBlockBuilder?: AppBlockBuilder;
|
|
414
|
+
AppBlockBuilder?: AppBlockBuilder | undefined;
|
|
413
415
|
}
|
|
414
416
|
export declare class InvalidRoleException extends __BaseException {
|
|
415
417
|
readonly name: "InvalidRoleException";
|
|
416
418
|
readonly $fault: "client";
|
|
417
|
-
Message?: string;
|
|
419
|
+
Message?: string | undefined;
|
|
418
420
|
constructor(
|
|
419
421
|
opts: __ExceptionOptionType<InvalidRoleException, __BaseException>
|
|
420
422
|
);
|
|
@@ -422,34 +424,34 @@ export declare class InvalidRoleException extends __BaseException {
|
|
|
422
424
|
export declare class RequestLimitExceededException extends __BaseException {
|
|
423
425
|
readonly name: "RequestLimitExceededException";
|
|
424
426
|
readonly $fault: "client";
|
|
425
|
-
Message?: string;
|
|
427
|
+
Message?: string | undefined;
|
|
426
428
|
constructor(
|
|
427
429
|
opts: __ExceptionOptionType<RequestLimitExceededException, __BaseException>
|
|
428
430
|
);
|
|
429
431
|
}
|
|
430
432
|
export interface CreateAppBlockBuilderStreamingURLRequest {
|
|
431
433
|
AppBlockBuilderName: string | undefined;
|
|
432
|
-
Validity?: number;
|
|
434
|
+
Validity?: number | undefined;
|
|
433
435
|
}
|
|
434
436
|
export interface CreateAppBlockBuilderStreamingURLResult {
|
|
435
|
-
StreamingURL?: string;
|
|
436
|
-
Expires?: Date;
|
|
437
|
+
StreamingURL?: string | undefined;
|
|
438
|
+
Expires?: Date | undefined;
|
|
437
439
|
}
|
|
438
440
|
export interface CreateApplicationRequest {
|
|
439
441
|
Name: string | undefined;
|
|
440
|
-
DisplayName?: string;
|
|
441
|
-
Description?: string;
|
|
442
|
+
DisplayName?: string | undefined;
|
|
443
|
+
Description?: string | undefined;
|
|
442
444
|
IconS3Location: S3Location | undefined;
|
|
443
445
|
LaunchPath: string | undefined;
|
|
444
|
-
WorkingDirectory?: string;
|
|
445
|
-
LaunchParameters?: string;
|
|
446
|
+
WorkingDirectory?: string | undefined;
|
|
447
|
+
LaunchParameters?: string | undefined;
|
|
446
448
|
Platforms: PlatformType[] | undefined;
|
|
447
449
|
InstanceFamilies: string[] | undefined;
|
|
448
450
|
AppBlockArn: string | undefined;
|
|
449
|
-
Tags?: Record<string, string
|
|
451
|
+
Tags?: Record<string, string> | undefined;
|
|
450
452
|
}
|
|
451
453
|
export interface CreateApplicationResult {
|
|
452
|
-
Application?: Application;
|
|
454
|
+
Application?: Application | undefined;
|
|
453
455
|
}
|
|
454
456
|
export interface ServiceAccountCredentials {
|
|
455
457
|
AccountName: string | undefined;
|
|
@@ -458,18 +460,18 @@ export interface ServiceAccountCredentials {
|
|
|
458
460
|
export interface CreateDirectoryConfigRequest {
|
|
459
461
|
DirectoryName: string | undefined;
|
|
460
462
|
OrganizationalUnitDistinguishedNames: string[] | undefined;
|
|
461
|
-
ServiceAccountCredentials?: ServiceAccountCredentials;
|
|
462
|
-
CertificateBasedAuthProperties?: CertificateBasedAuthProperties;
|
|
463
|
+
ServiceAccountCredentials?: ServiceAccountCredentials | undefined;
|
|
464
|
+
CertificateBasedAuthProperties?: CertificateBasedAuthProperties | undefined;
|
|
463
465
|
}
|
|
464
466
|
export interface DirectoryConfig {
|
|
465
467
|
DirectoryName: string | undefined;
|
|
466
|
-
OrganizationalUnitDistinguishedNames?: string[];
|
|
467
|
-
ServiceAccountCredentials?: ServiceAccountCredentials;
|
|
468
|
-
CreatedTime?: Date;
|
|
469
|
-
CertificateBasedAuthProperties?: CertificateBasedAuthProperties;
|
|
468
|
+
OrganizationalUnitDistinguishedNames?: string[] | undefined;
|
|
469
|
+
ServiceAccountCredentials?: ServiceAccountCredentials | undefined;
|
|
470
|
+
CreatedTime?: Date | undefined;
|
|
471
|
+
CertificateBasedAuthProperties?: CertificateBasedAuthProperties | undefined;
|
|
470
472
|
}
|
|
471
473
|
export interface CreateDirectoryConfigResult {
|
|
472
|
-
DirectoryConfig?: DirectoryConfig;
|
|
474
|
+
DirectoryConfig?: DirectoryConfig | undefined;
|
|
473
475
|
}
|
|
474
476
|
export interface EntitlementAttribute {
|
|
475
477
|
Name: string | undefined;
|
|
@@ -478,26 +480,26 @@ export interface EntitlementAttribute {
|
|
|
478
480
|
export interface CreateEntitlementRequest {
|
|
479
481
|
Name: string | undefined;
|
|
480
482
|
StackName: string | undefined;
|
|
481
|
-
Description?: string;
|
|
483
|
+
Description?: string | undefined;
|
|
482
484
|
AppVisibility: AppVisibility | undefined;
|
|
483
485
|
Attributes: EntitlementAttribute[] | undefined;
|
|
484
486
|
}
|
|
485
487
|
export interface Entitlement {
|
|
486
488
|
Name: string | undefined;
|
|
487
489
|
StackName: string | undefined;
|
|
488
|
-
Description?: string;
|
|
490
|
+
Description?: string | undefined;
|
|
489
491
|
AppVisibility: AppVisibility | undefined;
|
|
490
492
|
Attributes: EntitlementAttribute[] | undefined;
|
|
491
|
-
CreatedTime?: Date;
|
|
492
|
-
LastModifiedTime?: Date;
|
|
493
|
+
CreatedTime?: Date | undefined;
|
|
494
|
+
LastModifiedTime?: Date | undefined;
|
|
493
495
|
}
|
|
494
496
|
export interface CreateEntitlementResult {
|
|
495
|
-
Entitlement?: Entitlement;
|
|
497
|
+
Entitlement?: Entitlement | undefined;
|
|
496
498
|
}
|
|
497
499
|
export declare class EntitlementAlreadyExistsException extends __BaseException {
|
|
498
500
|
readonly name: "EntitlementAlreadyExistsException";
|
|
499
501
|
readonly $fault: "client";
|
|
500
|
-
Message?: string;
|
|
502
|
+
Message?: string | undefined;
|
|
501
503
|
constructor(
|
|
502
504
|
opts: __ExceptionOptionType<
|
|
503
505
|
EntitlementAlreadyExistsException,
|
|
@@ -506,8 +508,8 @@ export declare class EntitlementAlreadyExistsException extends __BaseException {
|
|
|
506
508
|
);
|
|
507
509
|
}
|
|
508
510
|
export interface DomainJoinInfo {
|
|
509
|
-
DirectoryName?: string;
|
|
510
|
-
OrganizationalUnitDistinguishedName?: string;
|
|
511
|
+
DirectoryName?: string | undefined;
|
|
512
|
+
OrganizationalUnitDistinguishedName?: string | undefined;
|
|
511
513
|
}
|
|
512
514
|
export declare const FleetType: {
|
|
513
515
|
readonly ALWAYS_ON: "ALWAYS_ON";
|
|
@@ -522,31 +524,31 @@ export declare const StreamView: {
|
|
|
522
524
|
export type StreamView = (typeof StreamView)[keyof typeof StreamView];
|
|
523
525
|
export interface CreateFleetRequest {
|
|
524
526
|
Name: string | undefined;
|
|
525
|
-
ImageName?: string;
|
|
526
|
-
ImageArn?: string;
|
|
527
|
+
ImageName?: string | undefined;
|
|
528
|
+
ImageArn?: string | undefined;
|
|
527
529
|
InstanceType: string | undefined;
|
|
528
|
-
FleetType?: FleetType;
|
|
529
|
-
ComputeCapacity?: ComputeCapacity;
|
|
530
|
-
VpcConfig?: VpcConfig;
|
|
531
|
-
MaxUserDurationInSeconds?: number;
|
|
532
|
-
DisconnectTimeoutInSeconds?: number;
|
|
533
|
-
Description?: string;
|
|
534
|
-
DisplayName?: string;
|
|
535
|
-
EnableDefaultInternetAccess?: boolean;
|
|
536
|
-
DomainJoinInfo?: DomainJoinInfo;
|
|
537
|
-
Tags?: Record<string, string
|
|
538
|
-
IdleDisconnectTimeoutInSeconds?: number;
|
|
539
|
-
IamRoleArn?: string;
|
|
540
|
-
StreamView?: StreamView;
|
|
541
|
-
Platform?: PlatformType;
|
|
542
|
-
MaxConcurrentSessions?: number;
|
|
543
|
-
UsbDeviceFilterStrings?: string[];
|
|
544
|
-
SessionScriptS3Location?: S3Location;
|
|
545
|
-
MaxSessionsPerInstance?: number;
|
|
530
|
+
FleetType?: FleetType | undefined;
|
|
531
|
+
ComputeCapacity?: ComputeCapacity | undefined;
|
|
532
|
+
VpcConfig?: VpcConfig | undefined;
|
|
533
|
+
MaxUserDurationInSeconds?: number | undefined;
|
|
534
|
+
DisconnectTimeoutInSeconds?: number | undefined;
|
|
535
|
+
Description?: string | undefined;
|
|
536
|
+
DisplayName?: string | undefined;
|
|
537
|
+
EnableDefaultInternetAccess?: boolean | undefined;
|
|
538
|
+
DomainJoinInfo?: DomainJoinInfo | undefined;
|
|
539
|
+
Tags?: Record<string, string> | undefined;
|
|
540
|
+
IdleDisconnectTimeoutInSeconds?: number | undefined;
|
|
541
|
+
IamRoleArn?: string | undefined;
|
|
542
|
+
StreamView?: StreamView | undefined;
|
|
543
|
+
Platform?: PlatformType | undefined;
|
|
544
|
+
MaxConcurrentSessions?: number | undefined;
|
|
545
|
+
UsbDeviceFilterStrings?: string[] | undefined;
|
|
546
|
+
SessionScriptS3Location?: S3Location | undefined;
|
|
547
|
+
MaxSessionsPerInstance?: number | undefined;
|
|
546
548
|
}
|
|
547
549
|
export interface FleetError {
|
|
548
|
-
ErrorCode?: FleetErrorCode;
|
|
549
|
-
ErrorMessage?: string;
|
|
550
|
+
ErrorCode?: FleetErrorCode | undefined;
|
|
551
|
+
ErrorMessage?: string | undefined;
|
|
550
552
|
}
|
|
551
553
|
export declare const FleetState: {
|
|
552
554
|
readonly RUNNING: "RUNNING";
|
|
@@ -558,47 +560,47 @@ export type FleetState = (typeof FleetState)[keyof typeof FleetState];
|
|
|
558
560
|
export interface Fleet {
|
|
559
561
|
Arn: string | undefined;
|
|
560
562
|
Name: string | undefined;
|
|
561
|
-
DisplayName?: string;
|
|
562
|
-
Description?: string;
|
|
563
|
-
ImageName?: string;
|
|
564
|
-
ImageArn?: string;
|
|
563
|
+
DisplayName?: string | undefined;
|
|
564
|
+
Description?: string | undefined;
|
|
565
|
+
ImageName?: string | undefined;
|
|
566
|
+
ImageArn?: string | undefined;
|
|
565
567
|
InstanceType: string | undefined;
|
|
566
|
-
FleetType?: FleetType;
|
|
568
|
+
FleetType?: FleetType | undefined;
|
|
567
569
|
ComputeCapacityStatus: ComputeCapacityStatus | undefined;
|
|
568
|
-
MaxUserDurationInSeconds?: number;
|
|
569
|
-
DisconnectTimeoutInSeconds?: number;
|
|
570
|
+
MaxUserDurationInSeconds?: number | undefined;
|
|
571
|
+
DisconnectTimeoutInSeconds?: number | undefined;
|
|
570
572
|
State: FleetState | undefined;
|
|
571
|
-
VpcConfig?: VpcConfig;
|
|
572
|
-
CreatedTime?: Date;
|
|
573
|
-
FleetErrors?: FleetError[];
|
|
574
|
-
EnableDefaultInternetAccess?: boolean;
|
|
575
|
-
DomainJoinInfo?: DomainJoinInfo;
|
|
576
|
-
IdleDisconnectTimeoutInSeconds?: number;
|
|
577
|
-
IamRoleArn?: string;
|
|
578
|
-
StreamView?: StreamView;
|
|
579
|
-
Platform?: PlatformType;
|
|
580
|
-
MaxConcurrentSessions?: number;
|
|
581
|
-
UsbDeviceFilterStrings?: string[];
|
|
582
|
-
SessionScriptS3Location?: S3Location;
|
|
583
|
-
MaxSessionsPerInstance?: number;
|
|
573
|
+
VpcConfig?: VpcConfig | undefined;
|
|
574
|
+
CreatedTime?: Date | undefined;
|
|
575
|
+
FleetErrors?: FleetError[] | undefined;
|
|
576
|
+
EnableDefaultInternetAccess?: boolean | undefined;
|
|
577
|
+
DomainJoinInfo?: DomainJoinInfo | undefined;
|
|
578
|
+
IdleDisconnectTimeoutInSeconds?: number | undefined;
|
|
579
|
+
IamRoleArn?: string | undefined;
|
|
580
|
+
StreamView?: StreamView | undefined;
|
|
581
|
+
Platform?: PlatformType | undefined;
|
|
582
|
+
MaxConcurrentSessions?: number | undefined;
|
|
583
|
+
UsbDeviceFilterStrings?: string[] | undefined;
|
|
584
|
+
SessionScriptS3Location?: S3Location | undefined;
|
|
585
|
+
MaxSessionsPerInstance?: number | undefined;
|
|
584
586
|
}
|
|
585
587
|
export interface CreateFleetResult {
|
|
586
|
-
Fleet?: Fleet;
|
|
588
|
+
Fleet?: Fleet | undefined;
|
|
587
589
|
}
|
|
588
590
|
export interface CreateImageBuilderRequest {
|
|
589
591
|
Name: string | undefined;
|
|
590
|
-
ImageName?: string;
|
|
591
|
-
ImageArn?: string;
|
|
592
|
+
ImageName?: string | undefined;
|
|
593
|
+
ImageArn?: string | undefined;
|
|
592
594
|
InstanceType: string | undefined;
|
|
593
|
-
Description?: string;
|
|
594
|
-
DisplayName?: string;
|
|
595
|
-
VpcConfig?: VpcConfig;
|
|
596
|
-
IamRoleArn?: string;
|
|
597
|
-
EnableDefaultInternetAccess?: boolean;
|
|
598
|
-
DomainJoinInfo?: DomainJoinInfo;
|
|
599
|
-
AppstreamAgentVersion?: string;
|
|
600
|
-
Tags?: Record<string, string
|
|
601
|
-
AccessEndpoints?: AccessEndpoint[];
|
|
595
|
+
Description?: string | undefined;
|
|
596
|
+
DisplayName?: string | undefined;
|
|
597
|
+
VpcConfig?: VpcConfig | undefined;
|
|
598
|
+
IamRoleArn?: string | undefined;
|
|
599
|
+
EnableDefaultInternetAccess?: boolean | undefined;
|
|
600
|
+
DomainJoinInfo?: DomainJoinInfo | undefined;
|
|
601
|
+
AppstreamAgentVersion?: string | undefined;
|
|
602
|
+
Tags?: Record<string, string> | undefined;
|
|
603
|
+
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
602
604
|
}
|
|
603
605
|
export declare const LatestAppstreamAgentVersion: {
|
|
604
606
|
readonly FALSE: "FALSE";
|
|
@@ -607,8 +609,8 @@ export declare const LatestAppstreamAgentVersion: {
|
|
|
607
609
|
export type LatestAppstreamAgentVersion =
|
|
608
610
|
(typeof LatestAppstreamAgentVersion)[keyof typeof LatestAppstreamAgentVersion];
|
|
609
611
|
export interface NetworkAccessConfiguration {
|
|
610
|
-
EniPrivateIpAddress?: string;
|
|
611
|
-
EniId?: string;
|
|
612
|
+
EniPrivateIpAddress?: string | undefined;
|
|
613
|
+
EniId?: string | undefined;
|
|
612
614
|
}
|
|
613
615
|
export declare const ImageBuilderState: {
|
|
614
616
|
readonly DELETING: "DELETING";
|
|
@@ -632,40 +634,40 @@ export declare const ImageBuilderStateChangeReasonCode: {
|
|
|
632
634
|
export type ImageBuilderStateChangeReasonCode =
|
|
633
635
|
(typeof ImageBuilderStateChangeReasonCode)[keyof typeof ImageBuilderStateChangeReasonCode];
|
|
634
636
|
export interface ImageBuilderStateChangeReason {
|
|
635
|
-
Code?: ImageBuilderStateChangeReasonCode;
|
|
636
|
-
Message?: string;
|
|
637
|
+
Code?: ImageBuilderStateChangeReasonCode | undefined;
|
|
638
|
+
Message?: string | undefined;
|
|
637
639
|
}
|
|
638
640
|
export interface ImageBuilder {
|
|
639
641
|
Name: string | undefined;
|
|
640
|
-
Arn?: string;
|
|
641
|
-
ImageArn?: string;
|
|
642
|
-
Description?: string;
|
|
643
|
-
DisplayName?: string;
|
|
644
|
-
VpcConfig?: VpcConfig;
|
|
645
|
-
InstanceType?: string;
|
|
646
|
-
Platform?: PlatformType;
|
|
647
|
-
IamRoleArn?: string;
|
|
648
|
-
State?: ImageBuilderState;
|
|
649
|
-
StateChangeReason?: ImageBuilderStateChangeReason;
|
|
650
|
-
CreatedTime?: Date;
|
|
651
|
-
EnableDefaultInternetAccess?: boolean;
|
|
652
|
-
DomainJoinInfo?: DomainJoinInfo;
|
|
653
|
-
NetworkAccessConfiguration?: NetworkAccessConfiguration;
|
|
654
|
-
ImageBuilderErrors?: ResourceError[];
|
|
655
|
-
AppstreamAgentVersion?: string;
|
|
656
|
-
AccessEndpoints?: AccessEndpoint[];
|
|
657
|
-
LatestAppstreamAgentVersion?: LatestAppstreamAgentVersion;
|
|
642
|
+
Arn?: string | undefined;
|
|
643
|
+
ImageArn?: string | undefined;
|
|
644
|
+
Description?: string | undefined;
|
|
645
|
+
DisplayName?: string | undefined;
|
|
646
|
+
VpcConfig?: VpcConfig | undefined;
|
|
647
|
+
InstanceType?: string | undefined;
|
|
648
|
+
Platform?: PlatformType | undefined;
|
|
649
|
+
IamRoleArn?: string | undefined;
|
|
650
|
+
State?: ImageBuilderState | undefined;
|
|
651
|
+
StateChangeReason?: ImageBuilderStateChangeReason | undefined;
|
|
652
|
+
CreatedTime?: Date | undefined;
|
|
653
|
+
EnableDefaultInternetAccess?: boolean | undefined;
|
|
654
|
+
DomainJoinInfo?: DomainJoinInfo | undefined;
|
|
655
|
+
NetworkAccessConfiguration?: NetworkAccessConfiguration | undefined;
|
|
656
|
+
ImageBuilderErrors?: ResourceError[] | undefined;
|
|
657
|
+
AppstreamAgentVersion?: string | undefined;
|
|
658
|
+
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
659
|
+
LatestAppstreamAgentVersion?: LatestAppstreamAgentVersion | undefined;
|
|
658
660
|
}
|
|
659
661
|
export interface CreateImageBuilderResult {
|
|
660
|
-
ImageBuilder?: ImageBuilder;
|
|
662
|
+
ImageBuilder?: ImageBuilder | undefined;
|
|
661
663
|
}
|
|
662
664
|
export interface CreateImageBuilderStreamingURLRequest {
|
|
663
665
|
Name: string | undefined;
|
|
664
|
-
Validity?: number;
|
|
666
|
+
Validity?: number | undefined;
|
|
665
667
|
}
|
|
666
668
|
export interface CreateImageBuilderStreamingURLResult {
|
|
667
|
-
StreamingURL?: string;
|
|
668
|
-
Expires?: Date;
|
|
669
|
+
StreamingURL?: string | undefined;
|
|
670
|
+
Expires?: Date | undefined;
|
|
669
671
|
}
|
|
670
672
|
export declare const StorageConnectorType: {
|
|
671
673
|
readonly GOOGLE_DRIVE: "GOOGLE_DRIVE";
|
|
@@ -676,8 +678,8 @@ export type StorageConnectorType =
|
|
|
676
678
|
(typeof StorageConnectorType)[keyof typeof StorageConnectorType];
|
|
677
679
|
export interface StorageConnector {
|
|
678
680
|
ConnectorType: StorageConnectorType | undefined;
|
|
679
|
-
ResourceIdentifier?: string;
|
|
680
|
-
Domains?: string[];
|
|
681
|
+
ResourceIdentifier?: string | undefined;
|
|
682
|
+
Domains?: string[] | undefined;
|
|
681
683
|
}
|
|
682
684
|
export declare const PreferredProtocol: {
|
|
683
685
|
readonly TCP: "TCP";
|
|
@@ -686,7 +688,7 @@ export declare const PreferredProtocol: {
|
|
|
686
688
|
export type PreferredProtocol =
|
|
687
689
|
(typeof PreferredProtocol)[keyof typeof PreferredProtocol];
|
|
688
690
|
export interface StreamingExperienceSettings {
|
|
689
|
-
PreferredProtocol?: PreferredProtocol;
|
|
691
|
+
PreferredProtocol?: PreferredProtocol | undefined;
|
|
690
692
|
}
|
|
691
693
|
export declare const Permission: {
|
|
692
694
|
readonly DISABLED: "DISABLED";
|
|
@@ -696,21 +698,21 @@ export type Permission = (typeof Permission)[keyof typeof Permission];
|
|
|
696
698
|
export interface UserSetting {
|
|
697
699
|
Action: Action | undefined;
|
|
698
700
|
Permission: Permission | undefined;
|
|
699
|
-
MaximumLength?: number;
|
|
701
|
+
MaximumLength?: number | undefined;
|
|
700
702
|
}
|
|
701
703
|
export interface CreateStackRequest {
|
|
702
704
|
Name: string | undefined;
|
|
703
|
-
Description?: string;
|
|
704
|
-
DisplayName?: string;
|
|
705
|
-
StorageConnectors?: StorageConnector[];
|
|
706
|
-
RedirectURL?: string;
|
|
707
|
-
FeedbackURL?: string;
|
|
708
|
-
UserSettings?: UserSetting[];
|
|
709
|
-
ApplicationSettings?: ApplicationSettings;
|
|
710
|
-
Tags?: Record<string, string
|
|
711
|
-
AccessEndpoints?: AccessEndpoint[];
|
|
712
|
-
EmbedHostDomains?: string[];
|
|
713
|
-
StreamingExperienceSettings?: StreamingExperienceSettings;
|
|
705
|
+
Description?: string | undefined;
|
|
706
|
+
DisplayName?: string | undefined;
|
|
707
|
+
StorageConnectors?: StorageConnector[] | undefined;
|
|
708
|
+
RedirectURL?: string | undefined;
|
|
709
|
+
FeedbackURL?: string | undefined;
|
|
710
|
+
UserSettings?: UserSetting[] | undefined;
|
|
711
|
+
ApplicationSettings?: ApplicationSettings | undefined;
|
|
712
|
+
Tags?: Record<string, string> | undefined;
|
|
713
|
+
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
714
|
+
EmbedHostDomains?: string[] | undefined;
|
|
715
|
+
StreamingExperienceSettings?: StreamingExperienceSettings | undefined;
|
|
714
716
|
}
|
|
715
717
|
export declare const StackErrorCode: {
|
|
716
718
|
readonly INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR";
|
|
@@ -719,43 +721,43 @@ export declare const StackErrorCode: {
|
|
|
719
721
|
export type StackErrorCode =
|
|
720
722
|
(typeof StackErrorCode)[keyof typeof StackErrorCode];
|
|
721
723
|
export interface StackError {
|
|
722
|
-
ErrorCode?: StackErrorCode;
|
|
723
|
-
ErrorMessage?: string;
|
|
724
|
+
ErrorCode?: StackErrorCode | undefined;
|
|
725
|
+
ErrorMessage?: string | undefined;
|
|
724
726
|
}
|
|
725
727
|
export interface Stack {
|
|
726
|
-
Arn?: string;
|
|
728
|
+
Arn?: string | undefined;
|
|
727
729
|
Name: string | undefined;
|
|
728
|
-
Description?: string;
|
|
729
|
-
DisplayName?: string;
|
|
730
|
-
CreatedTime?: Date;
|
|
731
|
-
StorageConnectors?: StorageConnector[];
|
|
732
|
-
RedirectURL?: string;
|
|
733
|
-
FeedbackURL?: string;
|
|
734
|
-
StackErrors?: StackError[];
|
|
735
|
-
UserSettings?: UserSetting[];
|
|
736
|
-
ApplicationSettings?: ApplicationSettingsResponse;
|
|
737
|
-
AccessEndpoints?: AccessEndpoint[];
|
|
738
|
-
EmbedHostDomains?: string[];
|
|
739
|
-
StreamingExperienceSettings?: StreamingExperienceSettings;
|
|
730
|
+
Description?: string | undefined;
|
|
731
|
+
DisplayName?: string | undefined;
|
|
732
|
+
CreatedTime?: Date | undefined;
|
|
733
|
+
StorageConnectors?: StorageConnector[] | undefined;
|
|
734
|
+
RedirectURL?: string | undefined;
|
|
735
|
+
FeedbackURL?: string | undefined;
|
|
736
|
+
StackErrors?: StackError[] | undefined;
|
|
737
|
+
UserSettings?: UserSetting[] | undefined;
|
|
738
|
+
ApplicationSettings?: ApplicationSettingsResponse | undefined;
|
|
739
|
+
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
740
|
+
EmbedHostDomains?: string[] | undefined;
|
|
741
|
+
StreamingExperienceSettings?: StreamingExperienceSettings | undefined;
|
|
740
742
|
}
|
|
741
743
|
export interface CreateStackResult {
|
|
742
|
-
Stack?: Stack;
|
|
744
|
+
Stack?: Stack | undefined;
|
|
743
745
|
}
|
|
744
746
|
export interface CreateStreamingURLRequest {
|
|
745
747
|
StackName: string | undefined;
|
|
746
748
|
FleetName: string | undefined;
|
|
747
749
|
UserId: string | undefined;
|
|
748
|
-
ApplicationId?: string;
|
|
749
|
-
Validity?: number;
|
|
750
|
-
SessionContext?: string;
|
|
750
|
+
ApplicationId?: string | undefined;
|
|
751
|
+
Validity?: number | undefined;
|
|
752
|
+
SessionContext?: string | undefined;
|
|
751
753
|
}
|
|
752
754
|
export interface CreateStreamingURLResult {
|
|
753
|
-
StreamingURL?: string;
|
|
754
|
-
Expires?: Date;
|
|
755
|
+
StreamingURL?: string | undefined;
|
|
756
|
+
Expires?: Date | undefined;
|
|
755
757
|
}
|
|
756
758
|
export interface ThemeFooterLink {
|
|
757
|
-
DisplayName?: string;
|
|
758
|
-
FooterLinkURL?: string;
|
|
759
|
+
DisplayName?: string | undefined;
|
|
760
|
+
FooterLinkURL?: string | undefined;
|
|
759
761
|
}
|
|
760
762
|
export declare const ThemeStyling: {
|
|
761
763
|
readonly BLUE: "BLUE";
|
|
@@ -766,7 +768,7 @@ export declare const ThemeStyling: {
|
|
|
766
768
|
export type ThemeStyling = (typeof ThemeStyling)[keyof typeof ThemeStyling];
|
|
767
769
|
export interface CreateThemeForStackRequest {
|
|
768
770
|
StackName: string | undefined;
|
|
769
|
-
FooterLinks?: ThemeFooterLink[];
|
|
771
|
+
FooterLinks?: ThemeFooterLink[] | undefined;
|
|
770
772
|
TitleText: string | undefined;
|
|
771
773
|
ThemeStyling: ThemeStyling | undefined;
|
|
772
774
|
OrganizationLogoS3Location: S3Location | undefined;
|
|
@@ -778,25 +780,25 @@ export declare const ThemeState: {
|
|
|
778
780
|
};
|
|
779
781
|
export type ThemeState = (typeof ThemeState)[keyof typeof ThemeState];
|
|
780
782
|
export interface Theme {
|
|
781
|
-
StackName?: string;
|
|
782
|
-
State?: ThemeState;
|
|
783
|
-
ThemeTitleText?: string;
|
|
784
|
-
ThemeStyling?: ThemeStyling;
|
|
785
|
-
ThemeFooterLinks?: ThemeFooterLink[];
|
|
786
|
-
ThemeOrganizationLogoURL?: string;
|
|
787
|
-
ThemeFaviconURL?: string;
|
|
788
|
-
CreatedTime?: Date;
|
|
783
|
+
StackName?: string | undefined;
|
|
784
|
+
State?: ThemeState | undefined;
|
|
785
|
+
ThemeTitleText?: string | undefined;
|
|
786
|
+
ThemeStyling?: ThemeStyling | undefined;
|
|
787
|
+
ThemeFooterLinks?: ThemeFooterLink[] | undefined;
|
|
788
|
+
ThemeOrganizationLogoURL?: string | undefined;
|
|
789
|
+
ThemeFaviconURL?: string | undefined;
|
|
790
|
+
CreatedTime?: Date | undefined;
|
|
789
791
|
}
|
|
790
792
|
export interface CreateThemeForStackResult {
|
|
791
|
-
Theme?: Theme;
|
|
793
|
+
Theme?: Theme | undefined;
|
|
792
794
|
}
|
|
793
795
|
export interface CreateUpdatedImageRequest {
|
|
794
796
|
existingImageName: string | undefined;
|
|
795
797
|
newImageName: string | undefined;
|
|
796
|
-
newImageDescription?: string;
|
|
797
|
-
newImageDisplayName?: string;
|
|
798
|
-
newImageTags?: Record<string, string
|
|
799
|
-
dryRun?: boolean;
|
|
798
|
+
newImageDescription?: string | undefined;
|
|
799
|
+
newImageDisplayName?: string | undefined;
|
|
800
|
+
newImageTags?: Record<string, string> | undefined;
|
|
801
|
+
dryRun?: boolean | undefined;
|
|
800
802
|
}
|
|
801
803
|
export declare const DynamicAppProvidersEnabled: {
|
|
802
804
|
readonly DISABLED: "DISABLED";
|
|
@@ -805,8 +807,8 @@ export declare const DynamicAppProvidersEnabled: {
|
|
|
805
807
|
export type DynamicAppProvidersEnabled =
|
|
806
808
|
(typeof DynamicAppProvidersEnabled)[keyof typeof DynamicAppProvidersEnabled];
|
|
807
809
|
export interface ImagePermissions {
|
|
808
|
-
allowFleet?: boolean;
|
|
809
|
-
allowImageBuilder?: boolean;
|
|
810
|
+
allowFleet?: boolean | undefined;
|
|
811
|
+
allowImageBuilder?: boolean | undefined;
|
|
810
812
|
}
|
|
811
813
|
export declare const ImageSharedWithOthers: {
|
|
812
814
|
readonly FALSE: "FALSE";
|
|
@@ -832,8 +834,8 @@ export declare const ImageStateChangeReasonCode: {
|
|
|
832
834
|
export type ImageStateChangeReasonCode =
|
|
833
835
|
(typeof ImageStateChangeReasonCode)[keyof typeof ImageStateChangeReasonCode];
|
|
834
836
|
export interface ImageStateChangeReason {
|
|
835
|
-
Code?: ImageStateChangeReasonCode;
|
|
836
|
-
Message?: string;
|
|
837
|
+
Code?: ImageStateChangeReasonCode | undefined;
|
|
838
|
+
Message?: string | undefined;
|
|
837
839
|
}
|
|
838
840
|
export declare const VisibilityType: {
|
|
839
841
|
readonly PRIVATE: "PRIVATE";
|
|
@@ -844,30 +846,30 @@ export type VisibilityType =
|
|
|
844
846
|
(typeof VisibilityType)[keyof typeof VisibilityType];
|
|
845
847
|
export interface Image {
|
|
846
848
|
Name: string | undefined;
|
|
847
|
-
Arn?: string;
|
|
848
|
-
BaseImageArn?: string;
|
|
849
|
-
DisplayName?: string;
|
|
850
|
-
State?: ImageState;
|
|
851
|
-
Visibility?: VisibilityType;
|
|
852
|
-
ImageBuilderSupported?: boolean;
|
|
853
|
-
ImageBuilderName?: string;
|
|
854
|
-
Platform?: PlatformType;
|
|
855
|
-
Description?: string;
|
|
856
|
-
StateChangeReason?: ImageStateChangeReason;
|
|
857
|
-
Applications?: Application[];
|
|
858
|
-
CreatedTime?: Date;
|
|
859
|
-
PublicBaseImageReleasedDate?: Date;
|
|
860
|
-
AppstreamAgentVersion?: string;
|
|
861
|
-
ImagePermissions?: ImagePermissions;
|
|
862
|
-
ImageErrors?: ResourceError[];
|
|
863
|
-
LatestAppstreamAgentVersion?: LatestAppstreamAgentVersion;
|
|
864
|
-
SupportedInstanceFamilies?: string[];
|
|
865
|
-
DynamicAppProvidersEnabled?: DynamicAppProvidersEnabled;
|
|
866
|
-
ImageSharedWithOthers?: ImageSharedWithOthers;
|
|
849
|
+
Arn?: string | undefined;
|
|
850
|
+
BaseImageArn?: string | undefined;
|
|
851
|
+
DisplayName?: string | undefined;
|
|
852
|
+
State?: ImageState | undefined;
|
|
853
|
+
Visibility?: VisibilityType | undefined;
|
|
854
|
+
ImageBuilderSupported?: boolean | undefined;
|
|
855
|
+
ImageBuilderName?: string | undefined;
|
|
856
|
+
Platform?: PlatformType | undefined;
|
|
857
|
+
Description?: string | undefined;
|
|
858
|
+
StateChangeReason?: ImageStateChangeReason | undefined;
|
|
859
|
+
Applications?: Application[] | undefined;
|
|
860
|
+
CreatedTime?: Date | undefined;
|
|
861
|
+
PublicBaseImageReleasedDate?: Date | undefined;
|
|
862
|
+
AppstreamAgentVersion?: string | undefined;
|
|
863
|
+
ImagePermissions?: ImagePermissions | undefined;
|
|
864
|
+
ImageErrors?: ResourceError[] | undefined;
|
|
865
|
+
LatestAppstreamAgentVersion?: LatestAppstreamAgentVersion | undefined;
|
|
866
|
+
SupportedInstanceFamilies?: string[] | undefined;
|
|
867
|
+
DynamicAppProvidersEnabled?: DynamicAppProvidersEnabled | undefined;
|
|
868
|
+
ImageSharedWithOthers?: ImageSharedWithOthers | undefined;
|
|
867
869
|
}
|
|
868
870
|
export interface CreateUpdatedImageResult {
|
|
869
|
-
image?: Image;
|
|
870
|
-
canUpdateImage?: boolean;
|
|
871
|
+
image?: Image | undefined;
|
|
872
|
+
canUpdateImage?: boolean | undefined;
|
|
871
873
|
}
|
|
872
874
|
export interface CreateUsageReportSubscriptionRequest {}
|
|
873
875
|
export declare const UsageReportSchedule: {
|
|
@@ -876,8 +878,8 @@ export declare const UsageReportSchedule: {
|
|
|
876
878
|
export type UsageReportSchedule =
|
|
877
879
|
(typeof UsageReportSchedule)[keyof typeof UsageReportSchedule];
|
|
878
880
|
export interface CreateUsageReportSubscriptionResult {
|
|
879
|
-
S3BucketName?: string;
|
|
880
|
-
Schedule?: UsageReportSchedule;
|
|
881
|
+
S3BucketName?: string | undefined;
|
|
882
|
+
Schedule?: UsageReportSchedule | undefined;
|
|
881
883
|
}
|
|
882
884
|
export declare const MessageAction: {
|
|
883
885
|
readonly RESEND: "RESEND";
|
|
@@ -886,9 +888,9 @@ export declare const MessageAction: {
|
|
|
886
888
|
export type MessageAction = (typeof MessageAction)[keyof typeof MessageAction];
|
|
887
889
|
export interface CreateUserRequest {
|
|
888
890
|
UserName: string | undefined;
|
|
889
|
-
MessageAction?: MessageAction;
|
|
890
|
-
FirstName?: string;
|
|
891
|
-
LastName?: string;
|
|
891
|
+
MessageAction?: MessageAction | undefined;
|
|
892
|
+
FirstName?: string | undefined;
|
|
893
|
+
LastName?: string | undefined;
|
|
892
894
|
AuthenticationType: AuthenticationType | undefined;
|
|
893
895
|
}
|
|
894
896
|
export interface CreateUserResult {}
|
|
@@ -899,7 +901,7 @@ export interface DeleteAppBlockResult {}
|
|
|
899
901
|
export declare class ResourceInUseException extends __BaseException {
|
|
900
902
|
readonly name: "ResourceInUseException";
|
|
901
903
|
readonly $fault: "client";
|
|
902
|
-
Message?: string;
|
|
904
|
+
Message?: string | undefined;
|
|
903
905
|
constructor(
|
|
904
906
|
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
905
907
|
);
|
|
@@ -929,13 +931,13 @@ export interface DeleteImageRequest {
|
|
|
929
931
|
Name: string | undefined;
|
|
930
932
|
}
|
|
931
933
|
export interface DeleteImageResult {
|
|
932
|
-
Image?: Image;
|
|
934
|
+
Image?: Image | undefined;
|
|
933
935
|
}
|
|
934
936
|
export interface DeleteImageBuilderRequest {
|
|
935
937
|
Name: string | undefined;
|
|
936
938
|
}
|
|
937
939
|
export interface DeleteImageBuilderResult {
|
|
938
|
-
ImageBuilder?: ImageBuilder;
|
|
940
|
+
ImageBuilder?: ImageBuilder | undefined;
|
|
939
941
|
}
|
|
940
942
|
export interface DeleteImagePermissionsRequest {
|
|
941
943
|
Name: string | undefined;
|
|
@@ -958,122 +960,124 @@ export interface DeleteUserRequest {
|
|
|
958
960
|
}
|
|
959
961
|
export interface DeleteUserResult {}
|
|
960
962
|
export interface DescribeAppBlockBuilderAppBlockAssociationsRequest {
|
|
961
|
-
AppBlockArn?: string;
|
|
962
|
-
AppBlockBuilderName?: string;
|
|
963
|
-
MaxResults?: number;
|
|
964
|
-
NextToken?: string;
|
|
963
|
+
AppBlockArn?: string | undefined;
|
|
964
|
+
AppBlockBuilderName?: string | undefined;
|
|
965
|
+
MaxResults?: number | undefined;
|
|
966
|
+
NextToken?: string | undefined;
|
|
965
967
|
}
|
|
966
968
|
export interface DescribeAppBlockBuilderAppBlockAssociationsResult {
|
|
967
|
-
AppBlockBuilderAppBlockAssociations?:
|
|
968
|
-
|
|
969
|
+
AppBlockBuilderAppBlockAssociations?:
|
|
970
|
+
| AppBlockBuilderAppBlockAssociation[]
|
|
971
|
+
| undefined;
|
|
972
|
+
NextToken?: string | undefined;
|
|
969
973
|
}
|
|
970
974
|
export interface DescribeAppBlockBuildersRequest {
|
|
971
|
-
Names?: string[];
|
|
972
|
-
NextToken?: string;
|
|
973
|
-
MaxResults?: number;
|
|
975
|
+
Names?: string[] | undefined;
|
|
976
|
+
NextToken?: string | undefined;
|
|
977
|
+
MaxResults?: number | undefined;
|
|
974
978
|
}
|
|
975
979
|
export interface DescribeAppBlockBuildersResult {
|
|
976
|
-
AppBlockBuilders?: AppBlockBuilder[];
|
|
977
|
-
NextToken?: string;
|
|
980
|
+
AppBlockBuilders?: AppBlockBuilder[] | undefined;
|
|
981
|
+
NextToken?: string | undefined;
|
|
978
982
|
}
|
|
979
983
|
export interface DescribeAppBlocksRequest {
|
|
980
|
-
Arns?: string[];
|
|
981
|
-
NextToken?: string;
|
|
982
|
-
MaxResults?: number;
|
|
984
|
+
Arns?: string[] | undefined;
|
|
985
|
+
NextToken?: string | undefined;
|
|
986
|
+
MaxResults?: number | undefined;
|
|
983
987
|
}
|
|
984
988
|
export interface DescribeAppBlocksResult {
|
|
985
|
-
AppBlocks?: AppBlock[];
|
|
986
|
-
NextToken?: string;
|
|
989
|
+
AppBlocks?: AppBlock[] | undefined;
|
|
990
|
+
NextToken?: string | undefined;
|
|
987
991
|
}
|
|
988
992
|
export interface DescribeApplicationFleetAssociationsRequest {
|
|
989
|
-
FleetName?: string;
|
|
990
|
-
ApplicationArn?: string;
|
|
991
|
-
MaxResults?: number;
|
|
992
|
-
NextToken?: string;
|
|
993
|
+
FleetName?: string | undefined;
|
|
994
|
+
ApplicationArn?: string | undefined;
|
|
995
|
+
MaxResults?: number | undefined;
|
|
996
|
+
NextToken?: string | undefined;
|
|
993
997
|
}
|
|
994
998
|
export interface DescribeApplicationFleetAssociationsResult {
|
|
995
|
-
ApplicationFleetAssociations?: ApplicationFleetAssociation[];
|
|
996
|
-
NextToken?: string;
|
|
999
|
+
ApplicationFleetAssociations?: ApplicationFleetAssociation[] | undefined;
|
|
1000
|
+
NextToken?: string | undefined;
|
|
997
1001
|
}
|
|
998
1002
|
export interface DescribeApplicationsRequest {
|
|
999
|
-
Arns?: string[];
|
|
1000
|
-
NextToken?: string;
|
|
1001
|
-
MaxResults?: number;
|
|
1003
|
+
Arns?: string[] | undefined;
|
|
1004
|
+
NextToken?: string | undefined;
|
|
1005
|
+
MaxResults?: number | undefined;
|
|
1002
1006
|
}
|
|
1003
1007
|
export interface DescribeApplicationsResult {
|
|
1004
|
-
Applications?: Application[];
|
|
1005
|
-
NextToken?: string;
|
|
1008
|
+
Applications?: Application[] | undefined;
|
|
1009
|
+
NextToken?: string | undefined;
|
|
1006
1010
|
}
|
|
1007
1011
|
export interface DescribeDirectoryConfigsRequest {
|
|
1008
|
-
DirectoryNames?: string[];
|
|
1009
|
-
MaxResults?: number;
|
|
1010
|
-
NextToken?: string;
|
|
1012
|
+
DirectoryNames?: string[] | undefined;
|
|
1013
|
+
MaxResults?: number | undefined;
|
|
1014
|
+
NextToken?: string | undefined;
|
|
1011
1015
|
}
|
|
1012
1016
|
export interface DescribeDirectoryConfigsResult {
|
|
1013
|
-
DirectoryConfigs?: DirectoryConfig[];
|
|
1014
|
-
NextToken?: string;
|
|
1017
|
+
DirectoryConfigs?: DirectoryConfig[] | undefined;
|
|
1018
|
+
NextToken?: string | undefined;
|
|
1015
1019
|
}
|
|
1016
1020
|
export interface DescribeEntitlementsRequest {
|
|
1017
|
-
Name?: string;
|
|
1021
|
+
Name?: string | undefined;
|
|
1018
1022
|
StackName: string | undefined;
|
|
1019
|
-
NextToken?: string;
|
|
1020
|
-
MaxResults?: number;
|
|
1023
|
+
NextToken?: string | undefined;
|
|
1024
|
+
MaxResults?: number | undefined;
|
|
1021
1025
|
}
|
|
1022
1026
|
export interface DescribeEntitlementsResult {
|
|
1023
|
-
Entitlements?: Entitlement[];
|
|
1024
|
-
NextToken?: string;
|
|
1027
|
+
Entitlements?: Entitlement[] | undefined;
|
|
1028
|
+
NextToken?: string | undefined;
|
|
1025
1029
|
}
|
|
1026
1030
|
export interface DescribeFleetsRequest {
|
|
1027
|
-
Names?: string[];
|
|
1028
|
-
NextToken?: string;
|
|
1031
|
+
Names?: string[] | undefined;
|
|
1032
|
+
NextToken?: string | undefined;
|
|
1029
1033
|
}
|
|
1030
1034
|
export interface DescribeFleetsResult {
|
|
1031
|
-
Fleets?: Fleet[];
|
|
1032
|
-
NextToken?: string;
|
|
1035
|
+
Fleets?: Fleet[] | undefined;
|
|
1036
|
+
NextToken?: string | undefined;
|
|
1033
1037
|
}
|
|
1034
1038
|
export interface DescribeImageBuildersRequest {
|
|
1035
|
-
Names?: string[];
|
|
1036
|
-
MaxResults?: number;
|
|
1037
|
-
NextToken?: string;
|
|
1039
|
+
Names?: string[] | undefined;
|
|
1040
|
+
MaxResults?: number | undefined;
|
|
1041
|
+
NextToken?: string | undefined;
|
|
1038
1042
|
}
|
|
1039
1043
|
export interface DescribeImageBuildersResult {
|
|
1040
|
-
ImageBuilders?: ImageBuilder[];
|
|
1041
|
-
NextToken?: string;
|
|
1044
|
+
ImageBuilders?: ImageBuilder[] | undefined;
|
|
1045
|
+
NextToken?: string | undefined;
|
|
1042
1046
|
}
|
|
1043
1047
|
export interface DescribeImagePermissionsRequest {
|
|
1044
1048
|
Name: string | undefined;
|
|
1045
|
-
MaxResults?: number;
|
|
1046
|
-
SharedAwsAccountIds?: string[];
|
|
1047
|
-
NextToken?: string;
|
|
1049
|
+
MaxResults?: number | undefined;
|
|
1050
|
+
SharedAwsAccountIds?: string[] | undefined;
|
|
1051
|
+
NextToken?: string | undefined;
|
|
1048
1052
|
}
|
|
1049
1053
|
export interface SharedImagePermissions {
|
|
1050
1054
|
sharedAccountId: string | undefined;
|
|
1051
1055
|
imagePermissions: ImagePermissions | undefined;
|
|
1052
1056
|
}
|
|
1053
1057
|
export interface DescribeImagePermissionsResult {
|
|
1054
|
-
Name?: string;
|
|
1055
|
-
SharedImagePermissionsList?: SharedImagePermissions[];
|
|
1056
|
-
NextToken?: string;
|
|
1058
|
+
Name?: string | undefined;
|
|
1059
|
+
SharedImagePermissionsList?: SharedImagePermissions[] | undefined;
|
|
1060
|
+
NextToken?: string | undefined;
|
|
1057
1061
|
}
|
|
1058
1062
|
export interface DescribeImagesRequest {
|
|
1059
|
-
Names?: string[];
|
|
1060
|
-
Arns?: string[];
|
|
1061
|
-
Type?: VisibilityType;
|
|
1062
|
-
NextToken?: string;
|
|
1063
|
-
MaxResults?: number;
|
|
1063
|
+
Names?: string[] | undefined;
|
|
1064
|
+
Arns?: string[] | undefined;
|
|
1065
|
+
Type?: VisibilityType | undefined;
|
|
1066
|
+
NextToken?: string | undefined;
|
|
1067
|
+
MaxResults?: number | undefined;
|
|
1064
1068
|
}
|
|
1065
1069
|
export interface DescribeImagesResult {
|
|
1066
|
-
Images?: Image[];
|
|
1067
|
-
NextToken?: string;
|
|
1070
|
+
Images?: Image[] | undefined;
|
|
1071
|
+
NextToken?: string | undefined;
|
|
1068
1072
|
}
|
|
1069
1073
|
export interface DescribeSessionsRequest {
|
|
1070
1074
|
StackName: string | undefined;
|
|
1071
1075
|
FleetName: string | undefined;
|
|
1072
|
-
UserId?: string;
|
|
1073
|
-
NextToken?: string;
|
|
1074
|
-
Limit?: number;
|
|
1075
|
-
AuthenticationType?: AuthenticationType;
|
|
1076
|
-
InstanceId?: string;
|
|
1076
|
+
UserId?: string | undefined;
|
|
1077
|
+
NextToken?: string | undefined;
|
|
1078
|
+
Limit?: number | undefined;
|
|
1079
|
+
AuthenticationType?: AuthenticationType | undefined;
|
|
1080
|
+
InstanceId?: string | undefined;
|
|
1077
1081
|
}
|
|
1078
1082
|
export declare const SessionConnectionState: {
|
|
1079
1083
|
readonly CONNECTED: "CONNECTED";
|
|
@@ -1093,34 +1097,34 @@ export interface Session {
|
|
|
1093
1097
|
StackName: string | undefined;
|
|
1094
1098
|
FleetName: string | undefined;
|
|
1095
1099
|
State: SessionState | undefined;
|
|
1096
|
-
ConnectionState?: SessionConnectionState;
|
|
1097
|
-
StartTime?: Date;
|
|
1098
|
-
MaxExpirationTime?: Date;
|
|
1099
|
-
AuthenticationType?: AuthenticationType;
|
|
1100
|
-
NetworkAccessConfiguration?: NetworkAccessConfiguration;
|
|
1101
|
-
InstanceId?: string;
|
|
1100
|
+
ConnectionState?: SessionConnectionState | undefined;
|
|
1101
|
+
StartTime?: Date | undefined;
|
|
1102
|
+
MaxExpirationTime?: Date | undefined;
|
|
1103
|
+
AuthenticationType?: AuthenticationType | undefined;
|
|
1104
|
+
NetworkAccessConfiguration?: NetworkAccessConfiguration | undefined;
|
|
1105
|
+
InstanceId?: string | undefined;
|
|
1102
1106
|
}
|
|
1103
1107
|
export interface DescribeSessionsResult {
|
|
1104
|
-
Sessions?: Session[];
|
|
1105
|
-
NextToken?: string;
|
|
1108
|
+
Sessions?: Session[] | undefined;
|
|
1109
|
+
NextToken?: string | undefined;
|
|
1106
1110
|
}
|
|
1107
1111
|
export interface DescribeStacksRequest {
|
|
1108
|
-
Names?: string[];
|
|
1109
|
-
NextToken?: string;
|
|
1112
|
+
Names?: string[] | undefined;
|
|
1113
|
+
NextToken?: string | undefined;
|
|
1110
1114
|
}
|
|
1111
1115
|
export interface DescribeStacksResult {
|
|
1112
|
-
Stacks?: Stack[];
|
|
1113
|
-
NextToken?: string;
|
|
1116
|
+
Stacks?: Stack[] | undefined;
|
|
1117
|
+
NextToken?: string | undefined;
|
|
1114
1118
|
}
|
|
1115
1119
|
export interface DescribeThemeForStackRequest {
|
|
1116
1120
|
StackName: string | undefined;
|
|
1117
1121
|
}
|
|
1118
1122
|
export interface DescribeThemeForStackResult {
|
|
1119
|
-
Theme?: Theme;
|
|
1123
|
+
Theme?: Theme | undefined;
|
|
1120
1124
|
}
|
|
1121
1125
|
export interface DescribeUsageReportSubscriptionsRequest {
|
|
1122
|
-
MaxResults?: number;
|
|
1123
|
-
NextToken?: string;
|
|
1126
|
+
MaxResults?: number | undefined;
|
|
1127
|
+
NextToken?: string | undefined;
|
|
1124
1128
|
}
|
|
1125
1129
|
export declare const UsageReportExecutionErrorCode: {
|
|
1126
1130
|
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
@@ -1130,48 +1134,48 @@ export declare const UsageReportExecutionErrorCode: {
|
|
|
1130
1134
|
export type UsageReportExecutionErrorCode =
|
|
1131
1135
|
(typeof UsageReportExecutionErrorCode)[keyof typeof UsageReportExecutionErrorCode];
|
|
1132
1136
|
export interface LastReportGenerationExecutionError {
|
|
1133
|
-
ErrorCode?: UsageReportExecutionErrorCode;
|
|
1134
|
-
ErrorMessage?: string;
|
|
1137
|
+
ErrorCode?: UsageReportExecutionErrorCode | undefined;
|
|
1138
|
+
ErrorMessage?: string | undefined;
|
|
1135
1139
|
}
|
|
1136
1140
|
export interface UsageReportSubscription {
|
|
1137
|
-
S3BucketName?: string;
|
|
1138
|
-
Schedule?: UsageReportSchedule;
|
|
1139
|
-
LastGeneratedReportDate?: Date;
|
|
1140
|
-
SubscriptionErrors?: LastReportGenerationExecutionError[];
|
|
1141
|
+
S3BucketName?: string | undefined;
|
|
1142
|
+
Schedule?: UsageReportSchedule | undefined;
|
|
1143
|
+
LastGeneratedReportDate?: Date | undefined;
|
|
1144
|
+
SubscriptionErrors?: LastReportGenerationExecutionError[] | undefined;
|
|
1141
1145
|
}
|
|
1142
1146
|
export interface DescribeUsageReportSubscriptionsResult {
|
|
1143
|
-
UsageReportSubscriptions?: UsageReportSubscription[];
|
|
1144
|
-
NextToken?: string;
|
|
1147
|
+
UsageReportSubscriptions?: UsageReportSubscription[] | undefined;
|
|
1148
|
+
NextToken?: string | undefined;
|
|
1145
1149
|
}
|
|
1146
1150
|
export interface DescribeUsersRequest {
|
|
1147
1151
|
AuthenticationType: AuthenticationType | undefined;
|
|
1148
|
-
MaxResults?: number;
|
|
1149
|
-
NextToken?: string;
|
|
1152
|
+
MaxResults?: number | undefined;
|
|
1153
|
+
NextToken?: string | undefined;
|
|
1150
1154
|
}
|
|
1151
1155
|
export interface User {
|
|
1152
|
-
Arn?: string;
|
|
1153
|
-
UserName?: string;
|
|
1154
|
-
Enabled?: boolean;
|
|
1155
|
-
Status?: string;
|
|
1156
|
-
FirstName?: string;
|
|
1157
|
-
LastName?: string;
|
|
1158
|
-
CreatedTime?: Date;
|
|
1156
|
+
Arn?: string | undefined;
|
|
1157
|
+
UserName?: string | undefined;
|
|
1158
|
+
Enabled?: boolean | undefined;
|
|
1159
|
+
Status?: string | undefined;
|
|
1160
|
+
FirstName?: string | undefined;
|
|
1161
|
+
LastName?: string | undefined;
|
|
1162
|
+
CreatedTime?: Date | undefined;
|
|
1159
1163
|
AuthenticationType: AuthenticationType | undefined;
|
|
1160
1164
|
}
|
|
1161
1165
|
export interface DescribeUsersResult {
|
|
1162
|
-
Users?: User[];
|
|
1163
|
-
NextToken?: string;
|
|
1166
|
+
Users?: User[] | undefined;
|
|
1167
|
+
NextToken?: string | undefined;
|
|
1164
1168
|
}
|
|
1165
1169
|
export interface DescribeUserStackAssociationsRequest {
|
|
1166
|
-
StackName?: string;
|
|
1167
|
-
UserName?: string;
|
|
1168
|
-
AuthenticationType?: AuthenticationType;
|
|
1169
|
-
MaxResults?: number;
|
|
1170
|
-
NextToken?: string;
|
|
1170
|
+
StackName?: string | undefined;
|
|
1171
|
+
UserName?: string | undefined;
|
|
1172
|
+
AuthenticationType?: AuthenticationType | undefined;
|
|
1173
|
+
MaxResults?: number | undefined;
|
|
1174
|
+
NextToken?: string | undefined;
|
|
1171
1175
|
}
|
|
1172
1176
|
export interface DescribeUserStackAssociationsResult {
|
|
1173
|
-
UserStackAssociations?: UserStackAssociation[];
|
|
1174
|
-
NextToken?: string;
|
|
1177
|
+
UserStackAssociations?: UserStackAssociation[] | undefined;
|
|
1178
|
+
NextToken?: string | undefined;
|
|
1175
1179
|
}
|
|
1176
1180
|
export interface DisableUserRequest {
|
|
1177
1181
|
UserName: string | undefined;
|
|
@@ -1224,41 +1228,41 @@ export type FleetAttribute =
|
|
|
1224
1228
|
(typeof FleetAttribute)[keyof typeof FleetAttribute];
|
|
1225
1229
|
export interface ListAssociatedFleetsRequest {
|
|
1226
1230
|
StackName: string | undefined;
|
|
1227
|
-
NextToken?: string;
|
|
1231
|
+
NextToken?: string | undefined;
|
|
1228
1232
|
}
|
|
1229
1233
|
export interface ListAssociatedFleetsResult {
|
|
1230
|
-
Names?: string[];
|
|
1231
|
-
NextToken?: string;
|
|
1234
|
+
Names?: string[] | undefined;
|
|
1235
|
+
NextToken?: string | undefined;
|
|
1232
1236
|
}
|
|
1233
1237
|
export interface ListAssociatedStacksRequest {
|
|
1234
1238
|
FleetName: string | undefined;
|
|
1235
|
-
NextToken?: string;
|
|
1239
|
+
NextToken?: string | undefined;
|
|
1236
1240
|
}
|
|
1237
1241
|
export interface ListAssociatedStacksResult {
|
|
1238
|
-
Names?: string[];
|
|
1239
|
-
NextToken?: string;
|
|
1242
|
+
Names?: string[] | undefined;
|
|
1243
|
+
NextToken?: string | undefined;
|
|
1240
1244
|
}
|
|
1241
1245
|
export interface ListEntitledApplicationsRequest {
|
|
1242
1246
|
StackName: string | undefined;
|
|
1243
1247
|
EntitlementName: string | undefined;
|
|
1244
|
-
NextToken?: string;
|
|
1245
|
-
MaxResults?: number;
|
|
1248
|
+
NextToken?: string | undefined;
|
|
1249
|
+
MaxResults?: number | undefined;
|
|
1246
1250
|
}
|
|
1247
1251
|
export interface ListEntitledApplicationsResult {
|
|
1248
|
-
EntitledApplications?: EntitledApplication[];
|
|
1249
|
-
NextToken?: string;
|
|
1252
|
+
EntitledApplications?: EntitledApplication[] | undefined;
|
|
1253
|
+
NextToken?: string | undefined;
|
|
1250
1254
|
}
|
|
1251
1255
|
export interface ListTagsForResourceRequest {
|
|
1252
1256
|
ResourceArn: string | undefined;
|
|
1253
1257
|
}
|
|
1254
1258
|
export interface ListTagsForResourceResponse {
|
|
1255
|
-
Tags?: Record<string, string
|
|
1259
|
+
Tags?: Record<string, string> | undefined;
|
|
1256
1260
|
}
|
|
1257
1261
|
export interface StartAppBlockBuilderRequest {
|
|
1258
1262
|
Name: string | undefined;
|
|
1259
1263
|
}
|
|
1260
1264
|
export interface StartAppBlockBuilderResult {
|
|
1261
|
-
AppBlockBuilder?: AppBlockBuilder;
|
|
1265
|
+
AppBlockBuilder?: AppBlockBuilder | undefined;
|
|
1262
1266
|
}
|
|
1263
1267
|
export interface StartFleetRequest {
|
|
1264
1268
|
Name: string | undefined;
|
|
@@ -1266,16 +1270,16 @@ export interface StartFleetRequest {
|
|
|
1266
1270
|
export interface StartFleetResult {}
|
|
1267
1271
|
export interface StartImageBuilderRequest {
|
|
1268
1272
|
Name: string | undefined;
|
|
1269
|
-
AppstreamAgentVersion?: string;
|
|
1273
|
+
AppstreamAgentVersion?: string | undefined;
|
|
1270
1274
|
}
|
|
1271
1275
|
export interface StartImageBuilderResult {
|
|
1272
|
-
ImageBuilder?: ImageBuilder;
|
|
1276
|
+
ImageBuilder?: ImageBuilder | undefined;
|
|
1273
1277
|
}
|
|
1274
1278
|
export interface StopAppBlockBuilderRequest {
|
|
1275
1279
|
Name: string | undefined;
|
|
1276
1280
|
}
|
|
1277
1281
|
export interface StopAppBlockBuilderResult {
|
|
1278
|
-
AppBlockBuilder?: AppBlockBuilder;
|
|
1282
|
+
AppBlockBuilder?: AppBlockBuilder | undefined;
|
|
1279
1283
|
}
|
|
1280
1284
|
export interface StopFleetRequest {
|
|
1281
1285
|
Name: string | undefined;
|
|
@@ -1285,7 +1289,7 @@ export interface StopImageBuilderRequest {
|
|
|
1285
1289
|
Name: string | undefined;
|
|
1286
1290
|
}
|
|
1287
1291
|
export interface StopImageBuilderResult {
|
|
1288
|
-
ImageBuilder?: ImageBuilder;
|
|
1292
|
+
ImageBuilder?: ImageBuilder | undefined;
|
|
1289
1293
|
}
|
|
1290
1294
|
export interface TagResourceRequest {
|
|
1291
1295
|
ResourceArn: string | undefined;
|
|
@@ -1299,78 +1303,78 @@ export interface UntagResourceRequest {
|
|
|
1299
1303
|
export interface UntagResourceResponse {}
|
|
1300
1304
|
export interface UpdateAppBlockBuilderRequest {
|
|
1301
1305
|
Name: string | undefined;
|
|
1302
|
-
Description?: string;
|
|
1303
|
-
DisplayName?: string;
|
|
1304
|
-
Platform?: PlatformType;
|
|
1305
|
-
InstanceType?: string;
|
|
1306
|
-
VpcConfig?: VpcConfig;
|
|
1307
|
-
EnableDefaultInternetAccess?: boolean;
|
|
1308
|
-
IamRoleArn?: string;
|
|
1309
|
-
AccessEndpoints?: AccessEndpoint[];
|
|
1310
|
-
AttributesToDelete?: AppBlockBuilderAttribute[];
|
|
1306
|
+
Description?: string | undefined;
|
|
1307
|
+
DisplayName?: string | undefined;
|
|
1308
|
+
Platform?: PlatformType | undefined;
|
|
1309
|
+
InstanceType?: string | undefined;
|
|
1310
|
+
VpcConfig?: VpcConfig | undefined;
|
|
1311
|
+
EnableDefaultInternetAccess?: boolean | undefined;
|
|
1312
|
+
IamRoleArn?: string | undefined;
|
|
1313
|
+
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
1314
|
+
AttributesToDelete?: AppBlockBuilderAttribute[] | undefined;
|
|
1311
1315
|
}
|
|
1312
1316
|
export interface UpdateAppBlockBuilderResult {
|
|
1313
|
-
AppBlockBuilder?: AppBlockBuilder;
|
|
1317
|
+
AppBlockBuilder?: AppBlockBuilder | undefined;
|
|
1314
1318
|
}
|
|
1315
1319
|
export interface UpdateApplicationRequest {
|
|
1316
1320
|
Name: string | undefined;
|
|
1317
|
-
DisplayName?: string;
|
|
1318
|
-
Description?: string;
|
|
1319
|
-
IconS3Location?: S3Location;
|
|
1320
|
-
LaunchPath?: string;
|
|
1321
|
-
WorkingDirectory?: string;
|
|
1322
|
-
LaunchParameters?: string;
|
|
1323
|
-
AppBlockArn?: string;
|
|
1324
|
-
AttributesToDelete?: ApplicationAttribute[];
|
|
1321
|
+
DisplayName?: string | undefined;
|
|
1322
|
+
Description?: string | undefined;
|
|
1323
|
+
IconS3Location?: S3Location | undefined;
|
|
1324
|
+
LaunchPath?: string | undefined;
|
|
1325
|
+
WorkingDirectory?: string | undefined;
|
|
1326
|
+
LaunchParameters?: string | undefined;
|
|
1327
|
+
AppBlockArn?: string | undefined;
|
|
1328
|
+
AttributesToDelete?: ApplicationAttribute[] | undefined;
|
|
1325
1329
|
}
|
|
1326
1330
|
export interface UpdateApplicationResult {
|
|
1327
|
-
Application?: Application;
|
|
1331
|
+
Application?: Application | undefined;
|
|
1328
1332
|
}
|
|
1329
1333
|
export interface UpdateDirectoryConfigRequest {
|
|
1330
1334
|
DirectoryName: string | undefined;
|
|
1331
|
-
OrganizationalUnitDistinguishedNames?: string[];
|
|
1332
|
-
ServiceAccountCredentials?: ServiceAccountCredentials;
|
|
1333
|
-
CertificateBasedAuthProperties?: CertificateBasedAuthProperties;
|
|
1335
|
+
OrganizationalUnitDistinguishedNames?: string[] | undefined;
|
|
1336
|
+
ServiceAccountCredentials?: ServiceAccountCredentials | undefined;
|
|
1337
|
+
CertificateBasedAuthProperties?: CertificateBasedAuthProperties | undefined;
|
|
1334
1338
|
}
|
|
1335
1339
|
export interface UpdateDirectoryConfigResult {
|
|
1336
|
-
DirectoryConfig?: DirectoryConfig;
|
|
1340
|
+
DirectoryConfig?: DirectoryConfig | undefined;
|
|
1337
1341
|
}
|
|
1338
1342
|
export interface UpdateEntitlementRequest {
|
|
1339
1343
|
Name: string | undefined;
|
|
1340
1344
|
StackName: string | undefined;
|
|
1341
|
-
Description?: string;
|
|
1342
|
-
AppVisibility?: AppVisibility;
|
|
1343
|
-
Attributes?: EntitlementAttribute[];
|
|
1345
|
+
Description?: string | undefined;
|
|
1346
|
+
AppVisibility?: AppVisibility | undefined;
|
|
1347
|
+
Attributes?: EntitlementAttribute[] | undefined;
|
|
1344
1348
|
}
|
|
1345
1349
|
export interface UpdateEntitlementResult {
|
|
1346
|
-
Entitlement?: Entitlement;
|
|
1350
|
+
Entitlement?: Entitlement | undefined;
|
|
1347
1351
|
}
|
|
1348
1352
|
export interface UpdateFleetRequest {
|
|
1349
|
-
ImageName?: string;
|
|
1350
|
-
ImageArn?: string;
|
|
1351
|
-
Name?: string;
|
|
1352
|
-
InstanceType?: string;
|
|
1353
|
-
ComputeCapacity?: ComputeCapacity;
|
|
1354
|
-
VpcConfig?: VpcConfig;
|
|
1355
|
-
MaxUserDurationInSeconds?: number;
|
|
1356
|
-
DisconnectTimeoutInSeconds?: number;
|
|
1357
|
-
DeleteVpcConfig?: boolean;
|
|
1358
|
-
Description?: string;
|
|
1359
|
-
DisplayName?: string;
|
|
1360
|
-
EnableDefaultInternetAccess?: boolean;
|
|
1361
|
-
DomainJoinInfo?: DomainJoinInfo;
|
|
1362
|
-
IdleDisconnectTimeoutInSeconds?: number;
|
|
1363
|
-
AttributesToDelete?: FleetAttribute[];
|
|
1364
|
-
IamRoleArn?: string;
|
|
1365
|
-
StreamView?: StreamView;
|
|
1366
|
-
Platform?: PlatformType;
|
|
1367
|
-
MaxConcurrentSessions?: number;
|
|
1368
|
-
UsbDeviceFilterStrings?: string[];
|
|
1369
|
-
SessionScriptS3Location?: S3Location;
|
|
1370
|
-
MaxSessionsPerInstance?: number;
|
|
1353
|
+
ImageName?: string | undefined;
|
|
1354
|
+
ImageArn?: string | undefined;
|
|
1355
|
+
Name?: string | undefined;
|
|
1356
|
+
InstanceType?: string | undefined;
|
|
1357
|
+
ComputeCapacity?: ComputeCapacity | undefined;
|
|
1358
|
+
VpcConfig?: VpcConfig | undefined;
|
|
1359
|
+
MaxUserDurationInSeconds?: number | undefined;
|
|
1360
|
+
DisconnectTimeoutInSeconds?: number | undefined;
|
|
1361
|
+
DeleteVpcConfig?: boolean | undefined;
|
|
1362
|
+
Description?: string | undefined;
|
|
1363
|
+
DisplayName?: string | undefined;
|
|
1364
|
+
EnableDefaultInternetAccess?: boolean | undefined;
|
|
1365
|
+
DomainJoinInfo?: DomainJoinInfo | undefined;
|
|
1366
|
+
IdleDisconnectTimeoutInSeconds?: number | undefined;
|
|
1367
|
+
AttributesToDelete?: FleetAttribute[] | undefined;
|
|
1368
|
+
IamRoleArn?: string | undefined;
|
|
1369
|
+
StreamView?: StreamView | undefined;
|
|
1370
|
+
Platform?: PlatformType | undefined;
|
|
1371
|
+
MaxConcurrentSessions?: number | undefined;
|
|
1372
|
+
UsbDeviceFilterStrings?: string[] | undefined;
|
|
1373
|
+
SessionScriptS3Location?: S3Location | undefined;
|
|
1374
|
+
MaxSessionsPerInstance?: number | undefined;
|
|
1371
1375
|
}
|
|
1372
1376
|
export interface UpdateFleetResult {
|
|
1373
|
-
Fleet?: Fleet;
|
|
1377
|
+
Fleet?: Fleet | undefined;
|
|
1374
1378
|
}
|
|
1375
1379
|
export interface UpdateImagePermissionsRequest {
|
|
1376
1380
|
Name: string | undefined;
|
|
@@ -1395,22 +1399,22 @@ export declare const StackAttribute: {
|
|
|
1395
1399
|
export type StackAttribute =
|
|
1396
1400
|
(typeof StackAttribute)[keyof typeof StackAttribute];
|
|
1397
1401
|
export interface UpdateStackRequest {
|
|
1398
|
-
DisplayName?: string;
|
|
1399
|
-
Description?: string;
|
|
1402
|
+
DisplayName?: string | undefined;
|
|
1403
|
+
Description?: string | undefined;
|
|
1400
1404
|
Name: string | undefined;
|
|
1401
|
-
StorageConnectors?: StorageConnector[];
|
|
1402
|
-
DeleteStorageConnectors?: boolean;
|
|
1403
|
-
RedirectURL?: string;
|
|
1404
|
-
FeedbackURL?: string;
|
|
1405
|
-
AttributesToDelete?: StackAttribute[];
|
|
1406
|
-
UserSettings?: UserSetting[];
|
|
1407
|
-
ApplicationSettings?: ApplicationSettings;
|
|
1408
|
-
AccessEndpoints?: AccessEndpoint[];
|
|
1409
|
-
EmbedHostDomains?: string[];
|
|
1410
|
-
StreamingExperienceSettings?: StreamingExperienceSettings;
|
|
1405
|
+
StorageConnectors?: StorageConnector[] | undefined;
|
|
1406
|
+
DeleteStorageConnectors?: boolean | undefined;
|
|
1407
|
+
RedirectURL?: string | undefined;
|
|
1408
|
+
FeedbackURL?: string | undefined;
|
|
1409
|
+
AttributesToDelete?: StackAttribute[] | undefined;
|
|
1410
|
+
UserSettings?: UserSetting[] | undefined;
|
|
1411
|
+
ApplicationSettings?: ApplicationSettings | undefined;
|
|
1412
|
+
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
1413
|
+
EmbedHostDomains?: string[] | undefined;
|
|
1414
|
+
StreamingExperienceSettings?: StreamingExperienceSettings | undefined;
|
|
1411
1415
|
}
|
|
1412
1416
|
export interface UpdateStackResult {
|
|
1413
|
-
Stack?: Stack;
|
|
1417
|
+
Stack?: Stack | undefined;
|
|
1414
1418
|
}
|
|
1415
1419
|
export declare const ThemeAttribute: {
|
|
1416
1420
|
readonly FOOTER_LINKS: "FOOTER_LINKS";
|
|
@@ -1419,16 +1423,16 @@ export type ThemeAttribute =
|
|
|
1419
1423
|
(typeof ThemeAttribute)[keyof typeof ThemeAttribute];
|
|
1420
1424
|
export interface UpdateThemeForStackRequest {
|
|
1421
1425
|
StackName: string | undefined;
|
|
1422
|
-
FooterLinks?: ThemeFooterLink[];
|
|
1423
|
-
TitleText?: string;
|
|
1424
|
-
ThemeStyling?: ThemeStyling;
|
|
1425
|
-
OrganizationLogoS3Location?: S3Location;
|
|
1426
|
-
FaviconS3Location?: S3Location;
|
|
1427
|
-
State?: ThemeState;
|
|
1428
|
-
AttributesToDelete?: ThemeAttribute[];
|
|
1426
|
+
FooterLinks?: ThemeFooterLink[] | undefined;
|
|
1427
|
+
TitleText?: string | undefined;
|
|
1428
|
+
ThemeStyling?: ThemeStyling | undefined;
|
|
1429
|
+
OrganizationLogoS3Location?: S3Location | undefined;
|
|
1430
|
+
FaviconS3Location?: S3Location | undefined;
|
|
1431
|
+
State?: ThemeState | undefined;
|
|
1432
|
+
AttributesToDelete?: ThemeAttribute[] | undefined;
|
|
1429
1433
|
}
|
|
1430
1434
|
export interface UpdateThemeForStackResult {
|
|
1431
|
-
Theme?: Theme;
|
|
1435
|
+
Theme?: Theme | undefined;
|
|
1432
1436
|
}
|
|
1433
1437
|
export declare const UserStackAssociationFilterSensitiveLog: (
|
|
1434
1438
|
obj: UserStackAssociation
|