@aws-sdk/client-appstream 3.686.0 → 3.691.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 +7 -7
|
@@ -25,7 +25,7 @@ export interface AccessEndpoint {
|
|
|
25
25
|
* <p>The identifier (ID) of the VPC in which the interface endpoint is used.</p>
|
|
26
26
|
* @public
|
|
27
27
|
*/
|
|
28
|
-
VpceId?: string;
|
|
28
|
+
VpceId?: string | undefined;
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
31
|
* @public
|
|
@@ -54,12 +54,12 @@ export interface ErrorDetails {
|
|
|
54
54
|
* <p>The error code.</p>
|
|
55
55
|
* @public
|
|
56
56
|
*/
|
|
57
|
-
ErrorCode?: string;
|
|
57
|
+
ErrorCode?: string | undefined;
|
|
58
58
|
/**
|
|
59
59
|
* <p>The error message.</p>
|
|
60
60
|
* @public
|
|
61
61
|
*/
|
|
62
|
-
ErrorMessage?: string;
|
|
62
|
+
ErrorMessage?: string | undefined;
|
|
63
63
|
}
|
|
64
64
|
/**
|
|
65
65
|
* @public
|
|
@@ -110,7 +110,7 @@ export interface S3Location {
|
|
|
110
110
|
* </ul>
|
|
111
111
|
* @public
|
|
112
112
|
*/
|
|
113
|
-
S3Key?: string;
|
|
113
|
+
S3Key?: string | undefined;
|
|
114
114
|
}
|
|
115
115
|
/**
|
|
116
116
|
* <p>Describes the details of the script.</p>
|
|
@@ -131,7 +131,7 @@ export interface ScriptDetails {
|
|
|
131
131
|
* <p>The runtime parameters passed to the run path for the script.</p>
|
|
132
132
|
* @public
|
|
133
133
|
*/
|
|
134
|
-
ExecutableParameters?: string;
|
|
134
|
+
ExecutableParameters?: string | undefined;
|
|
135
135
|
/**
|
|
136
136
|
* <p>The run timeout, in seconds, for the script.</p>
|
|
137
137
|
* @public
|
|
@@ -175,39 +175,39 @@ export interface AppBlock {
|
|
|
175
175
|
* <p>The description of the app block.</p>
|
|
176
176
|
* @public
|
|
177
177
|
*/
|
|
178
|
-
Description?: string;
|
|
178
|
+
Description?: string | undefined;
|
|
179
179
|
/**
|
|
180
180
|
* <p>The display name of the app block.</p>
|
|
181
181
|
* @public
|
|
182
182
|
*/
|
|
183
|
-
DisplayName?: string;
|
|
183
|
+
DisplayName?: string | undefined;
|
|
184
184
|
/**
|
|
185
185
|
* <p>The source S3 location of the app block.</p>
|
|
186
186
|
* @public
|
|
187
187
|
*/
|
|
188
|
-
SourceS3Location?: S3Location;
|
|
188
|
+
SourceS3Location?: S3Location | undefined;
|
|
189
189
|
/**
|
|
190
190
|
* <p>The setup script details of the app block.</p>
|
|
191
191
|
* <p>This only applies to app blocks with PackagingType <code>CUSTOM</code>.</p>
|
|
192
192
|
* @public
|
|
193
193
|
*/
|
|
194
|
-
SetupScriptDetails?: ScriptDetails;
|
|
194
|
+
SetupScriptDetails?: ScriptDetails | undefined;
|
|
195
195
|
/**
|
|
196
196
|
* <p>The created time of the app block.</p>
|
|
197
197
|
* @public
|
|
198
198
|
*/
|
|
199
|
-
CreatedTime?: Date;
|
|
199
|
+
CreatedTime?: Date | undefined;
|
|
200
200
|
/**
|
|
201
201
|
* <p>The post setup script details of the app block.</p>
|
|
202
202
|
* <p>This only applies to app blocks with PackagingType <code>APPSTREAM2</code>.</p>
|
|
203
203
|
* @public
|
|
204
204
|
*/
|
|
205
|
-
PostSetupScriptDetails?: ScriptDetails;
|
|
205
|
+
PostSetupScriptDetails?: ScriptDetails | undefined;
|
|
206
206
|
/**
|
|
207
207
|
* <p>The packaging type of the app block.</p>
|
|
208
208
|
* @public
|
|
209
209
|
*/
|
|
210
|
-
PackagingType?: PackagingType;
|
|
210
|
+
PackagingType?: PackagingType | undefined;
|
|
211
211
|
/**
|
|
212
212
|
* <p>The state of the app block.</p>
|
|
213
213
|
* <p>An app block with AppStream 2.0 packaging will be in the <code>INACTIVE</code> state
|
|
@@ -216,12 +216,12 @@ export interface AppBlock {
|
|
|
216
216
|
* <p>Custom app blocks are always in the <code>ACTIVE</code> state and no action is required to use them.</p>
|
|
217
217
|
* @public
|
|
218
218
|
*/
|
|
219
|
-
State?: AppBlockState;
|
|
219
|
+
State?: AppBlockState | undefined;
|
|
220
220
|
/**
|
|
221
221
|
* <p>The errors of the app block.</p>
|
|
222
222
|
* @public
|
|
223
223
|
*/
|
|
224
|
-
AppBlockErrors?: ErrorDetails[];
|
|
224
|
+
AppBlockErrors?: ErrorDetails[] | undefined;
|
|
225
225
|
}
|
|
226
226
|
/**
|
|
227
227
|
* @public
|
|
@@ -272,17 +272,17 @@ export interface ResourceError {
|
|
|
272
272
|
* <p>The error code.</p>
|
|
273
273
|
* @public
|
|
274
274
|
*/
|
|
275
|
-
ErrorCode?: FleetErrorCode;
|
|
275
|
+
ErrorCode?: FleetErrorCode | undefined;
|
|
276
276
|
/**
|
|
277
277
|
* <p>The error message.</p>
|
|
278
278
|
* @public
|
|
279
279
|
*/
|
|
280
|
-
ErrorMessage?: string;
|
|
280
|
+
ErrorMessage?: string | undefined;
|
|
281
281
|
/**
|
|
282
282
|
* <p>The time the error occurred.</p>
|
|
283
283
|
* @public
|
|
284
284
|
*/
|
|
285
|
-
ErrorTimestamp?: Date;
|
|
285
|
+
ErrorTimestamp?: Date | undefined;
|
|
286
286
|
}
|
|
287
287
|
/**
|
|
288
288
|
* @public
|
|
@@ -329,12 +329,12 @@ export interface AppBlockBuilderStateChangeReason {
|
|
|
329
329
|
* <p>The state change reason code.</p>
|
|
330
330
|
* @public
|
|
331
331
|
*/
|
|
332
|
-
Code?: AppBlockBuilderStateChangeReasonCode;
|
|
332
|
+
Code?: AppBlockBuilderStateChangeReasonCode | undefined;
|
|
333
333
|
/**
|
|
334
334
|
* <p>The state change reason message.</p>
|
|
335
335
|
* @public
|
|
336
336
|
*/
|
|
337
|
-
Message?: string;
|
|
337
|
+
Message?: string | undefined;
|
|
338
338
|
}
|
|
339
339
|
/**
|
|
340
340
|
* <p>Describes VPC configuration information for fleets and image builders.</p>
|
|
@@ -345,12 +345,12 @@ export interface VpcConfig {
|
|
|
345
345
|
* <p>The identifiers of the subnets to which a network interface is attached from the fleet instance or image builder instance. Fleet instances use one or more subnets. Image builder instances use one subnet.</p>
|
|
346
346
|
* @public
|
|
347
347
|
*/
|
|
348
|
-
SubnetIds?: string[];
|
|
348
|
+
SubnetIds?: string[] | undefined;
|
|
349
349
|
/**
|
|
350
350
|
* <p>The identifiers of the security groups for the fleet or image builder.</p>
|
|
351
351
|
* @public
|
|
352
352
|
*/
|
|
353
|
-
SecurityGroupIds?: string[];
|
|
353
|
+
SecurityGroupIds?: string[] | undefined;
|
|
354
354
|
}
|
|
355
355
|
/**
|
|
356
356
|
* <p>Describes an app block builder.</p>
|
|
@@ -371,12 +371,12 @@ export interface AppBlockBuilder {
|
|
|
371
371
|
* <p>The display name of the app block builder.</p>
|
|
372
372
|
* @public
|
|
373
373
|
*/
|
|
374
|
-
DisplayName?: string;
|
|
374
|
+
DisplayName?: string | undefined;
|
|
375
375
|
/**
|
|
376
376
|
* <p>The description of the app block builder.</p>
|
|
377
377
|
* @public
|
|
378
378
|
*/
|
|
379
|
-
Description?: string;
|
|
379
|
+
Description?: string | undefined;
|
|
380
380
|
/**
|
|
381
381
|
* <p>The platform of the app block builder.</p>
|
|
382
382
|
* <p>
|
|
@@ -393,12 +393,12 @@ export interface AppBlockBuilder {
|
|
|
393
393
|
* <p>Indicates whether default internet access is enabled for the app block builder.</p>
|
|
394
394
|
* @public
|
|
395
395
|
*/
|
|
396
|
-
EnableDefaultInternetAccess?: boolean;
|
|
396
|
+
EnableDefaultInternetAccess?: boolean | undefined;
|
|
397
397
|
/**
|
|
398
398
|
* <p>The ARN of the IAM role that is applied to the app block builder.</p>
|
|
399
399
|
* @public
|
|
400
400
|
*/
|
|
401
|
-
IamRoleArn?: string;
|
|
401
|
+
IamRoleArn?: string | undefined;
|
|
402
402
|
/**
|
|
403
403
|
* <p>The VPC configuration for the app block builder.</p>
|
|
404
404
|
* @public
|
|
@@ -413,22 +413,22 @@ export interface AppBlockBuilder {
|
|
|
413
413
|
* <p>The creation time of the app block builder.</p>
|
|
414
414
|
* @public
|
|
415
415
|
*/
|
|
416
|
-
CreatedTime?: Date;
|
|
416
|
+
CreatedTime?: Date | undefined;
|
|
417
417
|
/**
|
|
418
418
|
* <p>The app block builder errors.</p>
|
|
419
419
|
* @public
|
|
420
420
|
*/
|
|
421
|
-
AppBlockBuilderErrors?: ResourceError[];
|
|
421
|
+
AppBlockBuilderErrors?: ResourceError[] | undefined;
|
|
422
422
|
/**
|
|
423
423
|
* <p>The state change reason.</p>
|
|
424
424
|
* @public
|
|
425
425
|
*/
|
|
426
|
-
StateChangeReason?: AppBlockBuilderStateChangeReason;
|
|
426
|
+
StateChangeReason?: AppBlockBuilderStateChangeReason | undefined;
|
|
427
427
|
/**
|
|
428
428
|
* <p>The list of interface VPC endpoint (interface endpoint) objects. Administrators can connect to the app block builder only through the specified endpoints.</p>
|
|
429
429
|
* @public
|
|
430
430
|
*/
|
|
431
|
-
AccessEndpoints?: AccessEndpoint[];
|
|
431
|
+
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
432
432
|
}
|
|
433
433
|
/**
|
|
434
434
|
* <p>Describes an association between an app block builder and app block.</p>
|
|
@@ -484,77 +484,77 @@ export interface Application {
|
|
|
484
484
|
* <p>The name of the application.</p>
|
|
485
485
|
* @public
|
|
486
486
|
*/
|
|
487
|
-
Name?: string;
|
|
487
|
+
Name?: string | undefined;
|
|
488
488
|
/**
|
|
489
489
|
* <p>The application name to display.</p>
|
|
490
490
|
* @public
|
|
491
491
|
*/
|
|
492
|
-
DisplayName?: string;
|
|
492
|
+
DisplayName?: string | undefined;
|
|
493
493
|
/**
|
|
494
494
|
* <p>The URL for the application icon. This URL might be time-limited.</p>
|
|
495
495
|
* @public
|
|
496
496
|
*/
|
|
497
|
-
IconURL?: string;
|
|
497
|
+
IconURL?: string | undefined;
|
|
498
498
|
/**
|
|
499
499
|
* <p>The path to the application executable in the instance.</p>
|
|
500
500
|
* @public
|
|
501
501
|
*/
|
|
502
|
-
LaunchPath?: string;
|
|
502
|
+
LaunchPath?: string | undefined;
|
|
503
503
|
/**
|
|
504
504
|
* <p>The arguments that are passed to the application at launch.</p>
|
|
505
505
|
* @public
|
|
506
506
|
*/
|
|
507
|
-
LaunchParameters?: string;
|
|
507
|
+
LaunchParameters?: string | undefined;
|
|
508
508
|
/**
|
|
509
509
|
* <p>If there is a problem, the application can be disabled after image creation.</p>
|
|
510
510
|
* @public
|
|
511
511
|
*/
|
|
512
|
-
Enabled?: boolean;
|
|
512
|
+
Enabled?: boolean | undefined;
|
|
513
513
|
/**
|
|
514
514
|
* <p>Additional attributes that describe the application.</p>
|
|
515
515
|
* @public
|
|
516
516
|
*/
|
|
517
|
-
Metadata?: Record<string, string
|
|
517
|
+
Metadata?: Record<string, string> | undefined;
|
|
518
518
|
/**
|
|
519
519
|
* <p>The working directory for the application.</p>
|
|
520
520
|
* @public
|
|
521
521
|
*/
|
|
522
|
-
WorkingDirectory?: string;
|
|
522
|
+
WorkingDirectory?: string | undefined;
|
|
523
523
|
/**
|
|
524
524
|
* <p>The description of the application.</p>
|
|
525
525
|
* @public
|
|
526
526
|
*/
|
|
527
|
-
Description?: string;
|
|
527
|
+
Description?: string | undefined;
|
|
528
528
|
/**
|
|
529
529
|
* <p>The ARN of the application.</p>
|
|
530
530
|
* @public
|
|
531
531
|
*/
|
|
532
|
-
Arn?: string;
|
|
532
|
+
Arn?: string | undefined;
|
|
533
533
|
/**
|
|
534
534
|
* <p>The app block ARN of the application.</p>
|
|
535
535
|
* @public
|
|
536
536
|
*/
|
|
537
|
-
AppBlockArn?: string;
|
|
537
|
+
AppBlockArn?: string | undefined;
|
|
538
538
|
/**
|
|
539
539
|
* <p>The S3 location of the application icon.</p>
|
|
540
540
|
* @public
|
|
541
541
|
*/
|
|
542
|
-
IconS3Location?: S3Location;
|
|
542
|
+
IconS3Location?: S3Location | undefined;
|
|
543
543
|
/**
|
|
544
544
|
* <p>The platforms on which the application can run.</p>
|
|
545
545
|
* @public
|
|
546
546
|
*/
|
|
547
|
-
Platforms?: PlatformType[];
|
|
547
|
+
Platforms?: PlatformType[] | undefined;
|
|
548
548
|
/**
|
|
549
549
|
* <p>The instance families for the application.</p>
|
|
550
550
|
* @public
|
|
551
551
|
*/
|
|
552
|
-
InstanceFamilies?: string[];
|
|
552
|
+
InstanceFamilies?: string[] | undefined;
|
|
553
553
|
/**
|
|
554
554
|
* <p>The time at which the application was created within the app block.</p>
|
|
555
555
|
* @public
|
|
556
556
|
*/
|
|
557
|
-
CreatedTime?: Date;
|
|
557
|
+
CreatedTime?: Date | undefined;
|
|
558
558
|
}
|
|
559
559
|
/**
|
|
560
560
|
* @public
|
|
@@ -598,7 +598,7 @@ export interface ApplicationSettings {
|
|
|
598
598
|
* <p>The path prefix for the S3 bucket where users’ persistent application settings are stored. You can allow the same persistent application settings to be used across multiple stacks by specifying the same settings group for each stack. </p>
|
|
599
599
|
* @public
|
|
600
600
|
*/
|
|
601
|
-
SettingsGroup?: string;
|
|
601
|
+
SettingsGroup?: string | undefined;
|
|
602
602
|
}
|
|
603
603
|
/**
|
|
604
604
|
* <p>Describes the persistent application settings for users of a stack.</p>
|
|
@@ -609,18 +609,18 @@ export interface ApplicationSettingsResponse {
|
|
|
609
609
|
* <p>Specifies whether persistent application settings are enabled for users during their streaming sessions.</p>
|
|
610
610
|
* @public
|
|
611
611
|
*/
|
|
612
|
-
Enabled?: boolean;
|
|
612
|
+
Enabled?: boolean | undefined;
|
|
613
613
|
/**
|
|
614
614
|
* <p>The path prefix for the S3 bucket where users’ persistent application settings are stored.</p>
|
|
615
615
|
* @public
|
|
616
616
|
*/
|
|
617
|
-
SettingsGroup?: string;
|
|
617
|
+
SettingsGroup?: string | undefined;
|
|
618
618
|
/**
|
|
619
619
|
* <p>The S3 bucket where users’ persistent application settings are stored. When persistent application settings are enabled for the first time for an account in an AWS Region, an S3 bucket is created. The bucket is unique to the AWS account and the Region.
|
|
620
620
|
* </p>
|
|
621
621
|
* @public
|
|
622
622
|
*/
|
|
623
|
-
S3BucketName?: string;
|
|
623
|
+
S3BucketName?: string | undefined;
|
|
624
624
|
}
|
|
625
625
|
/**
|
|
626
626
|
* @public
|
|
@@ -657,7 +657,7 @@ export interface AssociateAppBlockBuilderAppBlockResult {
|
|
|
657
657
|
* <p>The list of app block builders associated with app blocks.</p>
|
|
658
658
|
* @public
|
|
659
659
|
*/
|
|
660
|
-
AppBlockBuilderAppBlockAssociation?: AppBlockBuilderAppBlockAssociation;
|
|
660
|
+
AppBlockBuilderAppBlockAssociation?: AppBlockBuilderAppBlockAssociation | undefined;
|
|
661
661
|
}
|
|
662
662
|
/**
|
|
663
663
|
* <p>An API error occurred. Wait a few minutes and try again.</p>
|
|
@@ -670,7 +670,7 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
670
670
|
* <p>The error message in the exception.</p>
|
|
671
671
|
* @public
|
|
672
672
|
*/
|
|
673
|
-
Message?: string;
|
|
673
|
+
Message?: string | undefined;
|
|
674
674
|
/**
|
|
675
675
|
* @internal
|
|
676
676
|
*/
|
|
@@ -687,7 +687,7 @@ export declare class InvalidParameterCombinationException extends __BaseExceptio
|
|
|
687
687
|
* <p>The error message in the exception.</p>
|
|
688
688
|
* @public
|
|
689
689
|
*/
|
|
690
|
-
Message?: string;
|
|
690
|
+
Message?: string | undefined;
|
|
691
691
|
/**
|
|
692
692
|
* @internal
|
|
693
693
|
*/
|
|
@@ -704,7 +704,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
704
704
|
* <p>The error message in the exception.</p>
|
|
705
705
|
* @public
|
|
706
706
|
*/
|
|
707
|
-
Message?: string;
|
|
707
|
+
Message?: string | undefined;
|
|
708
708
|
/**
|
|
709
709
|
* @internal
|
|
710
710
|
*/
|
|
@@ -721,7 +721,7 @@ export declare class OperationNotPermittedException extends __BaseException {
|
|
|
721
721
|
* <p>The error message in the exception.</p>
|
|
722
722
|
* @public
|
|
723
723
|
*/
|
|
724
|
-
Message?: string;
|
|
724
|
+
Message?: string | undefined;
|
|
725
725
|
/**
|
|
726
726
|
* @internal
|
|
727
727
|
*/
|
|
@@ -738,7 +738,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
738
738
|
* <p>The error message in the exception.</p>
|
|
739
739
|
* @public
|
|
740
740
|
*/
|
|
741
|
-
Message?: string;
|
|
741
|
+
Message?: string | undefined;
|
|
742
742
|
/**
|
|
743
743
|
* @internal
|
|
744
744
|
*/
|
|
@@ -769,7 +769,7 @@ export interface AssociateApplicationFleetResult {
|
|
|
769
769
|
* associated.</p>
|
|
770
770
|
* @public
|
|
771
771
|
*/
|
|
772
|
-
ApplicationFleetAssociation?: ApplicationFleetAssociation;
|
|
772
|
+
ApplicationFleetAssociation?: ApplicationFleetAssociation | undefined;
|
|
773
773
|
}
|
|
774
774
|
/**
|
|
775
775
|
* @public
|
|
@@ -807,7 +807,7 @@ export declare class EntitlementNotFoundException extends __BaseException {
|
|
|
807
807
|
* <p>The error message in the exception.</p>
|
|
808
808
|
* @public
|
|
809
809
|
*/
|
|
810
|
-
Message?: string;
|
|
810
|
+
Message?: string | undefined;
|
|
811
811
|
/**
|
|
812
812
|
* @internal
|
|
813
813
|
*/
|
|
@@ -844,7 +844,7 @@ export declare class IncompatibleImageException extends __BaseException {
|
|
|
844
844
|
* <p>The error message in the exception.</p>
|
|
845
845
|
* @public
|
|
846
846
|
*/
|
|
847
|
-
Message?: string;
|
|
847
|
+
Message?: string | undefined;
|
|
848
848
|
/**
|
|
849
849
|
* @internal
|
|
850
850
|
*/
|
|
@@ -861,7 +861,7 @@ export declare class InvalidAccountStatusException extends __BaseException {
|
|
|
861
861
|
* <p>The error message in the exception.</p>
|
|
862
862
|
* @public
|
|
863
863
|
*/
|
|
864
|
-
Message?: string;
|
|
864
|
+
Message?: string | undefined;
|
|
865
865
|
/**
|
|
866
866
|
* @internal
|
|
867
867
|
*/
|
|
@@ -908,7 +908,7 @@ export interface UserStackAssociation {
|
|
|
908
908
|
* <p>Specifies whether a welcome email is sent to a user after the user is created in the user pool.</p>
|
|
909
909
|
* @public
|
|
910
910
|
*/
|
|
911
|
-
SendEmailNotification?: boolean;
|
|
911
|
+
SendEmailNotification?: boolean | undefined;
|
|
912
912
|
}
|
|
913
913
|
/**
|
|
914
914
|
* @public
|
|
@@ -943,17 +943,17 @@ export interface UserStackAssociationError {
|
|
|
943
943
|
* <p>Information about the user and associated stack.</p>
|
|
944
944
|
* @public
|
|
945
945
|
*/
|
|
946
|
-
UserStackAssociation?: UserStackAssociation;
|
|
946
|
+
UserStackAssociation?: UserStackAssociation | undefined;
|
|
947
947
|
/**
|
|
948
948
|
* <p>The error code for the error that is returned when a user can’t be associated with or disassociated from a stack.</p>
|
|
949
949
|
* @public
|
|
950
950
|
*/
|
|
951
|
-
ErrorCode?: UserStackAssociationErrorCode;
|
|
951
|
+
ErrorCode?: UserStackAssociationErrorCode | undefined;
|
|
952
952
|
/**
|
|
953
953
|
* <p>The error message for the error that is returned when a user can’t be associated with or disassociated from a stack.</p>
|
|
954
954
|
* @public
|
|
955
955
|
*/
|
|
956
|
-
ErrorMessage?: string;
|
|
956
|
+
ErrorMessage?: string | undefined;
|
|
957
957
|
}
|
|
958
958
|
/**
|
|
959
959
|
* @public
|
|
@@ -963,7 +963,7 @@ export interface BatchAssociateUserStackResult {
|
|
|
963
963
|
* <p>The list of UserStackAssociationError objects.</p>
|
|
964
964
|
* @public
|
|
965
965
|
*/
|
|
966
|
-
errors?: UserStackAssociationError[];
|
|
966
|
+
errors?: UserStackAssociationError[] | undefined;
|
|
967
967
|
}
|
|
968
968
|
/**
|
|
969
969
|
* @public
|
|
@@ -983,7 +983,7 @@ export interface BatchDisassociateUserStackResult {
|
|
|
983
983
|
* <p>The list of UserStackAssociationError objects.</p>
|
|
984
984
|
* @public
|
|
985
985
|
*/
|
|
986
|
-
errors?: UserStackAssociationError[];
|
|
986
|
+
errors?: UserStackAssociationError[] | undefined;
|
|
987
987
|
}
|
|
988
988
|
/**
|
|
989
989
|
* @public
|
|
@@ -1013,12 +1013,12 @@ export interface CertificateBasedAuthProperties {
|
|
|
1013
1013
|
* <p>The status of the certificate-based authentication properties.</p>
|
|
1014
1014
|
* @public
|
|
1015
1015
|
*/
|
|
1016
|
-
Status?: CertificateBasedAuthStatus;
|
|
1016
|
+
Status?: CertificateBasedAuthStatus | undefined;
|
|
1017
1017
|
/**
|
|
1018
1018
|
* <p>The ARN of the AWS Certificate Manager Private CA resource.</p>
|
|
1019
1019
|
* @public
|
|
1020
1020
|
*/
|
|
1021
|
-
CertificateAuthorityArn?: string;
|
|
1021
|
+
CertificateAuthorityArn?: string | undefined;
|
|
1022
1022
|
}
|
|
1023
1023
|
/**
|
|
1024
1024
|
* <p>Describes the capacity for a fleet.</p>
|
|
@@ -1029,13 +1029,13 @@ export interface ComputeCapacity {
|
|
|
1029
1029
|
* <p>The desired number of streaming instances.</p>
|
|
1030
1030
|
* @public
|
|
1031
1031
|
*/
|
|
1032
|
-
DesiredInstances?: number;
|
|
1032
|
+
DesiredInstances?: number | undefined;
|
|
1033
1033
|
/**
|
|
1034
1034
|
* <p>The desired number of user sessions for a multi-session fleet. This is not allowed for single-session fleets.</p>
|
|
1035
1035
|
* <p>When you create a fleet, you must set either the DesiredSessions or DesiredInstances attribute, based on the type of fleet you create. You can’t define both attributes or leave both attributes blank.</p>
|
|
1036
1036
|
* @public
|
|
1037
1037
|
*/
|
|
1038
|
-
DesiredSessions?: number;
|
|
1038
|
+
DesiredSessions?: number | undefined;
|
|
1039
1039
|
}
|
|
1040
1040
|
/**
|
|
1041
1041
|
* <p>Describes the capacity status for a fleet.</p>
|
|
@@ -1051,44 +1051,44 @@ export interface ComputeCapacityStatus {
|
|
|
1051
1051
|
* <p>The total number of simultaneous streaming instances that are running.</p>
|
|
1052
1052
|
* @public
|
|
1053
1053
|
*/
|
|
1054
|
-
Running?: number;
|
|
1054
|
+
Running?: number | undefined;
|
|
1055
1055
|
/**
|
|
1056
1056
|
* <p>The number of instances in use for streaming.</p>
|
|
1057
1057
|
* @public
|
|
1058
1058
|
*/
|
|
1059
|
-
InUse?: number;
|
|
1059
|
+
InUse?: number | undefined;
|
|
1060
1060
|
/**
|
|
1061
1061
|
* <p>The number of currently available instances that can be used to stream
|
|
1062
1062
|
* sessions.</p>
|
|
1063
1063
|
* @public
|
|
1064
1064
|
*/
|
|
1065
|
-
Available?: number;
|
|
1065
|
+
Available?: number | undefined;
|
|
1066
1066
|
/**
|
|
1067
1067
|
* <p>The total number of sessions slots that are either running or pending. This represents the total number of concurrent streaming sessions your fleet can support in a steady state.</p>
|
|
1068
1068
|
* <p>DesiredUserSessionCapacity = ActualUserSessionCapacity + PendingUserSessionCapacity</p>
|
|
1069
1069
|
* <p>This only applies to multi-session fleets.</p>
|
|
1070
1070
|
* @public
|
|
1071
1071
|
*/
|
|
1072
|
-
DesiredUserSessions?: number;
|
|
1072
|
+
DesiredUserSessions?: number | undefined;
|
|
1073
1073
|
/**
|
|
1074
1074
|
* <p>The number of idle session slots currently available for user sessions.</p>
|
|
1075
1075
|
* <p>AvailableUserSessionCapacity = ActualUserSessionCapacity - ActiveUserSessions</p>
|
|
1076
1076
|
* <p>This only applies to multi-session fleets.</p>
|
|
1077
1077
|
* @public
|
|
1078
1078
|
*/
|
|
1079
|
-
AvailableUserSessions?: number;
|
|
1079
|
+
AvailableUserSessions?: number | undefined;
|
|
1080
1080
|
/**
|
|
1081
1081
|
* <p>The number of user sessions currently being used for streaming sessions. This only applies to multi-session fleets.</p>
|
|
1082
1082
|
* @public
|
|
1083
1083
|
*/
|
|
1084
|
-
ActiveUserSessions?: number;
|
|
1084
|
+
ActiveUserSessions?: number | undefined;
|
|
1085
1085
|
/**
|
|
1086
1086
|
* <p>The total number of session slots that are available for streaming or are currently streaming.</p>
|
|
1087
1087
|
* <p>ActualUserSessionCapacity = AvailableUserSessionCapacity + ActiveUserSessions</p>
|
|
1088
1088
|
* <p>This only applies to multi-session fleets.</p>
|
|
1089
1089
|
* @public
|
|
1090
1090
|
*/
|
|
1091
|
-
ActualUserSessions?: number;
|
|
1091
|
+
ActualUserSessions?: number | undefined;
|
|
1092
1092
|
}
|
|
1093
1093
|
/**
|
|
1094
1094
|
* @public
|
|
@@ -1113,7 +1113,7 @@ export interface CopyImageRequest {
|
|
|
1113
1113
|
* <p>The description that the image will have when it is copied to the destination.</p>
|
|
1114
1114
|
* @public
|
|
1115
1115
|
*/
|
|
1116
|
-
DestinationImageDescription?: string;
|
|
1116
|
+
DestinationImageDescription?: string | undefined;
|
|
1117
1117
|
}
|
|
1118
1118
|
/**
|
|
1119
1119
|
* @public
|
|
@@ -1123,7 +1123,7 @@ export interface CopyImageResponse {
|
|
|
1123
1123
|
* <p>The name of the destination image.</p>
|
|
1124
1124
|
* @public
|
|
1125
1125
|
*/
|
|
1126
|
-
DestinationImageName?: string;
|
|
1126
|
+
DestinationImageName?: string | undefined;
|
|
1127
1127
|
}
|
|
1128
1128
|
/**
|
|
1129
1129
|
* <p>The specified resource already exists.</p>
|
|
@@ -1136,7 +1136,7 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
|
1136
1136
|
* <p>The error message in the exception.</p>
|
|
1137
1137
|
* @public
|
|
1138
1138
|
*/
|
|
1139
|
-
Message?: string;
|
|
1139
|
+
Message?: string | undefined;
|
|
1140
1140
|
/**
|
|
1141
1141
|
* @internal
|
|
1142
1142
|
*/
|
|
@@ -1153,7 +1153,7 @@ export declare class ResourceNotAvailableException extends __BaseException {
|
|
|
1153
1153
|
* <p>The error message in the exception.</p>
|
|
1154
1154
|
* @public
|
|
1155
1155
|
*/
|
|
1156
|
-
Message?: string;
|
|
1156
|
+
Message?: string | undefined;
|
|
1157
1157
|
/**
|
|
1158
1158
|
* @internal
|
|
1159
1159
|
*/
|
|
@@ -1172,12 +1172,12 @@ export interface CreateAppBlockRequest {
|
|
|
1172
1172
|
* <p>The description of the app block.</p>
|
|
1173
1173
|
* @public
|
|
1174
1174
|
*/
|
|
1175
|
-
Description?: string;
|
|
1175
|
+
Description?: string | undefined;
|
|
1176
1176
|
/**
|
|
1177
1177
|
* <p>The display name of the app block. This is not displayed to the user.</p>
|
|
1178
1178
|
* @public
|
|
1179
1179
|
*/
|
|
1180
|
-
DisplayName?: string;
|
|
1180
|
+
DisplayName?: string | undefined;
|
|
1181
1181
|
/**
|
|
1182
1182
|
* <p>The source S3 location of the app block.</p>
|
|
1183
1183
|
* @public
|
|
@@ -1188,23 +1188,23 @@ export interface CreateAppBlockRequest {
|
|
|
1188
1188
|
* <code>CUSTOM</code> PackagingType.</p>
|
|
1189
1189
|
* @public
|
|
1190
1190
|
*/
|
|
1191
|
-
SetupScriptDetails?: ScriptDetails;
|
|
1191
|
+
SetupScriptDetails?: ScriptDetails | undefined;
|
|
1192
1192
|
/**
|
|
1193
1193
|
* <p>The tags assigned to the app block.</p>
|
|
1194
1194
|
* @public
|
|
1195
1195
|
*/
|
|
1196
|
-
Tags?: Record<string, string
|
|
1196
|
+
Tags?: Record<string, string> | undefined;
|
|
1197
1197
|
/**
|
|
1198
1198
|
* <p>The post setup script details of the app block. This can only be provided for the
|
|
1199
1199
|
* <code>APPSTREAM2</code> PackagingType.</p>
|
|
1200
1200
|
* @public
|
|
1201
1201
|
*/
|
|
1202
|
-
PostSetupScriptDetails?: ScriptDetails;
|
|
1202
|
+
PostSetupScriptDetails?: ScriptDetails | undefined;
|
|
1203
1203
|
/**
|
|
1204
1204
|
* <p>The packaging type of the app block.</p>
|
|
1205
1205
|
* @public
|
|
1206
1206
|
*/
|
|
1207
|
-
PackagingType?: PackagingType;
|
|
1207
|
+
PackagingType?: PackagingType | undefined;
|
|
1208
1208
|
}
|
|
1209
1209
|
/**
|
|
1210
1210
|
* @public
|
|
@@ -1214,7 +1214,7 @@ export interface CreateAppBlockResult {
|
|
|
1214
1214
|
* <p>The app block.</p>
|
|
1215
1215
|
* @public
|
|
1216
1216
|
*/
|
|
1217
|
-
AppBlock?: AppBlock;
|
|
1217
|
+
AppBlock?: AppBlock | undefined;
|
|
1218
1218
|
}
|
|
1219
1219
|
/**
|
|
1220
1220
|
* @public
|
|
@@ -1229,12 +1229,12 @@ export interface CreateAppBlockBuilderRequest {
|
|
|
1229
1229
|
* <p>The description of the app block builder.</p>
|
|
1230
1230
|
* @public
|
|
1231
1231
|
*/
|
|
1232
|
-
Description?: string;
|
|
1232
|
+
Description?: string | undefined;
|
|
1233
1233
|
/**
|
|
1234
1234
|
* <p>The display name of the app block builder.</p>
|
|
1235
1235
|
* @public
|
|
1236
1236
|
*/
|
|
1237
|
-
DisplayName?: string;
|
|
1237
|
+
DisplayName?: string | undefined;
|
|
1238
1238
|
/**
|
|
1239
1239
|
* <p>The tags to associate with the app block builder. A tag is a key-value pair, and the
|
|
1240
1240
|
* value is optional. For example, Environment=Test. If you do not specify a value,
|
|
@@ -1245,7 +1245,7 @@ export interface CreateAppBlockBuilderRequest {
|
|
|
1245
1245
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
|
|
1246
1246
|
* @public
|
|
1247
1247
|
*/
|
|
1248
|
-
Tags?: Record<string, string
|
|
1248
|
+
Tags?: Record<string, string> | undefined;
|
|
1249
1249
|
/**
|
|
1250
1250
|
* <p>The platform of the app block builder.</p>
|
|
1251
1251
|
* <p>
|
|
@@ -1287,7 +1287,7 @@ export interface CreateAppBlockBuilderRequest {
|
|
|
1287
1287
|
* <p>Enables or disables default internet access for the app block builder.</p>
|
|
1288
1288
|
* @public
|
|
1289
1289
|
*/
|
|
1290
|
-
EnableDefaultInternetAccess?: boolean;
|
|
1290
|
+
EnableDefaultInternetAccess?: boolean | undefined;
|
|
1291
1291
|
/**
|
|
1292
1292
|
* <p>The Amazon Resource Name (ARN) of the IAM role to apply to the app block builder. To
|
|
1293
1293
|
* assume a role, the app block builder calls the AWS Security Token Service (STS)
|
|
@@ -1297,12 +1297,12 @@ export interface CreateAppBlockBuilderRequest {
|
|
|
1297
1297
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on AppStream 2.0 Streaming Instances</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
|
|
1298
1298
|
* @public
|
|
1299
1299
|
*/
|
|
1300
|
-
IamRoleArn?: string;
|
|
1300
|
+
IamRoleArn?: string | undefined;
|
|
1301
1301
|
/**
|
|
1302
1302
|
* <p>The list of interface VPC endpoint (interface endpoint) objects. Administrators can connect to the app block builder only through the specified endpoints.</p>
|
|
1303
1303
|
* @public
|
|
1304
1304
|
*/
|
|
1305
|
-
AccessEndpoints?: AccessEndpoint[];
|
|
1305
|
+
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
1306
1306
|
}
|
|
1307
1307
|
/**
|
|
1308
1308
|
* @public
|
|
@@ -1312,7 +1312,7 @@ export interface CreateAppBlockBuilderResult {
|
|
|
1312
1312
|
* <p>Describes an app block builder.</p>
|
|
1313
1313
|
* @public
|
|
1314
1314
|
*/
|
|
1315
|
-
AppBlockBuilder?: AppBlockBuilder;
|
|
1315
|
+
AppBlockBuilder?: AppBlockBuilder | undefined;
|
|
1316
1316
|
}
|
|
1317
1317
|
/**
|
|
1318
1318
|
* <p>The specified role is invalid.</p>
|
|
@@ -1325,7 +1325,7 @@ export declare class InvalidRoleException extends __BaseException {
|
|
|
1325
1325
|
* <p>The error message in the exception.</p>
|
|
1326
1326
|
* @public
|
|
1327
1327
|
*/
|
|
1328
|
-
Message?: string;
|
|
1328
|
+
Message?: string | undefined;
|
|
1329
1329
|
/**
|
|
1330
1330
|
* @internal
|
|
1331
1331
|
*/
|
|
@@ -1342,7 +1342,7 @@ export declare class RequestLimitExceededException extends __BaseException {
|
|
|
1342
1342
|
* <p>The error message in the exception.</p>
|
|
1343
1343
|
* @public
|
|
1344
1344
|
*/
|
|
1345
|
-
Message?: string;
|
|
1345
|
+
Message?: string | undefined;
|
|
1346
1346
|
/**
|
|
1347
1347
|
* @internal
|
|
1348
1348
|
*/
|
|
@@ -1362,7 +1362,7 @@ export interface CreateAppBlockBuilderStreamingURLRequest {
|
|
|
1362
1362
|
* Specify a value between 1 and 604800 seconds. The default is 3600 seconds.</p>
|
|
1363
1363
|
* @public
|
|
1364
1364
|
*/
|
|
1365
|
-
Validity?: number;
|
|
1365
|
+
Validity?: number | undefined;
|
|
1366
1366
|
}
|
|
1367
1367
|
/**
|
|
1368
1368
|
* @public
|
|
@@ -1372,12 +1372,12 @@ export interface CreateAppBlockBuilderStreamingURLResult {
|
|
|
1372
1372
|
* <p>The URL to start the streaming session.</p>
|
|
1373
1373
|
* @public
|
|
1374
1374
|
*/
|
|
1375
|
-
StreamingURL?: string;
|
|
1375
|
+
StreamingURL?: string | undefined;
|
|
1376
1376
|
/**
|
|
1377
1377
|
* <p>The elapsed time, in seconds after the Unix epoch, when this URL expires.</p>
|
|
1378
1378
|
* @public
|
|
1379
1379
|
*/
|
|
1380
|
-
Expires?: Date;
|
|
1380
|
+
Expires?: Date | undefined;
|
|
1381
1381
|
}
|
|
1382
1382
|
/**
|
|
1383
1383
|
* @public
|
|
@@ -1392,12 +1392,12 @@ export interface CreateApplicationRequest {
|
|
|
1392
1392
|
* <p>The display name of the application. This name is visible to users in the application catalog.</p>
|
|
1393
1393
|
* @public
|
|
1394
1394
|
*/
|
|
1395
|
-
DisplayName?: string;
|
|
1395
|
+
DisplayName?: string | undefined;
|
|
1396
1396
|
/**
|
|
1397
1397
|
* <p>The description of the application.</p>
|
|
1398
1398
|
* @public
|
|
1399
1399
|
*/
|
|
1400
|
-
Description?: string;
|
|
1400
|
+
Description?: string | undefined;
|
|
1401
1401
|
/**
|
|
1402
1402
|
* <p>The location in S3 of the application icon.</p>
|
|
1403
1403
|
* @public
|
|
@@ -1412,12 +1412,12 @@ export interface CreateApplicationRequest {
|
|
|
1412
1412
|
* <p>The working directory of the application.</p>
|
|
1413
1413
|
* @public
|
|
1414
1414
|
*/
|
|
1415
|
-
WorkingDirectory?: string;
|
|
1415
|
+
WorkingDirectory?: string | undefined;
|
|
1416
1416
|
/**
|
|
1417
1417
|
* <p>The launch parameters of the application.</p>
|
|
1418
1418
|
* @public
|
|
1419
1419
|
*/
|
|
1420
|
-
LaunchParameters?: string;
|
|
1420
|
+
LaunchParameters?: string | undefined;
|
|
1421
1421
|
/**
|
|
1422
1422
|
* <p>The platforms the application supports. WINDOWS_SERVER_2019 and AMAZON_LINUX2 are supported for Elastic fleets.</p>
|
|
1423
1423
|
* @public
|
|
@@ -1437,7 +1437,7 @@ export interface CreateApplicationRequest {
|
|
|
1437
1437
|
* <p>The tags assigned to the application.</p>
|
|
1438
1438
|
* @public
|
|
1439
1439
|
*/
|
|
1440
|
-
Tags?: Record<string, string
|
|
1440
|
+
Tags?: Record<string, string> | undefined;
|
|
1441
1441
|
}
|
|
1442
1442
|
/**
|
|
1443
1443
|
* @public
|
|
@@ -1447,7 +1447,7 @@ export interface CreateApplicationResult {
|
|
|
1447
1447
|
* <p>Describes an application in the application catalog.</p>
|
|
1448
1448
|
* @public
|
|
1449
1449
|
*/
|
|
1450
|
-
Application?: Application;
|
|
1450
|
+
Application?: Application | undefined;
|
|
1451
1451
|
}
|
|
1452
1452
|
/**
|
|
1453
1453
|
* <p>Describes the credentials for the service account used by the fleet or image builder to connect to the directory.</p>
|
|
@@ -1485,7 +1485,7 @@ export interface CreateDirectoryConfigRequest {
|
|
|
1485
1485
|
* <p>The credentials for the service account used by the fleet or image builder to connect to the directory.</p>
|
|
1486
1486
|
* @public
|
|
1487
1487
|
*/
|
|
1488
|
-
ServiceAccountCredentials?: ServiceAccountCredentials;
|
|
1488
|
+
ServiceAccountCredentials?: ServiceAccountCredentials | undefined;
|
|
1489
1489
|
/**
|
|
1490
1490
|
* <p>The certificate-based authentication properties used to authenticate SAML 2.0 Identity
|
|
1491
1491
|
* Provider (IdP) user identities to Active Directory domain-joined streaming instances.
|
|
@@ -1496,7 +1496,7 @@ export interface CreateDirectoryConfigRequest {
|
|
|
1496
1496
|
* will be disconnected to re-authenticate using certificates.</p>
|
|
1497
1497
|
* @public
|
|
1498
1498
|
*/
|
|
1499
|
-
CertificateBasedAuthProperties?: CertificateBasedAuthProperties;
|
|
1499
|
+
CertificateBasedAuthProperties?: CertificateBasedAuthProperties | undefined;
|
|
1500
1500
|
}
|
|
1501
1501
|
/**
|
|
1502
1502
|
* <p>Describes the configuration information required to join fleets and image builders to Microsoft Active Directory domains.</p>
|
|
@@ -1512,17 +1512,17 @@ export interface DirectoryConfig {
|
|
|
1512
1512
|
* <p>The distinguished names of the organizational units for computer accounts.</p>
|
|
1513
1513
|
* @public
|
|
1514
1514
|
*/
|
|
1515
|
-
OrganizationalUnitDistinguishedNames?: string[];
|
|
1515
|
+
OrganizationalUnitDistinguishedNames?: string[] | undefined;
|
|
1516
1516
|
/**
|
|
1517
1517
|
* <p>The credentials for the service account used by the fleet or image builder to connect to the directory.</p>
|
|
1518
1518
|
* @public
|
|
1519
1519
|
*/
|
|
1520
|
-
ServiceAccountCredentials?: ServiceAccountCredentials;
|
|
1520
|
+
ServiceAccountCredentials?: ServiceAccountCredentials | undefined;
|
|
1521
1521
|
/**
|
|
1522
1522
|
* <p>The time the directory configuration was created.</p>
|
|
1523
1523
|
* @public
|
|
1524
1524
|
*/
|
|
1525
|
-
CreatedTime?: Date;
|
|
1525
|
+
CreatedTime?: Date | undefined;
|
|
1526
1526
|
/**
|
|
1527
1527
|
* <p>The certificate-based authentication properties used to authenticate SAML 2.0 Identity
|
|
1528
1528
|
* Provider (IdP) user identities to Active Directory domain-joined streaming instances.
|
|
@@ -1533,7 +1533,7 @@ export interface DirectoryConfig {
|
|
|
1533
1533
|
* will be disconnected to re-authenticate using certificates.</p>
|
|
1534
1534
|
* @public
|
|
1535
1535
|
*/
|
|
1536
|
-
CertificateBasedAuthProperties?: CertificateBasedAuthProperties;
|
|
1536
|
+
CertificateBasedAuthProperties?: CertificateBasedAuthProperties | undefined;
|
|
1537
1537
|
}
|
|
1538
1538
|
/**
|
|
1539
1539
|
* @public
|
|
@@ -1543,7 +1543,7 @@ export interface CreateDirectoryConfigResult {
|
|
|
1543
1543
|
* <p>Information about the directory configuration.</p>
|
|
1544
1544
|
* @public
|
|
1545
1545
|
*/
|
|
1546
|
-
DirectoryConfig?: DirectoryConfig;
|
|
1546
|
+
DirectoryConfig?: DirectoryConfig | undefined;
|
|
1547
1547
|
}
|
|
1548
1548
|
/**
|
|
1549
1549
|
* <p>An attribute associated with an entitlement. Application entitlements work by matching
|
|
@@ -1609,7 +1609,7 @@ export interface CreateEntitlementRequest {
|
|
|
1609
1609
|
* <p>The description of the entitlement.</p>
|
|
1610
1610
|
* @public
|
|
1611
1611
|
*/
|
|
1612
|
-
Description?: string;
|
|
1612
|
+
Description?: string | undefined;
|
|
1613
1613
|
/**
|
|
1614
1614
|
* <p>Specifies whether all or selected apps are entitled.</p>
|
|
1615
1615
|
* @public
|
|
@@ -1645,7 +1645,7 @@ export interface Entitlement {
|
|
|
1645
1645
|
* <p>The description of the entitlement.</p>
|
|
1646
1646
|
* @public
|
|
1647
1647
|
*/
|
|
1648
|
-
Description?: string;
|
|
1648
|
+
Description?: string | undefined;
|
|
1649
1649
|
/**
|
|
1650
1650
|
* <p>Specifies whether all or selected apps are entitled.</p>
|
|
1651
1651
|
* @public
|
|
@@ -1660,12 +1660,12 @@ export interface Entitlement {
|
|
|
1660
1660
|
* <p>The time when the entitlement was created.</p>
|
|
1661
1661
|
* @public
|
|
1662
1662
|
*/
|
|
1663
|
-
CreatedTime?: Date;
|
|
1663
|
+
CreatedTime?: Date | undefined;
|
|
1664
1664
|
/**
|
|
1665
1665
|
* <p>The time when the entitlement was last modified.</p>
|
|
1666
1666
|
* @public
|
|
1667
1667
|
*/
|
|
1668
|
-
LastModifiedTime?: Date;
|
|
1668
|
+
LastModifiedTime?: Date | undefined;
|
|
1669
1669
|
}
|
|
1670
1670
|
/**
|
|
1671
1671
|
* @public
|
|
@@ -1675,7 +1675,7 @@ export interface CreateEntitlementResult {
|
|
|
1675
1675
|
* <p>The entitlement.</p>
|
|
1676
1676
|
* @public
|
|
1677
1677
|
*/
|
|
1678
|
-
Entitlement?: Entitlement;
|
|
1678
|
+
Entitlement?: Entitlement | undefined;
|
|
1679
1679
|
}
|
|
1680
1680
|
/**
|
|
1681
1681
|
* <p>The entitlement already exists.</p>
|
|
@@ -1688,7 +1688,7 @@ export declare class EntitlementAlreadyExistsException extends __BaseException {
|
|
|
1688
1688
|
* <p>The error message in the exception.</p>
|
|
1689
1689
|
* @public
|
|
1690
1690
|
*/
|
|
1691
|
-
Message?: string;
|
|
1691
|
+
Message?: string | undefined;
|
|
1692
1692
|
/**
|
|
1693
1693
|
* @internal
|
|
1694
1694
|
*/
|
|
@@ -1703,12 +1703,12 @@ export interface DomainJoinInfo {
|
|
|
1703
1703
|
* <p>The fully qualified name of the directory (for example, corp.example.com).</p>
|
|
1704
1704
|
* @public
|
|
1705
1705
|
*/
|
|
1706
|
-
DirectoryName?: string;
|
|
1706
|
+
DirectoryName?: string | undefined;
|
|
1707
1707
|
/**
|
|
1708
1708
|
* <p>The distinguished name of the organizational unit for computer accounts.</p>
|
|
1709
1709
|
* @public
|
|
1710
1710
|
*/
|
|
1711
|
-
OrganizationalUnitDistinguishedName?: string;
|
|
1711
|
+
OrganizationalUnitDistinguishedName?: string | undefined;
|
|
1712
1712
|
}
|
|
1713
1713
|
/**
|
|
1714
1714
|
* @public
|
|
@@ -1748,12 +1748,12 @@ export interface CreateFleetRequest {
|
|
|
1748
1748
|
* <p>The name of the image used to create the fleet.</p>
|
|
1749
1749
|
* @public
|
|
1750
1750
|
*/
|
|
1751
|
-
ImageName?: string;
|
|
1751
|
+
ImageName?: string | undefined;
|
|
1752
1752
|
/**
|
|
1753
1753
|
* <p>The ARN of the public, private, or shared image to use.</p>
|
|
1754
1754
|
* @public
|
|
1755
1755
|
*/
|
|
1756
|
-
ImageArn?: string;
|
|
1756
|
+
ImageArn?: string | undefined;
|
|
1757
1757
|
/**
|
|
1758
1758
|
* <p>The instance type to use when launching fleet instances. The following instance types are available:</p>
|
|
1759
1759
|
* <ul>
|
|
@@ -1922,49 +1922,49 @@ export interface CreateFleetRequest {
|
|
|
1922
1922
|
* </dl>
|
|
1923
1923
|
* @public
|
|
1924
1924
|
*/
|
|
1925
|
-
FleetType?: FleetType;
|
|
1925
|
+
FleetType?: FleetType | undefined;
|
|
1926
1926
|
/**
|
|
1927
1927
|
* <p>The desired capacity for the fleet. This is not allowed for Elastic fleets. For Elastic fleets, specify MaxConcurrentSessions instead.</p>
|
|
1928
1928
|
* @public
|
|
1929
1929
|
*/
|
|
1930
|
-
ComputeCapacity?: ComputeCapacity;
|
|
1930
|
+
ComputeCapacity?: ComputeCapacity | undefined;
|
|
1931
1931
|
/**
|
|
1932
1932
|
* <p>The VPC configuration for the fleet. This is required for Elastic fleets, but not required for other fleet types. Elastic fleets require that you specify at least two subnets in different availability zones.</p>
|
|
1933
1933
|
* @public
|
|
1934
1934
|
*/
|
|
1935
|
-
VpcConfig?: VpcConfig;
|
|
1935
|
+
VpcConfig?: VpcConfig | undefined;
|
|
1936
1936
|
/**
|
|
1937
1937
|
* <p>The maximum amount of time that a streaming session can remain active, in seconds. If users are still connected to a streaming instance five minutes before this limit is reached, they are prompted to save any open documents before being disconnected. After this time elapses, the instance is terminated and replaced by a new instance.</p>
|
|
1938
1938
|
* <p>Specify a value between 600 and 432000.</p>
|
|
1939
1939
|
* @public
|
|
1940
1940
|
*/
|
|
1941
|
-
MaxUserDurationInSeconds?: number;
|
|
1941
|
+
MaxUserDurationInSeconds?: number | undefined;
|
|
1942
1942
|
/**
|
|
1943
1943
|
* <p>The amount of time that a streaming session remains active after users disconnect. If users try to reconnect to the streaming session after a disconnection or network interruption within this time interval, they are connected to their previous session. Otherwise, they are connected to a new session with a new streaming instance. </p>
|
|
1944
1944
|
* <p>Specify a value between 60 and 36000.</p>
|
|
1945
1945
|
* @public
|
|
1946
1946
|
*/
|
|
1947
|
-
DisconnectTimeoutInSeconds?: number;
|
|
1947
|
+
DisconnectTimeoutInSeconds?: number | undefined;
|
|
1948
1948
|
/**
|
|
1949
1949
|
* <p>The description to display.</p>
|
|
1950
1950
|
* @public
|
|
1951
1951
|
*/
|
|
1952
|
-
Description?: string;
|
|
1952
|
+
Description?: string | undefined;
|
|
1953
1953
|
/**
|
|
1954
1954
|
* <p>The fleet name to display.</p>
|
|
1955
1955
|
* @public
|
|
1956
1956
|
*/
|
|
1957
|
-
DisplayName?: string;
|
|
1957
|
+
DisplayName?: string | undefined;
|
|
1958
1958
|
/**
|
|
1959
1959
|
* <p>Enables or disables default internet access for the fleet.</p>
|
|
1960
1960
|
* @public
|
|
1961
1961
|
*/
|
|
1962
|
-
EnableDefaultInternetAccess?: boolean;
|
|
1962
|
+
EnableDefaultInternetAccess?: boolean | undefined;
|
|
1963
1963
|
/**
|
|
1964
1964
|
* <p>The name of the directory and organizational unit (OU) to use to join the fleet to a Microsoft Active Directory domain. This is not allowed for Elastic fleets. </p>
|
|
1965
1965
|
* @public
|
|
1966
1966
|
*/
|
|
1967
|
-
DomainJoinInfo?: DomainJoinInfo;
|
|
1967
|
+
DomainJoinInfo?: DomainJoinInfo | undefined;
|
|
1968
1968
|
/**
|
|
1969
1969
|
* <p>The tags to associate with the fleet. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=. </p>
|
|
1970
1970
|
* <p>If you do not specify a value, the value is set to an empty string.</p>
|
|
@@ -1973,7 +1973,7 @@ export interface CreateFleetRequest {
|
|
|
1973
1973
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
|
|
1974
1974
|
* @public
|
|
1975
1975
|
*/
|
|
1976
|
-
Tags?: Record<string, string
|
|
1976
|
+
Tags?: Record<string, string> | undefined;
|
|
1977
1977
|
/**
|
|
1978
1978
|
* <p>The amount of time that users can be idle (inactive) before they are disconnected
|
|
1979
1979
|
* from their streaming session and the <code>DisconnectTimeoutInSeconds</code> time
|
|
@@ -1991,46 +1991,46 @@ export interface CreateFleetRequest {
|
|
|
1991
1991
|
* </note>
|
|
1992
1992
|
* @public
|
|
1993
1993
|
*/
|
|
1994
|
-
IdleDisconnectTimeoutInSeconds?: number;
|
|
1994
|
+
IdleDisconnectTimeoutInSeconds?: number | undefined;
|
|
1995
1995
|
/**
|
|
1996
1996
|
* <p>The Amazon Resource Name (ARN) of the IAM role to apply to the fleet. To assume a role, a fleet instance calls the AWS Security Token Service (STS) <code>AssumeRole</code> API operation and passes the ARN of the role to use. The operation creates a new session with temporary credentials. AppStream 2.0 retrieves the temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
|
|
1997
1997
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on AppStream 2.0 Streaming Instances</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
|
|
1998
1998
|
* @public
|
|
1999
1999
|
*/
|
|
2000
|
-
IamRoleArn?: string;
|
|
2000
|
+
IamRoleArn?: string | undefined;
|
|
2001
2001
|
/**
|
|
2002
2002
|
* <p>The AppStream 2.0 view that is displayed to your users when they stream from the fleet. When <code>APP</code> is specified, only the windows of applications opened by users display. When <code>DESKTOP</code> is specified, the standard desktop that is provided by the operating system displays.</p>
|
|
2003
2003
|
* <p>The default value is <code>APP</code>.</p>
|
|
2004
2004
|
* @public
|
|
2005
2005
|
*/
|
|
2006
|
-
StreamView?: StreamView;
|
|
2006
|
+
StreamView?: StreamView | undefined;
|
|
2007
2007
|
/**
|
|
2008
2008
|
* <p>The fleet platform. WINDOWS_SERVER_2019 and AMAZON_LINUX2 are supported for Elastic
|
|
2009
2009
|
* fleets. </p>
|
|
2010
2010
|
* @public
|
|
2011
2011
|
*/
|
|
2012
|
-
Platform?: PlatformType;
|
|
2012
|
+
Platform?: PlatformType | undefined;
|
|
2013
2013
|
/**
|
|
2014
2014
|
* <p>The maximum concurrent sessions of the Elastic fleet. This is required for Elastic
|
|
2015
2015
|
* fleets, and not allowed for other fleet types.</p>
|
|
2016
2016
|
* @public
|
|
2017
2017
|
*/
|
|
2018
|
-
MaxConcurrentSessions?: number;
|
|
2018
|
+
MaxConcurrentSessions?: number | undefined;
|
|
2019
2019
|
/**
|
|
2020
2020
|
* <p>The USB device filter strings that specify which USB devices a user can redirect to the fleet streaming session, when using the Windows native client. This is allowed but not required for Elastic fleets.</p>
|
|
2021
2021
|
* @public
|
|
2022
2022
|
*/
|
|
2023
|
-
UsbDeviceFilterStrings?: string[];
|
|
2023
|
+
UsbDeviceFilterStrings?: string[] | undefined;
|
|
2024
2024
|
/**
|
|
2025
2025
|
* <p>The S3 location of the session scripts configuration zip file. This only applies to Elastic fleets.</p>
|
|
2026
2026
|
* @public
|
|
2027
2027
|
*/
|
|
2028
|
-
SessionScriptS3Location?: S3Location;
|
|
2028
|
+
SessionScriptS3Location?: S3Location | undefined;
|
|
2029
2029
|
/**
|
|
2030
2030
|
* <p>The maximum number of user sessions on an instance. This only applies to multi-session fleets.</p>
|
|
2031
2031
|
* @public
|
|
2032
2032
|
*/
|
|
2033
|
-
MaxSessionsPerInstance?: number;
|
|
2033
|
+
MaxSessionsPerInstance?: number | undefined;
|
|
2034
2034
|
}
|
|
2035
2035
|
/**
|
|
2036
2036
|
* <p>Describes a fleet error.</p>
|
|
@@ -2041,12 +2041,12 @@ export interface FleetError {
|
|
|
2041
2041
|
* <p>The error code.</p>
|
|
2042
2042
|
* @public
|
|
2043
2043
|
*/
|
|
2044
|
-
ErrorCode?: FleetErrorCode;
|
|
2044
|
+
ErrorCode?: FleetErrorCode | undefined;
|
|
2045
2045
|
/**
|
|
2046
2046
|
* <p>The error message.</p>
|
|
2047
2047
|
* @public
|
|
2048
2048
|
*/
|
|
2049
|
-
ErrorMessage?: string;
|
|
2049
|
+
ErrorMessage?: string | undefined;
|
|
2050
2050
|
}
|
|
2051
2051
|
/**
|
|
2052
2052
|
* @public
|
|
@@ -2081,22 +2081,22 @@ export interface Fleet {
|
|
|
2081
2081
|
* <p>The fleet name to display.</p>
|
|
2082
2082
|
* @public
|
|
2083
2083
|
*/
|
|
2084
|
-
DisplayName?: string;
|
|
2084
|
+
DisplayName?: string | undefined;
|
|
2085
2085
|
/**
|
|
2086
2086
|
* <p>The description to display.</p>
|
|
2087
2087
|
* @public
|
|
2088
2088
|
*/
|
|
2089
|
-
Description?: string;
|
|
2089
|
+
Description?: string | undefined;
|
|
2090
2090
|
/**
|
|
2091
2091
|
* <p>The name of the image used to create the fleet.</p>
|
|
2092
2092
|
* @public
|
|
2093
2093
|
*/
|
|
2094
|
-
ImageName?: string;
|
|
2094
|
+
ImageName?: string | undefined;
|
|
2095
2095
|
/**
|
|
2096
2096
|
* <p>The ARN for the public, private, or shared image.</p>
|
|
2097
2097
|
* @public
|
|
2098
2098
|
*/
|
|
2099
|
-
ImageArn?: string;
|
|
2099
|
+
ImageArn?: string | undefined;
|
|
2100
2100
|
/**
|
|
2101
2101
|
* <p>The instance type to use when launching fleet instances. The following instance types are available:</p>
|
|
2102
2102
|
* <ul>
|
|
@@ -2220,7 +2220,7 @@ export interface Fleet {
|
|
|
2220
2220
|
* </dl>
|
|
2221
2221
|
* @public
|
|
2222
2222
|
*/
|
|
2223
|
-
FleetType?: FleetType;
|
|
2223
|
+
FleetType?: FleetType | undefined;
|
|
2224
2224
|
/**
|
|
2225
2225
|
* <p>The capacity status for the fleet.</p>
|
|
2226
2226
|
* @public
|
|
@@ -2231,13 +2231,13 @@ export interface Fleet {
|
|
|
2231
2231
|
* <p>Specify a value between 600 and 360000.</p>
|
|
2232
2232
|
* @public
|
|
2233
2233
|
*/
|
|
2234
|
-
MaxUserDurationInSeconds?: number;
|
|
2234
|
+
MaxUserDurationInSeconds?: number | undefined;
|
|
2235
2235
|
/**
|
|
2236
2236
|
* <p>The amount of time that a streaming session remains active after users disconnect. If they try to reconnect to the streaming session after a disconnection or network interruption within this time interval, they are connected to their previous session. Otherwise, they are connected to a new session with a new streaming instance.</p>
|
|
2237
2237
|
* <p>Specify a value between 60 and 36000.</p>
|
|
2238
2238
|
* @public
|
|
2239
2239
|
*/
|
|
2240
|
-
DisconnectTimeoutInSeconds?: number;
|
|
2240
|
+
DisconnectTimeoutInSeconds?: number | undefined;
|
|
2241
2241
|
/**
|
|
2242
2242
|
* <p>The current state for the fleet.</p>
|
|
2243
2243
|
* @public
|
|
@@ -2247,27 +2247,27 @@ export interface Fleet {
|
|
|
2247
2247
|
* <p>The VPC configuration for the fleet.</p>
|
|
2248
2248
|
* @public
|
|
2249
2249
|
*/
|
|
2250
|
-
VpcConfig?: VpcConfig;
|
|
2250
|
+
VpcConfig?: VpcConfig | undefined;
|
|
2251
2251
|
/**
|
|
2252
2252
|
* <p>The time the fleet was created.</p>
|
|
2253
2253
|
* @public
|
|
2254
2254
|
*/
|
|
2255
|
-
CreatedTime?: Date;
|
|
2255
|
+
CreatedTime?: Date | undefined;
|
|
2256
2256
|
/**
|
|
2257
2257
|
* <p>The fleet errors.</p>
|
|
2258
2258
|
* @public
|
|
2259
2259
|
*/
|
|
2260
|
-
FleetErrors?: FleetError[];
|
|
2260
|
+
FleetErrors?: FleetError[] | undefined;
|
|
2261
2261
|
/**
|
|
2262
2262
|
* <p>Indicates whether default internet access is enabled for the fleet.</p>
|
|
2263
2263
|
* @public
|
|
2264
2264
|
*/
|
|
2265
|
-
EnableDefaultInternetAccess?: boolean;
|
|
2265
|
+
EnableDefaultInternetAccess?: boolean | undefined;
|
|
2266
2266
|
/**
|
|
2267
2267
|
* <p>The name of the directory and organizational unit (OU) to use to join the fleet to a Microsoft Active Directory domain. </p>
|
|
2268
2268
|
* @public
|
|
2269
2269
|
*/
|
|
2270
|
-
DomainJoinInfo?: DomainJoinInfo;
|
|
2270
|
+
DomainJoinInfo?: DomainJoinInfo | undefined;
|
|
2271
2271
|
/**
|
|
2272
2272
|
* <p>The amount of time that users can be idle (inactive) before they are disconnected
|
|
2273
2273
|
* from their streaming session and the <code>DisconnectTimeoutInSeconds</code> time
|
|
@@ -2285,44 +2285,44 @@ export interface Fleet {
|
|
|
2285
2285
|
* </note>
|
|
2286
2286
|
* @public
|
|
2287
2287
|
*/
|
|
2288
|
-
IdleDisconnectTimeoutInSeconds?: number;
|
|
2288
|
+
IdleDisconnectTimeoutInSeconds?: number | undefined;
|
|
2289
2289
|
/**
|
|
2290
2290
|
* <p>The ARN of the IAM role that is applied to the fleet. To assume a role, the fleet instance calls the AWS Security Token Service (STS) <code>AssumeRole</code> API operation and passes the ARN of the role to use. The operation creates a new session with temporary credentials. AppStream 2.0 retrieves the temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
|
|
2291
2291
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on AppStream 2.0 Streaming Instances</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
|
|
2292
2292
|
* @public
|
|
2293
2293
|
*/
|
|
2294
|
-
IamRoleArn?: string;
|
|
2294
|
+
IamRoleArn?: string | undefined;
|
|
2295
2295
|
/**
|
|
2296
2296
|
* <p>The AppStream 2.0 view that is displayed to your users when they stream from the fleet. When <code>APP</code> is specified, only the windows of applications opened by users display. When <code>DESKTOP</code> is specified, the standard desktop that is provided by the operating system displays.</p>
|
|
2297
2297
|
* <p>The default value is <code>APP</code>.</p>
|
|
2298
2298
|
* @public
|
|
2299
2299
|
*/
|
|
2300
|
-
StreamView?: StreamView;
|
|
2300
|
+
StreamView?: StreamView | undefined;
|
|
2301
2301
|
/**
|
|
2302
2302
|
* <p>The platform of the fleet.</p>
|
|
2303
2303
|
* @public
|
|
2304
2304
|
*/
|
|
2305
|
-
Platform?: PlatformType;
|
|
2305
|
+
Platform?: PlatformType | undefined;
|
|
2306
2306
|
/**
|
|
2307
2307
|
* <p>The maximum number of concurrent sessions for the fleet.</p>
|
|
2308
2308
|
* @public
|
|
2309
2309
|
*/
|
|
2310
|
-
MaxConcurrentSessions?: number;
|
|
2310
|
+
MaxConcurrentSessions?: number | undefined;
|
|
2311
2311
|
/**
|
|
2312
2312
|
* <p>The USB device filter strings associated with the fleet.</p>
|
|
2313
2313
|
* @public
|
|
2314
2314
|
*/
|
|
2315
|
-
UsbDeviceFilterStrings?: string[];
|
|
2315
|
+
UsbDeviceFilterStrings?: string[] | undefined;
|
|
2316
2316
|
/**
|
|
2317
2317
|
* <p>The S3 location of the session scripts configuration zip file. This only applies to Elastic fleets.</p>
|
|
2318
2318
|
* @public
|
|
2319
2319
|
*/
|
|
2320
|
-
SessionScriptS3Location?: S3Location;
|
|
2320
|
+
SessionScriptS3Location?: S3Location | undefined;
|
|
2321
2321
|
/**
|
|
2322
2322
|
* <p>The maximum number of user sessions on an instance. This only applies to multi-session fleets.</p>
|
|
2323
2323
|
* @public
|
|
2324
2324
|
*/
|
|
2325
|
-
MaxSessionsPerInstance?: number;
|
|
2325
|
+
MaxSessionsPerInstance?: number | undefined;
|
|
2326
2326
|
}
|
|
2327
2327
|
/**
|
|
2328
2328
|
* @public
|
|
@@ -2332,7 +2332,7 @@ export interface CreateFleetResult {
|
|
|
2332
2332
|
* <p>Information about the fleet.</p>
|
|
2333
2333
|
* @public
|
|
2334
2334
|
*/
|
|
2335
|
-
Fleet?: Fleet;
|
|
2335
|
+
Fleet?: Fleet | undefined;
|
|
2336
2336
|
}
|
|
2337
2337
|
/**
|
|
2338
2338
|
* @public
|
|
@@ -2347,12 +2347,12 @@ export interface CreateImageBuilderRequest {
|
|
|
2347
2347
|
* <p>The name of the image used to create the image builder.</p>
|
|
2348
2348
|
* @public
|
|
2349
2349
|
*/
|
|
2350
|
-
ImageName?: string;
|
|
2350
|
+
ImageName?: string | undefined;
|
|
2351
2351
|
/**
|
|
2352
2352
|
* <p>The ARN of the public, private, or shared image to use.</p>
|
|
2353
2353
|
* @public
|
|
2354
2354
|
*/
|
|
2355
|
-
ImageArn?: string;
|
|
2355
|
+
ImageArn?: string | undefined;
|
|
2356
2356
|
/**
|
|
2357
2357
|
* <p>The instance type to use when launching the image builder. The following instance types are available:</p>
|
|
2358
2358
|
* <ul>
|
|
@@ -2463,38 +2463,38 @@ export interface CreateImageBuilderRequest {
|
|
|
2463
2463
|
* <p>The description to display.</p>
|
|
2464
2464
|
* @public
|
|
2465
2465
|
*/
|
|
2466
|
-
Description?: string;
|
|
2466
|
+
Description?: string | undefined;
|
|
2467
2467
|
/**
|
|
2468
2468
|
* <p>The image builder name to display.</p>
|
|
2469
2469
|
* @public
|
|
2470
2470
|
*/
|
|
2471
|
-
DisplayName?: string;
|
|
2471
|
+
DisplayName?: string | undefined;
|
|
2472
2472
|
/**
|
|
2473
2473
|
* <p>The VPC configuration for the image builder. You can specify only one subnet.</p>
|
|
2474
2474
|
* @public
|
|
2475
2475
|
*/
|
|
2476
|
-
VpcConfig?: VpcConfig;
|
|
2476
|
+
VpcConfig?: VpcConfig | undefined;
|
|
2477
2477
|
/**
|
|
2478
2478
|
* <p>The Amazon Resource Name (ARN) of the IAM role to apply to the image builder. To assume a role, the image builder calls the AWS Security Token Service (STS) <code>AssumeRole</code> API operation and passes the ARN of the role to use. The operation creates a new session with temporary credentials. AppStream 2.0 retrieves the temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
|
|
2479
2479
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on AppStream 2.0 Streaming Instances</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
|
|
2480
2480
|
* @public
|
|
2481
2481
|
*/
|
|
2482
|
-
IamRoleArn?: string;
|
|
2482
|
+
IamRoleArn?: string | undefined;
|
|
2483
2483
|
/**
|
|
2484
2484
|
* <p>Enables or disables default internet access for the image builder.</p>
|
|
2485
2485
|
* @public
|
|
2486
2486
|
*/
|
|
2487
|
-
EnableDefaultInternetAccess?: boolean;
|
|
2487
|
+
EnableDefaultInternetAccess?: boolean | undefined;
|
|
2488
2488
|
/**
|
|
2489
2489
|
* <p>The name of the directory and organizational unit (OU) to use to join the image builder to a Microsoft Active Directory domain. </p>
|
|
2490
2490
|
* @public
|
|
2491
2491
|
*/
|
|
2492
|
-
DomainJoinInfo?: DomainJoinInfo;
|
|
2492
|
+
DomainJoinInfo?: DomainJoinInfo | undefined;
|
|
2493
2493
|
/**
|
|
2494
2494
|
* <p>The version of the AppStream 2.0 agent to use for this image builder. To use the latest version of the AppStream 2.0 agent, specify [LATEST]. </p>
|
|
2495
2495
|
* @public
|
|
2496
2496
|
*/
|
|
2497
|
-
AppstreamAgentVersion?: string;
|
|
2497
|
+
AppstreamAgentVersion?: string | undefined;
|
|
2498
2498
|
/**
|
|
2499
2499
|
* <p>The tags to associate with the image builder. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=. </p>
|
|
2500
2500
|
* <p>Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: </p>
|
|
@@ -2503,12 +2503,12 @@ export interface CreateImageBuilderRequest {
|
|
|
2503
2503
|
* <p>For more information about tags, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
|
|
2504
2504
|
* @public
|
|
2505
2505
|
*/
|
|
2506
|
-
Tags?: Record<string, string
|
|
2506
|
+
Tags?: Record<string, string> | undefined;
|
|
2507
2507
|
/**
|
|
2508
2508
|
* <p>The list of interface VPC endpoint (interface endpoint) objects. Administrators can connect to the image builder only through the specified endpoints.</p>
|
|
2509
2509
|
* @public
|
|
2510
2510
|
*/
|
|
2511
|
-
AccessEndpoints?: AccessEndpoint[];
|
|
2511
|
+
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
2512
2512
|
}
|
|
2513
2513
|
/**
|
|
2514
2514
|
* @public
|
|
@@ -2531,12 +2531,12 @@ export interface NetworkAccessConfiguration {
|
|
|
2531
2531
|
* <p>The private IP address of the elastic network interface that is attached to instances in your VPC.</p>
|
|
2532
2532
|
* @public
|
|
2533
2533
|
*/
|
|
2534
|
-
EniPrivateIpAddress?: string;
|
|
2534
|
+
EniPrivateIpAddress?: string | undefined;
|
|
2535
2535
|
/**
|
|
2536
2536
|
* <p>The resource identifier of the elastic network interface that is attached to instances in your VPC. All network interfaces have the eni-xxxxxxxx resource identifier.</p>
|
|
2537
2537
|
* @public
|
|
2538
2538
|
*/
|
|
2539
|
-
EniId?: string;
|
|
2539
|
+
EniId?: string | undefined;
|
|
2540
2540
|
}
|
|
2541
2541
|
/**
|
|
2542
2542
|
* @public
|
|
@@ -2580,12 +2580,12 @@ export interface ImageBuilderStateChangeReason {
|
|
|
2580
2580
|
* <p>The state change reason code.</p>
|
|
2581
2581
|
* @public
|
|
2582
2582
|
*/
|
|
2583
|
-
Code?: ImageBuilderStateChangeReasonCode;
|
|
2583
|
+
Code?: ImageBuilderStateChangeReasonCode | undefined;
|
|
2584
2584
|
/**
|
|
2585
2585
|
* <p>The state change reason message.</p>
|
|
2586
2586
|
* @public
|
|
2587
2587
|
*/
|
|
2588
|
-
Message?: string;
|
|
2588
|
+
Message?: string | undefined;
|
|
2589
2589
|
}
|
|
2590
2590
|
/**
|
|
2591
2591
|
* <p>Describes a virtual machine that is used to create an image. </p>
|
|
@@ -2601,27 +2601,27 @@ export interface ImageBuilder {
|
|
|
2601
2601
|
* <p>The ARN for the image builder.</p>
|
|
2602
2602
|
* @public
|
|
2603
2603
|
*/
|
|
2604
|
-
Arn?: string;
|
|
2604
|
+
Arn?: string | undefined;
|
|
2605
2605
|
/**
|
|
2606
2606
|
* <p>The ARN of the image from which this builder was created.</p>
|
|
2607
2607
|
* @public
|
|
2608
2608
|
*/
|
|
2609
|
-
ImageArn?: string;
|
|
2609
|
+
ImageArn?: string | undefined;
|
|
2610
2610
|
/**
|
|
2611
2611
|
* <p>The description to display.</p>
|
|
2612
2612
|
* @public
|
|
2613
2613
|
*/
|
|
2614
|
-
Description?: string;
|
|
2614
|
+
Description?: string | undefined;
|
|
2615
2615
|
/**
|
|
2616
2616
|
* <p>The image builder name to display.</p>
|
|
2617
2617
|
* @public
|
|
2618
2618
|
*/
|
|
2619
|
-
DisplayName?: string;
|
|
2619
|
+
DisplayName?: string | undefined;
|
|
2620
2620
|
/**
|
|
2621
2621
|
* <p>The VPC configuration of the image builder.</p>
|
|
2622
2622
|
* @public
|
|
2623
2623
|
*/
|
|
2624
|
-
VpcConfig?: VpcConfig;
|
|
2624
|
+
VpcConfig?: VpcConfig | undefined;
|
|
2625
2625
|
/**
|
|
2626
2626
|
* <p>The instance type for the image builder. The following instance types are available:</p>
|
|
2627
2627
|
* <ul>
|
|
@@ -2727,68 +2727,68 @@ export interface ImageBuilder {
|
|
|
2727
2727
|
* </ul>
|
|
2728
2728
|
* @public
|
|
2729
2729
|
*/
|
|
2730
|
-
InstanceType?: string;
|
|
2730
|
+
InstanceType?: string | undefined;
|
|
2731
2731
|
/**
|
|
2732
2732
|
* <p>The operating system platform of the image builder.</p>
|
|
2733
2733
|
* @public
|
|
2734
2734
|
*/
|
|
2735
|
-
Platform?: PlatformType;
|
|
2735
|
+
Platform?: PlatformType | undefined;
|
|
2736
2736
|
/**
|
|
2737
2737
|
* <p>The ARN of the IAM role that is applied to the image builder. To assume a role, the image builder calls the AWS Security Token Service (STS) <code>AssumeRole</code> API operation and passes the ARN of the role to use. The operation creates a new session with temporary credentials. AppStream 2.0 retrieves the temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
|
|
2738
2738
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on AppStream 2.0 Streaming Instances</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
|
|
2739
2739
|
* @public
|
|
2740
2740
|
*/
|
|
2741
|
-
IamRoleArn?: string;
|
|
2741
|
+
IamRoleArn?: string | undefined;
|
|
2742
2742
|
/**
|
|
2743
2743
|
* <p>The state of the image builder.</p>
|
|
2744
2744
|
* @public
|
|
2745
2745
|
*/
|
|
2746
|
-
State?: ImageBuilderState;
|
|
2746
|
+
State?: ImageBuilderState | undefined;
|
|
2747
2747
|
/**
|
|
2748
2748
|
* <p>The reason why the last state change occurred.</p>
|
|
2749
2749
|
* @public
|
|
2750
2750
|
*/
|
|
2751
|
-
StateChangeReason?: ImageBuilderStateChangeReason;
|
|
2751
|
+
StateChangeReason?: ImageBuilderStateChangeReason | undefined;
|
|
2752
2752
|
/**
|
|
2753
2753
|
* <p>The time stamp when the image builder was created.</p>
|
|
2754
2754
|
* @public
|
|
2755
2755
|
*/
|
|
2756
|
-
CreatedTime?: Date;
|
|
2756
|
+
CreatedTime?: Date | undefined;
|
|
2757
2757
|
/**
|
|
2758
2758
|
* <p>Enables or disables default internet access for the image builder.</p>
|
|
2759
2759
|
* @public
|
|
2760
2760
|
*/
|
|
2761
|
-
EnableDefaultInternetAccess?: boolean;
|
|
2761
|
+
EnableDefaultInternetAccess?: boolean | undefined;
|
|
2762
2762
|
/**
|
|
2763
2763
|
* <p>The name of the directory and organizational unit (OU) to use to join the image builder to a Microsoft Active Directory domain. </p>
|
|
2764
2764
|
* @public
|
|
2765
2765
|
*/
|
|
2766
|
-
DomainJoinInfo?: DomainJoinInfo;
|
|
2766
|
+
DomainJoinInfo?: DomainJoinInfo | undefined;
|
|
2767
2767
|
/**
|
|
2768
2768
|
* <p>Describes the network details of the fleet or image builder instance.</p>
|
|
2769
2769
|
* @public
|
|
2770
2770
|
*/
|
|
2771
|
-
NetworkAccessConfiguration?: NetworkAccessConfiguration;
|
|
2771
|
+
NetworkAccessConfiguration?: NetworkAccessConfiguration | undefined;
|
|
2772
2772
|
/**
|
|
2773
2773
|
* <p>The image builder errors.</p>
|
|
2774
2774
|
* @public
|
|
2775
2775
|
*/
|
|
2776
|
-
ImageBuilderErrors?: ResourceError[];
|
|
2776
|
+
ImageBuilderErrors?: ResourceError[] | undefined;
|
|
2777
2777
|
/**
|
|
2778
2778
|
* <p>The version of the AppStream 2.0 agent that is currently being used by the image builder. </p>
|
|
2779
2779
|
* @public
|
|
2780
2780
|
*/
|
|
2781
|
-
AppstreamAgentVersion?: string;
|
|
2781
|
+
AppstreamAgentVersion?: string | undefined;
|
|
2782
2782
|
/**
|
|
2783
2783
|
* <p>The list of virtual private cloud (VPC) interface endpoint objects. Administrators can connect to the image builder only through the specified endpoints.</p>
|
|
2784
2784
|
* @public
|
|
2785
2785
|
*/
|
|
2786
|
-
AccessEndpoints?: AccessEndpoint[];
|
|
2786
|
+
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
2787
2787
|
/**
|
|
2788
2788
|
* <p>Indicates whether the image builder is using the latest AppStream 2.0 agent version or not.</p>
|
|
2789
2789
|
* @public
|
|
2790
2790
|
*/
|
|
2791
|
-
LatestAppstreamAgentVersion?: LatestAppstreamAgentVersion;
|
|
2791
|
+
LatestAppstreamAgentVersion?: LatestAppstreamAgentVersion | undefined;
|
|
2792
2792
|
}
|
|
2793
2793
|
/**
|
|
2794
2794
|
* @public
|
|
@@ -2798,7 +2798,7 @@ export interface CreateImageBuilderResult {
|
|
|
2798
2798
|
* <p>Information about the image builder.</p>
|
|
2799
2799
|
* @public
|
|
2800
2800
|
*/
|
|
2801
|
-
ImageBuilder?: ImageBuilder;
|
|
2801
|
+
ImageBuilder?: ImageBuilder | undefined;
|
|
2802
2802
|
}
|
|
2803
2803
|
/**
|
|
2804
2804
|
* @public
|
|
@@ -2814,7 +2814,7 @@ export interface CreateImageBuilderStreamingURLRequest {
|
|
|
2814
2814
|
* Specify a value between 1 and 604800 seconds. The default is 3600 seconds.</p>
|
|
2815
2815
|
* @public
|
|
2816
2816
|
*/
|
|
2817
|
-
Validity?: number;
|
|
2817
|
+
Validity?: number | undefined;
|
|
2818
2818
|
}
|
|
2819
2819
|
/**
|
|
2820
2820
|
* @public
|
|
@@ -2824,12 +2824,12 @@ export interface CreateImageBuilderStreamingURLResult {
|
|
|
2824
2824
|
* <p>The URL to start the AppStream 2.0 streaming session.</p>
|
|
2825
2825
|
* @public
|
|
2826
2826
|
*/
|
|
2827
|
-
StreamingURL?: string;
|
|
2827
|
+
StreamingURL?: string | undefined;
|
|
2828
2828
|
/**
|
|
2829
2829
|
* <p>The elapsed time, in seconds after the Unix epoch, when this URL expires.</p>
|
|
2830
2830
|
* @public
|
|
2831
2831
|
*/
|
|
2832
|
-
Expires?: Date;
|
|
2832
|
+
Expires?: Date | undefined;
|
|
2833
2833
|
}
|
|
2834
2834
|
/**
|
|
2835
2835
|
* @public
|
|
@@ -2858,12 +2858,12 @@ export interface StorageConnector {
|
|
|
2858
2858
|
* <p>The ARN of the storage connector.</p>
|
|
2859
2859
|
* @public
|
|
2860
2860
|
*/
|
|
2861
|
-
ResourceIdentifier?: string;
|
|
2861
|
+
ResourceIdentifier?: string | undefined;
|
|
2862
2862
|
/**
|
|
2863
2863
|
* <p>The names of the domains for the account.</p>
|
|
2864
2864
|
* @public
|
|
2865
2865
|
*/
|
|
2866
|
-
Domains?: string[];
|
|
2866
|
+
Domains?: string[] | undefined;
|
|
2867
2867
|
}
|
|
2868
2868
|
/**
|
|
2869
2869
|
* @public
|
|
@@ -2886,7 +2886,7 @@ export interface StreamingExperienceSettings {
|
|
|
2886
2886
|
* <p>The preferred protocol that you want to use while streaming your application.</p>
|
|
2887
2887
|
* @public
|
|
2888
2888
|
*/
|
|
2889
|
-
PreferredProtocol?: PreferredProtocol;
|
|
2889
|
+
PreferredProtocol?: PreferredProtocol | undefined;
|
|
2890
2890
|
}
|
|
2891
2891
|
/**
|
|
2892
2892
|
* @public
|
|
@@ -2922,7 +2922,7 @@ export interface UserSetting {
|
|
|
2922
2922
|
* <p>The value can be between 1 and 20,971,520 (20 MB).</p>
|
|
2923
2923
|
* @public
|
|
2924
2924
|
*/
|
|
2925
|
-
MaximumLength?: number;
|
|
2925
|
+
MaximumLength?: number | undefined;
|
|
2926
2926
|
}
|
|
2927
2927
|
/**
|
|
2928
2928
|
* @public
|
|
@@ -2937,37 +2937,37 @@ export interface CreateStackRequest {
|
|
|
2937
2937
|
* <p>The description to display.</p>
|
|
2938
2938
|
* @public
|
|
2939
2939
|
*/
|
|
2940
|
-
Description?: string;
|
|
2940
|
+
Description?: string | undefined;
|
|
2941
2941
|
/**
|
|
2942
2942
|
* <p>The stack name to display.</p>
|
|
2943
2943
|
* @public
|
|
2944
2944
|
*/
|
|
2945
|
-
DisplayName?: string;
|
|
2945
|
+
DisplayName?: string | undefined;
|
|
2946
2946
|
/**
|
|
2947
2947
|
* <p>The storage connectors to enable.</p>
|
|
2948
2948
|
* @public
|
|
2949
2949
|
*/
|
|
2950
|
-
StorageConnectors?: StorageConnector[];
|
|
2950
|
+
StorageConnectors?: StorageConnector[] | undefined;
|
|
2951
2951
|
/**
|
|
2952
2952
|
* <p>The URL that users are redirected to after their streaming session ends.</p>
|
|
2953
2953
|
* @public
|
|
2954
2954
|
*/
|
|
2955
|
-
RedirectURL?: string;
|
|
2955
|
+
RedirectURL?: string | undefined;
|
|
2956
2956
|
/**
|
|
2957
2957
|
* <p>The URL that users are redirected to after they click the Send Feedback link. If no URL is specified, no Send Feedback link is displayed.</p>
|
|
2958
2958
|
* @public
|
|
2959
2959
|
*/
|
|
2960
|
-
FeedbackURL?: string;
|
|
2960
|
+
FeedbackURL?: string | undefined;
|
|
2961
2961
|
/**
|
|
2962
2962
|
* <p>The actions that are enabled or disabled for users during their streaming sessions. By default, these actions are enabled. </p>
|
|
2963
2963
|
* @public
|
|
2964
2964
|
*/
|
|
2965
|
-
UserSettings?: UserSetting[];
|
|
2965
|
+
UserSettings?: UserSetting[] | undefined;
|
|
2966
2966
|
/**
|
|
2967
2967
|
* <p>The persistent application settings for users of a stack. When these settings are enabled, changes that users make to applications and Windows settings are automatically saved after each session and applied to the next session.</p>
|
|
2968
2968
|
* @public
|
|
2969
2969
|
*/
|
|
2970
|
-
ApplicationSettings?: ApplicationSettings;
|
|
2970
|
+
ApplicationSettings?: ApplicationSettings | undefined;
|
|
2971
2971
|
/**
|
|
2972
2972
|
* <p>The tags to associate with the stack. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=. </p>
|
|
2973
2973
|
* <p>If you do not specify a value, the value is set to an empty string.</p>
|
|
@@ -2976,22 +2976,22 @@ export interface CreateStackRequest {
|
|
|
2976
2976
|
* <p>For more information about tags, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
|
|
2977
2977
|
* @public
|
|
2978
2978
|
*/
|
|
2979
|
-
Tags?: Record<string, string
|
|
2979
|
+
Tags?: Record<string, string> | undefined;
|
|
2980
2980
|
/**
|
|
2981
2981
|
* <p>The list of interface VPC endpoint (interface endpoint) objects. Users of the stack can connect to AppStream 2.0 only through the specified endpoints.</p>
|
|
2982
2982
|
* @public
|
|
2983
2983
|
*/
|
|
2984
|
-
AccessEndpoints?: AccessEndpoint[];
|
|
2984
|
+
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
2985
2985
|
/**
|
|
2986
2986
|
* <p>The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions. </p>
|
|
2987
2987
|
* @public
|
|
2988
2988
|
*/
|
|
2989
|
-
EmbedHostDomains?: string[];
|
|
2989
|
+
EmbedHostDomains?: string[] | undefined;
|
|
2990
2990
|
/**
|
|
2991
2991
|
* <p>The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.</p>
|
|
2992
2992
|
* @public
|
|
2993
2993
|
*/
|
|
2994
|
-
StreamingExperienceSettings?: StreamingExperienceSettings;
|
|
2994
|
+
StreamingExperienceSettings?: StreamingExperienceSettings | undefined;
|
|
2995
2995
|
}
|
|
2996
2996
|
/**
|
|
2997
2997
|
* @public
|
|
@@ -3014,12 +3014,12 @@ export interface StackError {
|
|
|
3014
3014
|
* <p>The error code.</p>
|
|
3015
3015
|
* @public
|
|
3016
3016
|
*/
|
|
3017
|
-
ErrorCode?: StackErrorCode;
|
|
3017
|
+
ErrorCode?: StackErrorCode | undefined;
|
|
3018
3018
|
/**
|
|
3019
3019
|
* <p>The error message.</p>
|
|
3020
3020
|
* @public
|
|
3021
3021
|
*/
|
|
3022
|
-
ErrorMessage?: string;
|
|
3022
|
+
ErrorMessage?: string | undefined;
|
|
3023
3023
|
}
|
|
3024
3024
|
/**
|
|
3025
3025
|
* <p>Describes a stack.</p>
|
|
@@ -3030,7 +3030,7 @@ export interface Stack {
|
|
|
3030
3030
|
* <p>The ARN of the stack.</p>
|
|
3031
3031
|
* @public
|
|
3032
3032
|
*/
|
|
3033
|
-
Arn?: string;
|
|
3033
|
+
Arn?: string | undefined;
|
|
3034
3034
|
/**
|
|
3035
3035
|
* <p>The name of the stack.</p>
|
|
3036
3036
|
* @public
|
|
@@ -3040,62 +3040,62 @@ export interface Stack {
|
|
|
3040
3040
|
* <p>The description to display.</p>
|
|
3041
3041
|
* @public
|
|
3042
3042
|
*/
|
|
3043
|
-
Description?: string;
|
|
3043
|
+
Description?: string | undefined;
|
|
3044
3044
|
/**
|
|
3045
3045
|
* <p>The stack name to display.</p>
|
|
3046
3046
|
* @public
|
|
3047
3047
|
*/
|
|
3048
|
-
DisplayName?: string;
|
|
3048
|
+
DisplayName?: string | undefined;
|
|
3049
3049
|
/**
|
|
3050
3050
|
* <p>The time the stack was created.</p>
|
|
3051
3051
|
* @public
|
|
3052
3052
|
*/
|
|
3053
|
-
CreatedTime?: Date;
|
|
3053
|
+
CreatedTime?: Date | undefined;
|
|
3054
3054
|
/**
|
|
3055
3055
|
* <p>The storage connectors to enable.</p>
|
|
3056
3056
|
* @public
|
|
3057
3057
|
*/
|
|
3058
|
-
StorageConnectors?: StorageConnector[];
|
|
3058
|
+
StorageConnectors?: StorageConnector[] | undefined;
|
|
3059
3059
|
/**
|
|
3060
3060
|
* <p>The URL that users are redirected to after their streaming session ends.</p>
|
|
3061
3061
|
* @public
|
|
3062
3062
|
*/
|
|
3063
|
-
RedirectURL?: string;
|
|
3063
|
+
RedirectURL?: string | undefined;
|
|
3064
3064
|
/**
|
|
3065
3065
|
* <p>The URL that users are redirected to after they click the Send Feedback link. If no URL is specified, no Send Feedback link is displayed.</p>
|
|
3066
3066
|
* @public
|
|
3067
3067
|
*/
|
|
3068
|
-
FeedbackURL?: string;
|
|
3068
|
+
FeedbackURL?: string | undefined;
|
|
3069
3069
|
/**
|
|
3070
3070
|
* <p>The errors for the stack.</p>
|
|
3071
3071
|
* @public
|
|
3072
3072
|
*/
|
|
3073
|
-
StackErrors?: StackError[];
|
|
3073
|
+
StackErrors?: StackError[] | undefined;
|
|
3074
3074
|
/**
|
|
3075
3075
|
* <p>The actions that are enabled or disabled for users during their streaming sessions. By default these actions are enabled.</p>
|
|
3076
3076
|
* @public
|
|
3077
3077
|
*/
|
|
3078
|
-
UserSettings?: UserSetting[];
|
|
3078
|
+
UserSettings?: UserSetting[] | undefined;
|
|
3079
3079
|
/**
|
|
3080
3080
|
* <p>The persistent application settings for users of the stack.</p>
|
|
3081
3081
|
* @public
|
|
3082
3082
|
*/
|
|
3083
|
-
ApplicationSettings?: ApplicationSettingsResponse;
|
|
3083
|
+
ApplicationSettings?: ApplicationSettingsResponse | undefined;
|
|
3084
3084
|
/**
|
|
3085
3085
|
* <p>The list of virtual private cloud (VPC) interface endpoint objects. Users of the stack can connect to AppStream 2.0 only through the specified endpoints. </p>
|
|
3086
3086
|
* @public
|
|
3087
3087
|
*/
|
|
3088
|
-
AccessEndpoints?: AccessEndpoint[];
|
|
3088
|
+
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
3089
3089
|
/**
|
|
3090
3090
|
* <p>The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions.</p>
|
|
3091
3091
|
* @public
|
|
3092
3092
|
*/
|
|
3093
|
-
EmbedHostDomains?: string[];
|
|
3093
|
+
EmbedHostDomains?: string[] | undefined;
|
|
3094
3094
|
/**
|
|
3095
3095
|
* <p>The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.</p>
|
|
3096
3096
|
* @public
|
|
3097
3097
|
*/
|
|
3098
|
-
StreamingExperienceSettings?: StreamingExperienceSettings;
|
|
3098
|
+
StreamingExperienceSettings?: StreamingExperienceSettings | undefined;
|
|
3099
3099
|
}
|
|
3100
3100
|
/**
|
|
3101
3101
|
* @public
|
|
@@ -3105,7 +3105,7 @@ export interface CreateStackResult {
|
|
|
3105
3105
|
* <p>Information about the stack.</p>
|
|
3106
3106
|
* @public
|
|
3107
3107
|
*/
|
|
3108
|
-
Stack?: Stack;
|
|
3108
|
+
Stack?: Stack | undefined;
|
|
3109
3109
|
}
|
|
3110
3110
|
/**
|
|
3111
3111
|
* @public
|
|
@@ -3131,18 +3131,18 @@ export interface CreateStreamingURLRequest {
|
|
|
3131
3131
|
* as <b>Name</b> in the Image Assistant. If your fleet is enabled for the <b>Desktop</b> stream view, you can also choose to launch directly to the operating system desktop. To do so, specify <b>Desktop</b>.</p>
|
|
3132
3132
|
* @public
|
|
3133
3133
|
*/
|
|
3134
|
-
ApplicationId?: string;
|
|
3134
|
+
ApplicationId?: string | undefined;
|
|
3135
3135
|
/**
|
|
3136
3136
|
* <p>The time that the streaming URL will be valid, in seconds.
|
|
3137
3137
|
* Specify a value between 1 and 604800 seconds. The default is 60 seconds.</p>
|
|
3138
3138
|
* @public
|
|
3139
3139
|
*/
|
|
3140
|
-
Validity?: number;
|
|
3140
|
+
Validity?: number | undefined;
|
|
3141
3141
|
/**
|
|
3142
3142
|
* <p>The session context. For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/managing-stacks-fleets.html#managing-stacks-fleets-parameters">Session Context</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
|
|
3143
3143
|
* @public
|
|
3144
3144
|
*/
|
|
3145
|
-
SessionContext?: string;
|
|
3145
|
+
SessionContext?: string | undefined;
|
|
3146
3146
|
}
|
|
3147
3147
|
/**
|
|
3148
3148
|
* @public
|
|
@@ -3152,12 +3152,12 @@ export interface CreateStreamingURLResult {
|
|
|
3152
3152
|
* <p>The URL to start the AppStream 2.0 streaming session.</p>
|
|
3153
3153
|
* @public
|
|
3154
3154
|
*/
|
|
3155
|
-
StreamingURL?: string;
|
|
3155
|
+
StreamingURL?: string | undefined;
|
|
3156
3156
|
/**
|
|
3157
3157
|
* <p>The elapsed time, in seconds after the Unix epoch, when this URL expires.</p>
|
|
3158
3158
|
* @public
|
|
3159
3159
|
*/
|
|
3160
|
-
Expires?: Date;
|
|
3160
|
+
Expires?: Date | undefined;
|
|
3161
3161
|
}
|
|
3162
3162
|
/**
|
|
3163
3163
|
* <p>The website links that display in the catalog page footer.</p>
|
|
@@ -3168,12 +3168,12 @@ export interface ThemeFooterLink {
|
|
|
3168
3168
|
* <p>The name of the websites that display in the catalog page footer.</p>
|
|
3169
3169
|
* @public
|
|
3170
3170
|
*/
|
|
3171
|
-
DisplayName?: string;
|
|
3171
|
+
DisplayName?: string | undefined;
|
|
3172
3172
|
/**
|
|
3173
3173
|
* <p>The URL of the websites that display in the catalog page footer.</p>
|
|
3174
3174
|
* @public
|
|
3175
3175
|
*/
|
|
3176
|
-
FooterLinkURL?: string;
|
|
3176
|
+
FooterLinkURL?: string | undefined;
|
|
3177
3177
|
}
|
|
3178
3178
|
/**
|
|
3179
3179
|
* @public
|
|
@@ -3202,7 +3202,7 @@ export interface CreateThemeForStackRequest {
|
|
|
3202
3202
|
* <p>The links that are displayed in the footer of the streaming application catalog page. These links are helpful resources for users, such as the organization's IT support and product marketing sites.</p>
|
|
3203
3203
|
* @public
|
|
3204
3204
|
*/
|
|
3205
|
-
FooterLinks?: ThemeFooterLink[];
|
|
3205
|
+
FooterLinks?: ThemeFooterLink[] | undefined;
|
|
3206
3206
|
/**
|
|
3207
3207
|
* <p>The title that is displayed at the top of the browser tab during users' application streaming sessions.</p>
|
|
3208
3208
|
* @public
|
|
@@ -3245,42 +3245,42 @@ export interface Theme {
|
|
|
3245
3245
|
* <p>The stack that has the custom branding theme.</p>
|
|
3246
3246
|
* @public
|
|
3247
3247
|
*/
|
|
3248
|
-
StackName?: string;
|
|
3248
|
+
StackName?: string | undefined;
|
|
3249
3249
|
/**
|
|
3250
3250
|
* <p>The state of the theme.</p>
|
|
3251
3251
|
* @public
|
|
3252
3252
|
*/
|
|
3253
|
-
State?: ThemeState;
|
|
3253
|
+
State?: ThemeState | undefined;
|
|
3254
3254
|
/**
|
|
3255
3255
|
* <p>The browser tab page title.</p>
|
|
3256
3256
|
* @public
|
|
3257
3257
|
*/
|
|
3258
|
-
ThemeTitleText?: string;
|
|
3258
|
+
ThemeTitleText?: string | undefined;
|
|
3259
3259
|
/**
|
|
3260
3260
|
* <p>The color that is used for the website links, text, buttons, and catalog page background.</p>
|
|
3261
3261
|
* @public
|
|
3262
3262
|
*/
|
|
3263
|
-
ThemeStyling?: ThemeStyling;
|
|
3263
|
+
ThemeStyling?: ThemeStyling | undefined;
|
|
3264
3264
|
/**
|
|
3265
3265
|
* <p>The website links that display in the catalog page footer.</p>
|
|
3266
3266
|
* @public
|
|
3267
3267
|
*/
|
|
3268
|
-
ThemeFooterLinks?: ThemeFooterLink[];
|
|
3268
|
+
ThemeFooterLinks?: ThemeFooterLink[] | undefined;
|
|
3269
3269
|
/**
|
|
3270
3270
|
* <p>The URL of the logo that displays in the catalog page header.</p>
|
|
3271
3271
|
* @public
|
|
3272
3272
|
*/
|
|
3273
|
-
ThemeOrganizationLogoURL?: string;
|
|
3273
|
+
ThemeOrganizationLogoURL?: string | undefined;
|
|
3274
3274
|
/**
|
|
3275
3275
|
* <p>The URL of the icon that displays at the top of a user's browser tab during streaming sessions.</p>
|
|
3276
3276
|
* @public
|
|
3277
3277
|
*/
|
|
3278
|
-
ThemeFaviconURL?: string;
|
|
3278
|
+
ThemeFaviconURL?: string | undefined;
|
|
3279
3279
|
/**
|
|
3280
3280
|
* <p>The time the theme was created.</p>
|
|
3281
3281
|
* @public
|
|
3282
3282
|
*/
|
|
3283
|
-
CreatedTime?: Date;
|
|
3283
|
+
CreatedTime?: Date | undefined;
|
|
3284
3284
|
}
|
|
3285
3285
|
/**
|
|
3286
3286
|
* @public
|
|
@@ -3290,7 +3290,7 @@ export interface CreateThemeForStackResult {
|
|
|
3290
3290
|
* <p> The theme object that contains the metadata of the custom branding.</p>
|
|
3291
3291
|
* @public
|
|
3292
3292
|
*/
|
|
3293
|
-
Theme?: Theme;
|
|
3293
|
+
Theme?: Theme | undefined;
|
|
3294
3294
|
}
|
|
3295
3295
|
/**
|
|
3296
3296
|
* @public
|
|
@@ -3310,12 +3310,12 @@ export interface CreateUpdatedImageRequest {
|
|
|
3310
3310
|
* <p>The description to display for the new image.</p>
|
|
3311
3311
|
* @public
|
|
3312
3312
|
*/
|
|
3313
|
-
newImageDescription?: string;
|
|
3313
|
+
newImageDescription?: string | undefined;
|
|
3314
3314
|
/**
|
|
3315
3315
|
* <p>The name to display for the new image.</p>
|
|
3316
3316
|
* @public
|
|
3317
3317
|
*/
|
|
3318
|
-
newImageDisplayName?: string;
|
|
3318
|
+
newImageDisplayName?: string | undefined;
|
|
3319
3319
|
/**
|
|
3320
3320
|
* <p>The tags to associate with the new image. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=. </p>
|
|
3321
3321
|
* <p>Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: </p>
|
|
@@ -3324,12 +3324,12 @@ export interface CreateUpdatedImageRequest {
|
|
|
3324
3324
|
* <p>For more information about tags, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
|
|
3325
3325
|
* @public
|
|
3326
3326
|
*/
|
|
3327
|
-
newImageTags?: Record<string, string
|
|
3327
|
+
newImageTags?: Record<string, string> | undefined;
|
|
3328
3328
|
/**
|
|
3329
3329
|
* <p>Indicates whether to display the status of image update availability before AppStream 2.0 initiates the process of creating a new updated image. If this value is set to <code>true</code>, AppStream 2.0 displays whether image updates are available. If this value is set to <code>false</code>, AppStream 2.0 initiates the process of creating a new updated image without displaying whether image updates are available.</p>
|
|
3330
3330
|
* @public
|
|
3331
3331
|
*/
|
|
3332
|
-
dryRun?: boolean;
|
|
3332
|
+
dryRun?: boolean | undefined;
|
|
3333
3333
|
}
|
|
3334
3334
|
/**
|
|
3335
3335
|
* @public
|
|
@@ -3352,12 +3352,12 @@ export interface ImagePermissions {
|
|
|
3352
3352
|
* <p>Indicates whether the image can be used for a fleet.</p>
|
|
3353
3353
|
* @public
|
|
3354
3354
|
*/
|
|
3355
|
-
allowFleet?: boolean;
|
|
3355
|
+
allowFleet?: boolean | undefined;
|
|
3356
3356
|
/**
|
|
3357
3357
|
* <p>Indicates whether the image can be used for an image builder.</p>
|
|
3358
3358
|
* @public
|
|
3359
3359
|
*/
|
|
3360
|
-
allowImageBuilder?: boolean;
|
|
3360
|
+
allowImageBuilder?: boolean | undefined;
|
|
3361
3361
|
}
|
|
3362
3362
|
/**
|
|
3363
3363
|
* @public
|
|
@@ -3410,12 +3410,12 @@ export interface ImageStateChangeReason {
|
|
|
3410
3410
|
* <p>The state change reason code.</p>
|
|
3411
3411
|
* @public
|
|
3412
3412
|
*/
|
|
3413
|
-
Code?: ImageStateChangeReasonCode;
|
|
3413
|
+
Code?: ImageStateChangeReasonCode | undefined;
|
|
3414
3414
|
/**
|
|
3415
3415
|
* <p>The state change reason message.</p>
|
|
3416
3416
|
* @public
|
|
3417
3417
|
*/
|
|
3418
|
-
Message?: string;
|
|
3418
|
+
Message?: string | undefined;
|
|
3419
3419
|
}
|
|
3420
3420
|
/**
|
|
3421
3421
|
* @public
|
|
@@ -3444,89 +3444,89 @@ export interface Image {
|
|
|
3444
3444
|
* <p>The ARN of the image.</p>
|
|
3445
3445
|
* @public
|
|
3446
3446
|
*/
|
|
3447
|
-
Arn?: string;
|
|
3447
|
+
Arn?: string | undefined;
|
|
3448
3448
|
/**
|
|
3449
3449
|
* <p>The ARN of the image from which this image was created.</p>
|
|
3450
3450
|
* @public
|
|
3451
3451
|
*/
|
|
3452
|
-
BaseImageArn?: string;
|
|
3452
|
+
BaseImageArn?: string | undefined;
|
|
3453
3453
|
/**
|
|
3454
3454
|
* <p>The image name to display.</p>
|
|
3455
3455
|
* @public
|
|
3456
3456
|
*/
|
|
3457
|
-
DisplayName?: string;
|
|
3457
|
+
DisplayName?: string | undefined;
|
|
3458
3458
|
/**
|
|
3459
3459
|
* <p>The image starts in the <code>PENDING</code> state. If image creation succeeds, the
|
|
3460
3460
|
* state is <code>AVAILABLE</code>. If image creation fails, the state is <code>FAILED</code>.</p>
|
|
3461
3461
|
* @public
|
|
3462
3462
|
*/
|
|
3463
|
-
State?: ImageState;
|
|
3463
|
+
State?: ImageState | undefined;
|
|
3464
3464
|
/**
|
|
3465
3465
|
* <p>Indicates whether the image is public or private.</p>
|
|
3466
3466
|
* @public
|
|
3467
3467
|
*/
|
|
3468
|
-
Visibility?: VisibilityType;
|
|
3468
|
+
Visibility?: VisibilityType | undefined;
|
|
3469
3469
|
/**
|
|
3470
3470
|
* <p>Indicates whether an image builder can be launched from this image.</p>
|
|
3471
3471
|
* @public
|
|
3472
3472
|
*/
|
|
3473
|
-
ImageBuilderSupported?: boolean;
|
|
3473
|
+
ImageBuilderSupported?: boolean | undefined;
|
|
3474
3474
|
/**
|
|
3475
3475
|
* <p>The name of the image builder that was used to create the private image. If the image is shared, this value is null.</p>
|
|
3476
3476
|
* @public
|
|
3477
3477
|
*/
|
|
3478
|
-
ImageBuilderName?: string;
|
|
3478
|
+
ImageBuilderName?: string | undefined;
|
|
3479
3479
|
/**
|
|
3480
3480
|
* <p>The operating system platform of the image.</p>
|
|
3481
3481
|
* @public
|
|
3482
3482
|
*/
|
|
3483
|
-
Platform?: PlatformType;
|
|
3483
|
+
Platform?: PlatformType | undefined;
|
|
3484
3484
|
/**
|
|
3485
3485
|
* <p>The description to display.</p>
|
|
3486
3486
|
* @public
|
|
3487
3487
|
*/
|
|
3488
|
-
Description?: string;
|
|
3488
|
+
Description?: string | undefined;
|
|
3489
3489
|
/**
|
|
3490
3490
|
* <p>The reason why the last state change occurred.</p>
|
|
3491
3491
|
* @public
|
|
3492
3492
|
*/
|
|
3493
|
-
StateChangeReason?: ImageStateChangeReason;
|
|
3493
|
+
StateChangeReason?: ImageStateChangeReason | undefined;
|
|
3494
3494
|
/**
|
|
3495
3495
|
* <p>The applications associated with the image.</p>
|
|
3496
3496
|
* @public
|
|
3497
3497
|
*/
|
|
3498
|
-
Applications?: Application[];
|
|
3498
|
+
Applications?: Application[] | undefined;
|
|
3499
3499
|
/**
|
|
3500
3500
|
* <p>The time the image was created.</p>
|
|
3501
3501
|
* @public
|
|
3502
3502
|
*/
|
|
3503
|
-
CreatedTime?: Date;
|
|
3503
|
+
CreatedTime?: Date | undefined;
|
|
3504
3504
|
/**
|
|
3505
3505
|
* <p>The release date of the public base image.
|
|
3506
3506
|
* For private images, this date is the release date of the base image from which the image was created.</p>
|
|
3507
3507
|
* @public
|
|
3508
3508
|
*/
|
|
3509
|
-
PublicBaseImageReleasedDate?: Date;
|
|
3509
|
+
PublicBaseImageReleasedDate?: Date | undefined;
|
|
3510
3510
|
/**
|
|
3511
3511
|
* <p>The version of the AppStream 2.0 agent to use for instances that are launched from this image. </p>
|
|
3512
3512
|
* @public
|
|
3513
3513
|
*/
|
|
3514
|
-
AppstreamAgentVersion?: string;
|
|
3514
|
+
AppstreamAgentVersion?: string | undefined;
|
|
3515
3515
|
/**
|
|
3516
3516
|
* <p>The permissions to provide to the destination AWS account for the specified image.</p>
|
|
3517
3517
|
* @public
|
|
3518
3518
|
*/
|
|
3519
|
-
ImagePermissions?: ImagePermissions;
|
|
3519
|
+
ImagePermissions?: ImagePermissions | undefined;
|
|
3520
3520
|
/**
|
|
3521
3521
|
* <p>Describes the errors that are returned when a new image can't be created.</p>
|
|
3522
3522
|
* @public
|
|
3523
3523
|
*/
|
|
3524
|
-
ImageErrors?: ResourceError[];
|
|
3524
|
+
ImageErrors?: ResourceError[] | undefined;
|
|
3525
3525
|
/**
|
|
3526
3526
|
* <p>Indicates whether the image is using the latest AppStream 2.0 agent version or not.</p>
|
|
3527
3527
|
* @public
|
|
3528
3528
|
*/
|
|
3529
|
-
LatestAppstreamAgentVersion?: LatestAppstreamAgentVersion;
|
|
3529
|
+
LatestAppstreamAgentVersion?: LatestAppstreamAgentVersion | undefined;
|
|
3530
3530
|
/**
|
|
3531
3531
|
* <p>The supported instances families that determine which image a customer can use when the customer launches a fleet or image builder. The following instances families are supported:</p>
|
|
3532
3532
|
* <ul>
|
|
@@ -3557,17 +3557,17 @@ export interface Image {
|
|
|
3557
3557
|
* </ul>
|
|
3558
3558
|
* @public
|
|
3559
3559
|
*/
|
|
3560
|
-
SupportedInstanceFamilies?: string[];
|
|
3560
|
+
SupportedInstanceFamilies?: string[] | undefined;
|
|
3561
3561
|
/**
|
|
3562
3562
|
* <p>Indicates whether dynamic app providers are enabled within an AppStream 2.0 image or not.</p>
|
|
3563
3563
|
* @public
|
|
3564
3564
|
*/
|
|
3565
|
-
DynamicAppProvidersEnabled?: DynamicAppProvidersEnabled;
|
|
3565
|
+
DynamicAppProvidersEnabled?: DynamicAppProvidersEnabled | undefined;
|
|
3566
3566
|
/**
|
|
3567
3567
|
* <p>Indicates whether the image is shared with another account ID.</p>
|
|
3568
3568
|
* @public
|
|
3569
3569
|
*/
|
|
3570
|
-
ImageSharedWithOthers?: ImageSharedWithOthers;
|
|
3570
|
+
ImageSharedWithOthers?: ImageSharedWithOthers | undefined;
|
|
3571
3571
|
}
|
|
3572
3572
|
/**
|
|
3573
3573
|
* @public
|
|
@@ -3577,12 +3577,12 @@ export interface CreateUpdatedImageResult {
|
|
|
3577
3577
|
* <p>Describes an image.</p>
|
|
3578
3578
|
* @public
|
|
3579
3579
|
*/
|
|
3580
|
-
image?: Image;
|
|
3580
|
+
image?: Image | undefined;
|
|
3581
3581
|
/**
|
|
3582
3582
|
* <p>Indicates whether a new image can be created.</p>
|
|
3583
3583
|
* @public
|
|
3584
3584
|
*/
|
|
3585
|
-
canUpdateImage?: boolean;
|
|
3585
|
+
canUpdateImage?: boolean | undefined;
|
|
3586
3586
|
}
|
|
3587
3587
|
/**
|
|
3588
3588
|
* @public
|
|
@@ -3613,12 +3613,12 @@ export interface CreateUsageReportSubscriptionResult {
|
|
|
3613
3613
|
* when you enable usage reports, AppStream 2.0 creates a new S3 bucket.</p>
|
|
3614
3614
|
* @public
|
|
3615
3615
|
*/
|
|
3616
|
-
S3BucketName?: string;
|
|
3616
|
+
S3BucketName?: string | undefined;
|
|
3617
3617
|
/**
|
|
3618
3618
|
* <p>The schedule for generating usage reports.</p>
|
|
3619
3619
|
* @public
|
|
3620
3620
|
*/
|
|
3621
|
-
Schedule?: UsageReportSchedule;
|
|
3621
|
+
Schedule?: UsageReportSchedule | undefined;
|
|
3622
3622
|
}
|
|
3623
3623
|
/**
|
|
3624
3624
|
* @public
|
|
@@ -3651,17 +3651,17 @@ export interface CreateUserRequest {
|
|
|
3651
3651
|
* </note>
|
|
3652
3652
|
* @public
|
|
3653
3653
|
*/
|
|
3654
|
-
MessageAction?: MessageAction;
|
|
3654
|
+
MessageAction?: MessageAction | undefined;
|
|
3655
3655
|
/**
|
|
3656
3656
|
* <p>The first name, or given name, of the user.</p>
|
|
3657
3657
|
* @public
|
|
3658
3658
|
*/
|
|
3659
|
-
FirstName?: string;
|
|
3659
|
+
FirstName?: string | undefined;
|
|
3660
3660
|
/**
|
|
3661
3661
|
* <p>The last name, or surname, of the user.</p>
|
|
3662
3662
|
* @public
|
|
3663
3663
|
*/
|
|
3664
|
-
LastName?: string;
|
|
3664
|
+
LastName?: string | undefined;
|
|
3665
3665
|
/**
|
|
3666
3666
|
* <p>The authentication type for the user. You must specify USERPOOL. </p>
|
|
3667
3667
|
* @public
|
|
@@ -3699,7 +3699,7 @@ export declare class ResourceInUseException extends __BaseException {
|
|
|
3699
3699
|
* <p>The error message in the exception.</p>
|
|
3700
3700
|
* @public
|
|
3701
3701
|
*/
|
|
3702
|
-
Message?: string;
|
|
3702
|
+
Message?: string | undefined;
|
|
3703
3703
|
/**
|
|
3704
3704
|
* @internal
|
|
3705
3705
|
*/
|
|
@@ -3803,7 +3803,7 @@ export interface DeleteImageResult {
|
|
|
3803
3803
|
* <p>Information about the image.</p>
|
|
3804
3804
|
* @public
|
|
3805
3805
|
*/
|
|
3806
|
-
Image?: Image;
|
|
3806
|
+
Image?: Image | undefined;
|
|
3807
3807
|
}
|
|
3808
3808
|
/**
|
|
3809
3809
|
* @public
|
|
@@ -3823,7 +3823,7 @@ export interface DeleteImageBuilderResult {
|
|
|
3823
3823
|
* <p>Information about the image builder.</p>
|
|
3824
3824
|
* @public
|
|
3825
3825
|
*/
|
|
3826
|
-
ImageBuilder?: ImageBuilder;
|
|
3826
|
+
ImageBuilder?: ImageBuilder | undefined;
|
|
3827
3827
|
}
|
|
3828
3828
|
/**
|
|
3829
3829
|
* @public
|
|
@@ -3916,23 +3916,23 @@ export interface DescribeAppBlockBuilderAppBlockAssociationsRequest {
|
|
|
3916
3916
|
* <p>The ARN of the app block.</p>
|
|
3917
3917
|
* @public
|
|
3918
3918
|
*/
|
|
3919
|
-
AppBlockArn?: string;
|
|
3919
|
+
AppBlockArn?: string | undefined;
|
|
3920
3920
|
/**
|
|
3921
3921
|
* <p>The name of the app block builder.</p>
|
|
3922
3922
|
* @public
|
|
3923
3923
|
*/
|
|
3924
|
-
AppBlockBuilderName?: string;
|
|
3924
|
+
AppBlockBuilderName?: string | undefined;
|
|
3925
3925
|
/**
|
|
3926
3926
|
* <p>The maximum size of each page of results.</p>
|
|
3927
3927
|
* @public
|
|
3928
3928
|
*/
|
|
3929
|
-
MaxResults?: number;
|
|
3929
|
+
MaxResults?: number | undefined;
|
|
3930
3930
|
/**
|
|
3931
3931
|
* <p>The pagination token used to retrieve the next page of results for this
|
|
3932
3932
|
* operation.</p>
|
|
3933
3933
|
* @public
|
|
3934
3934
|
*/
|
|
3935
|
-
NextToken?: string;
|
|
3935
|
+
NextToken?: string | undefined;
|
|
3936
3936
|
}
|
|
3937
3937
|
/**
|
|
3938
3938
|
* @public
|
|
@@ -3942,13 +3942,13 @@ export interface DescribeAppBlockBuilderAppBlockAssociationsResult {
|
|
|
3942
3942
|
* <p>This list of app block builders associated with app blocks.</p>
|
|
3943
3943
|
* @public
|
|
3944
3944
|
*/
|
|
3945
|
-
AppBlockBuilderAppBlockAssociations?: AppBlockBuilderAppBlockAssociation[];
|
|
3945
|
+
AppBlockBuilderAppBlockAssociations?: AppBlockBuilderAppBlockAssociation[] | undefined;
|
|
3946
3946
|
/**
|
|
3947
3947
|
* <p>The pagination token used to retrieve the next page of results for this
|
|
3948
3948
|
* operation.</p>
|
|
3949
3949
|
* @public
|
|
3950
3950
|
*/
|
|
3951
|
-
NextToken?: string;
|
|
3951
|
+
NextToken?: string | undefined;
|
|
3952
3952
|
}
|
|
3953
3953
|
/**
|
|
3954
3954
|
* @public
|
|
@@ -3958,18 +3958,18 @@ export interface DescribeAppBlockBuildersRequest {
|
|
|
3958
3958
|
* <p>The names of the app block builders.</p>
|
|
3959
3959
|
* @public
|
|
3960
3960
|
*/
|
|
3961
|
-
Names?: string[];
|
|
3961
|
+
Names?: string[] | undefined;
|
|
3962
3962
|
/**
|
|
3963
3963
|
* <p>The pagination token used to retrieve the next page of results for this
|
|
3964
3964
|
* operation.</p>
|
|
3965
3965
|
* @public
|
|
3966
3966
|
*/
|
|
3967
|
-
NextToken?: string;
|
|
3967
|
+
NextToken?: string | undefined;
|
|
3968
3968
|
/**
|
|
3969
3969
|
* <p>The maximum size of each page of results. The maximum value is 25.</p>
|
|
3970
3970
|
* @public
|
|
3971
3971
|
*/
|
|
3972
|
-
MaxResults?: number;
|
|
3972
|
+
MaxResults?: number | undefined;
|
|
3973
3973
|
}
|
|
3974
3974
|
/**
|
|
3975
3975
|
* @public
|
|
@@ -3979,13 +3979,13 @@ export interface DescribeAppBlockBuildersResult {
|
|
|
3979
3979
|
* <p>The list that describes one or more app block builders.</p>
|
|
3980
3980
|
* @public
|
|
3981
3981
|
*/
|
|
3982
|
-
AppBlockBuilders?: AppBlockBuilder[];
|
|
3982
|
+
AppBlockBuilders?: AppBlockBuilder[] | undefined;
|
|
3983
3983
|
/**
|
|
3984
3984
|
* <p>The pagination token used to retrieve the next page of results for this
|
|
3985
3985
|
* operation.</p>
|
|
3986
3986
|
* @public
|
|
3987
3987
|
*/
|
|
3988
|
-
NextToken?: string;
|
|
3988
|
+
NextToken?: string | undefined;
|
|
3989
3989
|
}
|
|
3990
3990
|
/**
|
|
3991
3991
|
* @public
|
|
@@ -3995,18 +3995,18 @@ export interface DescribeAppBlocksRequest {
|
|
|
3995
3995
|
* <p>The ARNs of the app blocks.</p>
|
|
3996
3996
|
* @public
|
|
3997
3997
|
*/
|
|
3998
|
-
Arns?: string[];
|
|
3998
|
+
Arns?: string[] | undefined;
|
|
3999
3999
|
/**
|
|
4000
4000
|
* <p>The pagination token used to retrieve the next page of results for this
|
|
4001
4001
|
* operation.</p>
|
|
4002
4002
|
* @public
|
|
4003
4003
|
*/
|
|
4004
|
-
NextToken?: string;
|
|
4004
|
+
NextToken?: string | undefined;
|
|
4005
4005
|
/**
|
|
4006
4006
|
* <p>The maximum size of each page of results.</p>
|
|
4007
4007
|
* @public
|
|
4008
4008
|
*/
|
|
4009
|
-
MaxResults?: number;
|
|
4009
|
+
MaxResults?: number | undefined;
|
|
4010
4010
|
}
|
|
4011
4011
|
/**
|
|
4012
4012
|
* @public
|
|
@@ -4016,13 +4016,13 @@ export interface DescribeAppBlocksResult {
|
|
|
4016
4016
|
* <p>The app blocks in the list.</p>
|
|
4017
4017
|
* @public
|
|
4018
4018
|
*/
|
|
4019
|
-
AppBlocks?: AppBlock[];
|
|
4019
|
+
AppBlocks?: AppBlock[] | undefined;
|
|
4020
4020
|
/**
|
|
4021
4021
|
* <p>The pagination token used to retrieve the next page of results for this
|
|
4022
4022
|
* operation.</p>
|
|
4023
4023
|
* @public
|
|
4024
4024
|
*/
|
|
4025
|
-
NextToken?: string;
|
|
4025
|
+
NextToken?: string | undefined;
|
|
4026
4026
|
}
|
|
4027
4027
|
/**
|
|
4028
4028
|
* @public
|
|
@@ -4032,23 +4032,23 @@ export interface DescribeApplicationFleetAssociationsRequest {
|
|
|
4032
4032
|
* <p>The name of the fleet.</p>
|
|
4033
4033
|
* @public
|
|
4034
4034
|
*/
|
|
4035
|
-
FleetName?: string;
|
|
4035
|
+
FleetName?: string | undefined;
|
|
4036
4036
|
/**
|
|
4037
4037
|
* <p>The ARN of the application.</p>
|
|
4038
4038
|
* @public
|
|
4039
4039
|
*/
|
|
4040
|
-
ApplicationArn?: string;
|
|
4040
|
+
ApplicationArn?: string | undefined;
|
|
4041
4041
|
/**
|
|
4042
4042
|
* <p>The maximum size of each page of results.</p>
|
|
4043
4043
|
* @public
|
|
4044
4044
|
*/
|
|
4045
|
-
MaxResults?: number;
|
|
4045
|
+
MaxResults?: number | undefined;
|
|
4046
4046
|
/**
|
|
4047
4047
|
* <p>The pagination token used to retrieve the next page of results for this
|
|
4048
4048
|
* operation.</p>
|
|
4049
4049
|
* @public
|
|
4050
4050
|
*/
|
|
4051
|
-
NextToken?: string;
|
|
4051
|
+
NextToken?: string | undefined;
|
|
4052
4052
|
}
|
|
4053
4053
|
/**
|
|
4054
4054
|
* @public
|
|
@@ -4058,13 +4058,13 @@ export interface DescribeApplicationFleetAssociationsResult {
|
|
|
4058
4058
|
* <p>The application fleet associations in the list.</p>
|
|
4059
4059
|
* @public
|
|
4060
4060
|
*/
|
|
4061
|
-
ApplicationFleetAssociations?: ApplicationFleetAssociation[];
|
|
4061
|
+
ApplicationFleetAssociations?: ApplicationFleetAssociation[] | undefined;
|
|
4062
4062
|
/**
|
|
4063
4063
|
* <p>The pagination token used to retrieve the next page of results for this
|
|
4064
4064
|
* operation.</p>
|
|
4065
4065
|
* @public
|
|
4066
4066
|
*/
|
|
4067
|
-
NextToken?: string;
|
|
4067
|
+
NextToken?: string | undefined;
|
|
4068
4068
|
}
|
|
4069
4069
|
/**
|
|
4070
4070
|
* @public
|
|
@@ -4074,18 +4074,18 @@ export interface DescribeApplicationsRequest {
|
|
|
4074
4074
|
* <p>The ARNs for the applications.</p>
|
|
4075
4075
|
* @public
|
|
4076
4076
|
*/
|
|
4077
|
-
Arns?: string[];
|
|
4077
|
+
Arns?: string[] | undefined;
|
|
4078
4078
|
/**
|
|
4079
4079
|
* <p>The pagination token used to retrieve the next page of results for this
|
|
4080
4080
|
* operation.</p>
|
|
4081
4081
|
* @public
|
|
4082
4082
|
*/
|
|
4083
|
-
NextToken?: string;
|
|
4083
|
+
NextToken?: string | undefined;
|
|
4084
4084
|
/**
|
|
4085
4085
|
* <p>The maximum size of each page of results.</p>
|
|
4086
4086
|
* @public
|
|
4087
4087
|
*/
|
|
4088
|
-
MaxResults?: number;
|
|
4088
|
+
MaxResults?: number | undefined;
|
|
4089
4089
|
}
|
|
4090
4090
|
/**
|
|
4091
4091
|
* @public
|
|
@@ -4095,13 +4095,13 @@ export interface DescribeApplicationsResult {
|
|
|
4095
4095
|
* <p>The applications in the list.</p>
|
|
4096
4096
|
* @public
|
|
4097
4097
|
*/
|
|
4098
|
-
Applications?: Application[];
|
|
4098
|
+
Applications?: Application[] | undefined;
|
|
4099
4099
|
/**
|
|
4100
4100
|
* <p>The pagination token used to retrieve the next page of results for this
|
|
4101
4101
|
* operation.</p>
|
|
4102
4102
|
* @public
|
|
4103
4103
|
*/
|
|
4104
|
-
NextToken?: string;
|
|
4104
|
+
NextToken?: string | undefined;
|
|
4105
4105
|
}
|
|
4106
4106
|
/**
|
|
4107
4107
|
* @public
|
|
@@ -4111,17 +4111,17 @@ export interface DescribeDirectoryConfigsRequest {
|
|
|
4111
4111
|
* <p>The directory names.</p>
|
|
4112
4112
|
* @public
|
|
4113
4113
|
*/
|
|
4114
|
-
DirectoryNames?: string[];
|
|
4114
|
+
DirectoryNames?: string[] | undefined;
|
|
4115
4115
|
/**
|
|
4116
4116
|
* <p>The maximum size of each page of results.</p>
|
|
4117
4117
|
* @public
|
|
4118
4118
|
*/
|
|
4119
|
-
MaxResults?: number;
|
|
4119
|
+
MaxResults?: number | undefined;
|
|
4120
4120
|
/**
|
|
4121
4121
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
4122
4122
|
* @public
|
|
4123
4123
|
*/
|
|
4124
|
-
NextToken?: string;
|
|
4124
|
+
NextToken?: string | undefined;
|
|
4125
4125
|
}
|
|
4126
4126
|
/**
|
|
4127
4127
|
* @public
|
|
@@ -4131,12 +4131,12 @@ export interface DescribeDirectoryConfigsResult {
|
|
|
4131
4131
|
* <p>Information about the directory configurations. Note that although the response syntax in this topic includes the account password, this password is not returned in the actual response. </p>
|
|
4132
4132
|
* @public
|
|
4133
4133
|
*/
|
|
4134
|
-
DirectoryConfigs?: DirectoryConfig[];
|
|
4134
|
+
DirectoryConfigs?: DirectoryConfig[] | undefined;
|
|
4135
4135
|
/**
|
|
4136
4136
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
4137
4137
|
* @public
|
|
4138
4138
|
*/
|
|
4139
|
-
NextToken?: string;
|
|
4139
|
+
NextToken?: string | undefined;
|
|
4140
4140
|
}
|
|
4141
4141
|
/**
|
|
4142
4142
|
* @public
|
|
@@ -4146,7 +4146,7 @@ export interface DescribeEntitlementsRequest {
|
|
|
4146
4146
|
* <p>The name of the entitlement.</p>
|
|
4147
4147
|
* @public
|
|
4148
4148
|
*/
|
|
4149
|
-
Name?: string;
|
|
4149
|
+
Name?: string | undefined;
|
|
4150
4150
|
/**
|
|
4151
4151
|
* <p>The name of the stack with which the entitlement is associated.</p>
|
|
4152
4152
|
* @public
|
|
@@ -4156,12 +4156,12 @@ export interface DescribeEntitlementsRequest {
|
|
|
4156
4156
|
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
4157
4157
|
* @public
|
|
4158
4158
|
*/
|
|
4159
|
-
NextToken?: string;
|
|
4159
|
+
NextToken?: string | undefined;
|
|
4160
4160
|
/**
|
|
4161
4161
|
* <p>The maximum size of each page of results.</p>
|
|
4162
4162
|
* @public
|
|
4163
4163
|
*/
|
|
4164
|
-
MaxResults?: number;
|
|
4164
|
+
MaxResults?: number | undefined;
|
|
4165
4165
|
}
|
|
4166
4166
|
/**
|
|
4167
4167
|
* @public
|
|
@@ -4171,13 +4171,13 @@ export interface DescribeEntitlementsResult {
|
|
|
4171
4171
|
* <p>The entitlements.</p>
|
|
4172
4172
|
* @public
|
|
4173
4173
|
*/
|
|
4174
|
-
Entitlements?: Entitlement[];
|
|
4174
|
+
Entitlements?: Entitlement[] | undefined;
|
|
4175
4175
|
/**
|
|
4176
4176
|
* <p>The pagination token used to retrieve the next page of results for this
|
|
4177
4177
|
* operation.</p>
|
|
4178
4178
|
* @public
|
|
4179
4179
|
*/
|
|
4180
|
-
NextToken?: string;
|
|
4180
|
+
NextToken?: string | undefined;
|
|
4181
4181
|
}
|
|
4182
4182
|
/**
|
|
4183
4183
|
* @public
|
|
@@ -4187,12 +4187,12 @@ export interface DescribeFleetsRequest {
|
|
|
4187
4187
|
* <p>The names of the fleets to describe.</p>
|
|
4188
4188
|
* @public
|
|
4189
4189
|
*/
|
|
4190
|
-
Names?: string[];
|
|
4190
|
+
Names?: string[] | undefined;
|
|
4191
4191
|
/**
|
|
4192
4192
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
4193
4193
|
* @public
|
|
4194
4194
|
*/
|
|
4195
|
-
NextToken?: string;
|
|
4195
|
+
NextToken?: string | undefined;
|
|
4196
4196
|
}
|
|
4197
4197
|
/**
|
|
4198
4198
|
* @public
|
|
@@ -4202,12 +4202,12 @@ export interface DescribeFleetsResult {
|
|
|
4202
4202
|
* <p>Information about the fleets.</p>
|
|
4203
4203
|
* @public
|
|
4204
4204
|
*/
|
|
4205
|
-
Fleets?: Fleet[];
|
|
4205
|
+
Fleets?: Fleet[] | undefined;
|
|
4206
4206
|
/**
|
|
4207
4207
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
4208
4208
|
* @public
|
|
4209
4209
|
*/
|
|
4210
|
-
NextToken?: string;
|
|
4210
|
+
NextToken?: string | undefined;
|
|
4211
4211
|
}
|
|
4212
4212
|
/**
|
|
4213
4213
|
* @public
|
|
@@ -4217,17 +4217,17 @@ export interface DescribeImageBuildersRequest {
|
|
|
4217
4217
|
* <p>The names of the image builders to describe.</p>
|
|
4218
4218
|
* @public
|
|
4219
4219
|
*/
|
|
4220
|
-
Names?: string[];
|
|
4220
|
+
Names?: string[] | undefined;
|
|
4221
4221
|
/**
|
|
4222
4222
|
* <p>The maximum size of each page of results.</p>
|
|
4223
4223
|
* @public
|
|
4224
4224
|
*/
|
|
4225
|
-
MaxResults?: number;
|
|
4225
|
+
MaxResults?: number | undefined;
|
|
4226
4226
|
/**
|
|
4227
4227
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
4228
4228
|
* @public
|
|
4229
4229
|
*/
|
|
4230
|
-
NextToken?: string;
|
|
4230
|
+
NextToken?: string | undefined;
|
|
4231
4231
|
}
|
|
4232
4232
|
/**
|
|
4233
4233
|
* @public
|
|
@@ -4237,12 +4237,12 @@ export interface DescribeImageBuildersResult {
|
|
|
4237
4237
|
* <p>Information about the image builders.</p>
|
|
4238
4238
|
* @public
|
|
4239
4239
|
*/
|
|
4240
|
-
ImageBuilders?: ImageBuilder[];
|
|
4240
|
+
ImageBuilders?: ImageBuilder[] | undefined;
|
|
4241
4241
|
/**
|
|
4242
4242
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
4243
4243
|
* @public
|
|
4244
4244
|
*/
|
|
4245
|
-
NextToken?: string;
|
|
4245
|
+
NextToken?: string | undefined;
|
|
4246
4246
|
}
|
|
4247
4247
|
/**
|
|
4248
4248
|
* @public
|
|
@@ -4257,17 +4257,17 @@ export interface DescribeImagePermissionsRequest {
|
|
|
4257
4257
|
* <p>The maximum size of each page of results.</p>
|
|
4258
4258
|
* @public
|
|
4259
4259
|
*/
|
|
4260
|
-
MaxResults?: number;
|
|
4260
|
+
MaxResults?: number | undefined;
|
|
4261
4261
|
/**
|
|
4262
4262
|
* <p>The 12-digit identifier of one or more AWS accounts with which the image is shared.</p>
|
|
4263
4263
|
* @public
|
|
4264
4264
|
*/
|
|
4265
|
-
SharedAwsAccountIds?: string[];
|
|
4265
|
+
SharedAwsAccountIds?: string[] | undefined;
|
|
4266
4266
|
/**
|
|
4267
4267
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
4268
4268
|
* @public
|
|
4269
4269
|
*/
|
|
4270
|
-
NextToken?: string;
|
|
4270
|
+
NextToken?: string | undefined;
|
|
4271
4271
|
}
|
|
4272
4272
|
/**
|
|
4273
4273
|
* <p>Describes the permissions that are available to the specified AWS account for a shared image.</p>
|
|
@@ -4293,17 +4293,17 @@ export interface DescribeImagePermissionsResult {
|
|
|
4293
4293
|
* <p>The name of the private image.</p>
|
|
4294
4294
|
* @public
|
|
4295
4295
|
*/
|
|
4296
|
-
Name?: string;
|
|
4296
|
+
Name?: string | undefined;
|
|
4297
4297
|
/**
|
|
4298
4298
|
* <p>The permissions for a private image that you own. </p>
|
|
4299
4299
|
* @public
|
|
4300
4300
|
*/
|
|
4301
|
-
SharedImagePermissionsList?: SharedImagePermissions[];
|
|
4301
|
+
SharedImagePermissionsList?: SharedImagePermissions[] | undefined;
|
|
4302
4302
|
/**
|
|
4303
4303
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
4304
4304
|
* @public
|
|
4305
4305
|
*/
|
|
4306
|
-
NextToken?: string;
|
|
4306
|
+
NextToken?: string | undefined;
|
|
4307
4307
|
}
|
|
4308
4308
|
/**
|
|
4309
4309
|
* @public
|
|
@@ -4313,27 +4313,27 @@ export interface DescribeImagesRequest {
|
|
|
4313
4313
|
* <p>The names of the public or private images to describe.</p>
|
|
4314
4314
|
* @public
|
|
4315
4315
|
*/
|
|
4316
|
-
Names?: string[];
|
|
4316
|
+
Names?: string[] | undefined;
|
|
4317
4317
|
/**
|
|
4318
4318
|
* <p>The ARNs of the public, private, and shared images to describe.</p>
|
|
4319
4319
|
* @public
|
|
4320
4320
|
*/
|
|
4321
|
-
Arns?: string[];
|
|
4321
|
+
Arns?: string[] | undefined;
|
|
4322
4322
|
/**
|
|
4323
4323
|
* <p>The type of image (public, private, or shared) to describe. </p>
|
|
4324
4324
|
* @public
|
|
4325
4325
|
*/
|
|
4326
|
-
Type?: VisibilityType;
|
|
4326
|
+
Type?: VisibilityType | undefined;
|
|
4327
4327
|
/**
|
|
4328
4328
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
4329
4329
|
* @public
|
|
4330
4330
|
*/
|
|
4331
|
-
NextToken?: string;
|
|
4331
|
+
NextToken?: string | undefined;
|
|
4332
4332
|
/**
|
|
4333
4333
|
* <p>The maximum size of each page of results.</p>
|
|
4334
4334
|
* @public
|
|
4335
4335
|
*/
|
|
4336
|
-
MaxResults?: number;
|
|
4336
|
+
MaxResults?: number | undefined;
|
|
4337
4337
|
}
|
|
4338
4338
|
/**
|
|
4339
4339
|
* @public
|
|
@@ -4343,12 +4343,12 @@ export interface DescribeImagesResult {
|
|
|
4343
4343
|
* <p>Information about the images.</p>
|
|
4344
4344
|
* @public
|
|
4345
4345
|
*/
|
|
4346
|
-
Images?: Image[];
|
|
4346
|
+
Images?: Image[] | undefined;
|
|
4347
4347
|
/**
|
|
4348
4348
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
4349
4349
|
* @public
|
|
4350
4350
|
*/
|
|
4351
|
-
NextToken?: string;
|
|
4351
|
+
NextToken?: string | undefined;
|
|
4352
4352
|
}
|
|
4353
4353
|
/**
|
|
4354
4354
|
* @public
|
|
@@ -4368,29 +4368,29 @@ export interface DescribeSessionsRequest {
|
|
|
4368
4368
|
* <p>The user identifier (ID). If you specify a user ID, you must also specify the authentication type.</p>
|
|
4369
4369
|
* @public
|
|
4370
4370
|
*/
|
|
4371
|
-
UserId?: string;
|
|
4371
|
+
UserId?: string | undefined;
|
|
4372
4372
|
/**
|
|
4373
4373
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
4374
4374
|
* @public
|
|
4375
4375
|
*/
|
|
4376
|
-
NextToken?: string;
|
|
4376
|
+
NextToken?: string | undefined;
|
|
4377
4377
|
/**
|
|
4378
4378
|
* <p>The size of each page of results. The default value is 20 and the maximum value is 50.</p>
|
|
4379
4379
|
* @public
|
|
4380
4380
|
*/
|
|
4381
|
-
Limit?: number;
|
|
4381
|
+
Limit?: number | undefined;
|
|
4382
4382
|
/**
|
|
4383
4383
|
* <p>The authentication method. Specify <code>API</code> for a user
|
|
4384
4384
|
* authenticated using a streaming URL or <code>SAML</code> for a SAML federated user.
|
|
4385
4385
|
* The default is to authenticate users using a streaming URL.</p>
|
|
4386
4386
|
* @public
|
|
4387
4387
|
*/
|
|
4388
|
-
AuthenticationType?: AuthenticationType;
|
|
4388
|
+
AuthenticationType?: AuthenticationType | undefined;
|
|
4389
4389
|
/**
|
|
4390
4390
|
* <p>The identifier for the instance hosting the session.</p>
|
|
4391
4391
|
* @public
|
|
4392
4392
|
*/
|
|
4393
|
-
InstanceId?: string;
|
|
4393
|
+
InstanceId?: string | undefined;
|
|
4394
4394
|
}
|
|
4395
4395
|
/**
|
|
4396
4396
|
* @public
|
|
@@ -4451,33 +4451,33 @@ export interface Session {
|
|
|
4451
4451
|
* <p>Specifies whether a user is connected to the streaming session.</p>
|
|
4452
4452
|
* @public
|
|
4453
4453
|
*/
|
|
4454
|
-
ConnectionState?: SessionConnectionState;
|
|
4454
|
+
ConnectionState?: SessionConnectionState | undefined;
|
|
4455
4455
|
/**
|
|
4456
4456
|
* <p>The time when a streaming instance is dedicated for the user.</p>
|
|
4457
4457
|
* @public
|
|
4458
4458
|
*/
|
|
4459
|
-
StartTime?: Date;
|
|
4459
|
+
StartTime?: Date | undefined;
|
|
4460
4460
|
/**
|
|
4461
4461
|
* <p>The time when the streaming session is set to expire. This time is based on the <code>MaxUserDurationinSeconds</code> value, which determines the maximum length of time that a streaming session can run. A streaming session might end earlier than the time specified in <code>SessionMaxExpirationTime</code>, when the <code>DisconnectTimeOutInSeconds</code> elapses or the user chooses to end his or her session. If the <code>DisconnectTimeOutInSeconds</code> elapses, or the user chooses to end his or her session, the streaming instance is terminated and the streaming session ends.</p>
|
|
4462
4462
|
* @public
|
|
4463
4463
|
*/
|
|
4464
|
-
MaxExpirationTime?: Date;
|
|
4464
|
+
MaxExpirationTime?: Date | undefined;
|
|
4465
4465
|
/**
|
|
4466
4466
|
* <p>The authentication method. The user is authenticated using a streaming URL
|
|
4467
4467
|
* (<code>API</code>) or SAML 2.0 federation (<code>SAML</code>).</p>
|
|
4468
4468
|
* @public
|
|
4469
4469
|
*/
|
|
4470
|
-
AuthenticationType?: AuthenticationType;
|
|
4470
|
+
AuthenticationType?: AuthenticationType | undefined;
|
|
4471
4471
|
/**
|
|
4472
4472
|
* <p>The network details for the streaming session.</p>
|
|
4473
4473
|
* @public
|
|
4474
4474
|
*/
|
|
4475
|
-
NetworkAccessConfiguration?: NetworkAccessConfiguration;
|
|
4475
|
+
NetworkAccessConfiguration?: NetworkAccessConfiguration | undefined;
|
|
4476
4476
|
/**
|
|
4477
4477
|
* <p>The identifier for the instance hosting the session.</p>
|
|
4478
4478
|
* @public
|
|
4479
4479
|
*/
|
|
4480
|
-
InstanceId?: string;
|
|
4480
|
+
InstanceId?: string | undefined;
|
|
4481
4481
|
}
|
|
4482
4482
|
/**
|
|
4483
4483
|
* @public
|
|
@@ -4487,12 +4487,12 @@ export interface DescribeSessionsResult {
|
|
|
4487
4487
|
* <p>Information about the streaming sessions.</p>
|
|
4488
4488
|
* @public
|
|
4489
4489
|
*/
|
|
4490
|
-
Sessions?: Session[];
|
|
4490
|
+
Sessions?: Session[] | undefined;
|
|
4491
4491
|
/**
|
|
4492
4492
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
4493
4493
|
* @public
|
|
4494
4494
|
*/
|
|
4495
|
-
NextToken?: string;
|
|
4495
|
+
NextToken?: string | undefined;
|
|
4496
4496
|
}
|
|
4497
4497
|
/**
|
|
4498
4498
|
* @public
|
|
@@ -4502,12 +4502,12 @@ export interface DescribeStacksRequest {
|
|
|
4502
4502
|
* <p>The names of the stacks to describe.</p>
|
|
4503
4503
|
* @public
|
|
4504
4504
|
*/
|
|
4505
|
-
Names?: string[];
|
|
4505
|
+
Names?: string[] | undefined;
|
|
4506
4506
|
/**
|
|
4507
4507
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
4508
4508
|
* @public
|
|
4509
4509
|
*/
|
|
4510
|
-
NextToken?: string;
|
|
4510
|
+
NextToken?: string | undefined;
|
|
4511
4511
|
}
|
|
4512
4512
|
/**
|
|
4513
4513
|
* @public
|
|
@@ -4517,12 +4517,12 @@ export interface DescribeStacksResult {
|
|
|
4517
4517
|
* <p>Information about the stacks.</p>
|
|
4518
4518
|
* @public
|
|
4519
4519
|
*/
|
|
4520
|
-
Stacks?: Stack[];
|
|
4520
|
+
Stacks?: Stack[] | undefined;
|
|
4521
4521
|
/**
|
|
4522
4522
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
4523
4523
|
* @public
|
|
4524
4524
|
*/
|
|
4525
|
-
NextToken?: string;
|
|
4525
|
+
NextToken?: string | undefined;
|
|
4526
4526
|
}
|
|
4527
4527
|
/**
|
|
4528
4528
|
* @public
|
|
@@ -4542,7 +4542,7 @@ export interface DescribeThemeForStackResult {
|
|
|
4542
4542
|
* <p> The theme object that contains the metadata of the custom branding.</p>
|
|
4543
4543
|
* @public
|
|
4544
4544
|
*/
|
|
4545
|
-
Theme?: Theme;
|
|
4545
|
+
Theme?: Theme | undefined;
|
|
4546
4546
|
}
|
|
4547
4547
|
/**
|
|
4548
4548
|
* @public
|
|
@@ -4552,12 +4552,12 @@ export interface DescribeUsageReportSubscriptionsRequest {
|
|
|
4552
4552
|
* <p>The maximum size of each page of results.</p>
|
|
4553
4553
|
* @public
|
|
4554
4554
|
*/
|
|
4555
|
-
MaxResults?: number;
|
|
4555
|
+
MaxResults?: number | undefined;
|
|
4556
4556
|
/**
|
|
4557
4557
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
4558
4558
|
* @public
|
|
4559
4559
|
*/
|
|
4560
|
-
NextToken?: string;
|
|
4560
|
+
NextToken?: string | undefined;
|
|
4561
4561
|
}
|
|
4562
4562
|
/**
|
|
4563
4563
|
* @public
|
|
@@ -4581,12 +4581,12 @@ export interface LastReportGenerationExecutionError {
|
|
|
4581
4581
|
* <p>The error code for the error that is returned when a usage report can't be generated.</p>
|
|
4582
4582
|
* @public
|
|
4583
4583
|
*/
|
|
4584
|
-
ErrorCode?: UsageReportExecutionErrorCode;
|
|
4584
|
+
ErrorCode?: UsageReportExecutionErrorCode | undefined;
|
|
4585
4585
|
/**
|
|
4586
4586
|
* <p>The error message for the error that is returned when a usage report can't be generated.</p>
|
|
4587
4587
|
* @public
|
|
4588
4588
|
*/
|
|
4589
|
-
ErrorMessage?: string;
|
|
4589
|
+
ErrorMessage?: string | undefined;
|
|
4590
4590
|
}
|
|
4591
4591
|
/**
|
|
4592
4592
|
* <p>Describes information about the usage report subscription.</p>
|
|
@@ -4602,22 +4602,22 @@ export interface UsageReportSubscription {
|
|
|
4602
4602
|
* when you enable usage reports, AppStream 2.0 creates a new S3 bucket.</p>
|
|
4603
4603
|
* @public
|
|
4604
4604
|
*/
|
|
4605
|
-
S3BucketName?: string;
|
|
4605
|
+
S3BucketName?: string | undefined;
|
|
4606
4606
|
/**
|
|
4607
4607
|
* <p>The schedule for generating usage reports.</p>
|
|
4608
4608
|
* @public
|
|
4609
4609
|
*/
|
|
4610
|
-
Schedule?: UsageReportSchedule;
|
|
4610
|
+
Schedule?: UsageReportSchedule | undefined;
|
|
4611
4611
|
/**
|
|
4612
4612
|
* <p>The time when the last usage report was generated.</p>
|
|
4613
4613
|
* @public
|
|
4614
4614
|
*/
|
|
4615
|
-
LastGeneratedReportDate?: Date;
|
|
4615
|
+
LastGeneratedReportDate?: Date | undefined;
|
|
4616
4616
|
/**
|
|
4617
4617
|
* <p>The errors that were returned if usage reports couldn't be generated.</p>
|
|
4618
4618
|
* @public
|
|
4619
4619
|
*/
|
|
4620
|
-
SubscriptionErrors?: LastReportGenerationExecutionError[];
|
|
4620
|
+
SubscriptionErrors?: LastReportGenerationExecutionError[] | undefined;
|
|
4621
4621
|
}
|
|
4622
4622
|
/**
|
|
4623
4623
|
* @public
|
|
@@ -4627,12 +4627,12 @@ export interface DescribeUsageReportSubscriptionsResult {
|
|
|
4627
4627
|
* <p>Information about the usage report subscription.</p>
|
|
4628
4628
|
* @public
|
|
4629
4629
|
*/
|
|
4630
|
-
UsageReportSubscriptions?: UsageReportSubscription[];
|
|
4630
|
+
UsageReportSubscriptions?: UsageReportSubscription[] | undefined;
|
|
4631
4631
|
/**
|
|
4632
4632
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
4633
4633
|
* @public
|
|
4634
4634
|
*/
|
|
4635
|
-
NextToken?: string;
|
|
4635
|
+
NextToken?: string | undefined;
|
|
4636
4636
|
}
|
|
4637
4637
|
/**
|
|
4638
4638
|
* @public
|
|
@@ -4647,12 +4647,12 @@ export interface DescribeUsersRequest {
|
|
|
4647
4647
|
* <p>The maximum size of each page of results.</p>
|
|
4648
4648
|
* @public
|
|
4649
4649
|
*/
|
|
4650
|
-
MaxResults?: number;
|
|
4650
|
+
MaxResults?: number | undefined;
|
|
4651
4651
|
/**
|
|
4652
4652
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
4653
4653
|
* @public
|
|
4654
4654
|
*/
|
|
4655
|
-
NextToken?: string;
|
|
4655
|
+
NextToken?: string | undefined;
|
|
4656
4656
|
}
|
|
4657
4657
|
/**
|
|
4658
4658
|
* <p>Describes a user in the user pool.</p>
|
|
@@ -4663,7 +4663,7 @@ export interface User {
|
|
|
4663
4663
|
* <p>The ARN of the user.</p>
|
|
4664
4664
|
* @public
|
|
4665
4665
|
*/
|
|
4666
|
-
Arn?: string;
|
|
4666
|
+
Arn?: string | undefined;
|
|
4667
4667
|
/**
|
|
4668
4668
|
* <p>The email address of the user.</p>
|
|
4669
4669
|
* <note>
|
|
@@ -4671,12 +4671,12 @@ export interface User {
|
|
|
4671
4671
|
* </note>
|
|
4672
4672
|
* @public
|
|
4673
4673
|
*/
|
|
4674
|
-
UserName?: string;
|
|
4674
|
+
UserName?: string | undefined;
|
|
4675
4675
|
/**
|
|
4676
4676
|
* <p>Specifies whether the user in the user pool is enabled.</p>
|
|
4677
4677
|
* @public
|
|
4678
4678
|
*/
|
|
4679
|
-
Enabled?: boolean;
|
|
4679
|
+
Enabled?: boolean | undefined;
|
|
4680
4680
|
/**
|
|
4681
4681
|
* <p>The status of the user in the user pool. The status can be one of the following:</p>
|
|
4682
4682
|
* <ul>
|
|
@@ -4698,22 +4698,22 @@ export interface User {
|
|
|
4698
4698
|
* </ul>
|
|
4699
4699
|
* @public
|
|
4700
4700
|
*/
|
|
4701
|
-
Status?: string;
|
|
4701
|
+
Status?: string | undefined;
|
|
4702
4702
|
/**
|
|
4703
4703
|
* <p>The first name, or given name, of the user.</p>
|
|
4704
4704
|
* @public
|
|
4705
4705
|
*/
|
|
4706
|
-
FirstName?: string;
|
|
4706
|
+
FirstName?: string | undefined;
|
|
4707
4707
|
/**
|
|
4708
4708
|
* <p>The last name, or surname, of the user.</p>
|
|
4709
4709
|
* @public
|
|
4710
4710
|
*/
|
|
4711
|
-
LastName?: string;
|
|
4711
|
+
LastName?: string | undefined;
|
|
4712
4712
|
/**
|
|
4713
4713
|
* <p>The date and time the user was created in the user pool.</p>
|
|
4714
4714
|
* @public
|
|
4715
4715
|
*/
|
|
4716
|
-
CreatedTime?: Date;
|
|
4716
|
+
CreatedTime?: Date | undefined;
|
|
4717
4717
|
/**
|
|
4718
4718
|
* <p>The authentication type for the user.</p>
|
|
4719
4719
|
* @public
|
|
@@ -4728,12 +4728,12 @@ export interface DescribeUsersResult {
|
|
|
4728
4728
|
* <p>Information about users in the user pool.</p>
|
|
4729
4729
|
* @public
|
|
4730
4730
|
*/
|
|
4731
|
-
Users?: User[];
|
|
4731
|
+
Users?: User[] | undefined;
|
|
4732
4732
|
/**
|
|
4733
4733
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
4734
4734
|
* @public
|
|
4735
4735
|
*/
|
|
4736
|
-
NextToken?: string;
|
|
4736
|
+
NextToken?: string | undefined;
|
|
4737
4737
|
}
|
|
4738
4738
|
/**
|
|
4739
4739
|
* @public
|
|
@@ -4743,7 +4743,7 @@ export interface DescribeUserStackAssociationsRequest {
|
|
|
4743
4743
|
* <p>The name of the stack that is associated with the user.</p>
|
|
4744
4744
|
* @public
|
|
4745
4745
|
*/
|
|
4746
|
-
StackName?: string;
|
|
4746
|
+
StackName?: string | undefined;
|
|
4747
4747
|
/**
|
|
4748
4748
|
* <p>The email address of the user who is associated with the stack.</p>
|
|
4749
4749
|
* <note>
|
|
@@ -4751,22 +4751,22 @@ export interface DescribeUserStackAssociationsRequest {
|
|
|
4751
4751
|
* </note>
|
|
4752
4752
|
* @public
|
|
4753
4753
|
*/
|
|
4754
|
-
UserName?: string;
|
|
4754
|
+
UserName?: string | undefined;
|
|
4755
4755
|
/**
|
|
4756
4756
|
* <p>The authentication type for the user who is associated with the stack. You must specify USERPOOL.</p>
|
|
4757
4757
|
* @public
|
|
4758
4758
|
*/
|
|
4759
|
-
AuthenticationType?: AuthenticationType;
|
|
4759
|
+
AuthenticationType?: AuthenticationType | undefined;
|
|
4760
4760
|
/**
|
|
4761
4761
|
* <p>The maximum size of each page of results.</p>
|
|
4762
4762
|
* @public
|
|
4763
4763
|
*/
|
|
4764
|
-
MaxResults?: number;
|
|
4764
|
+
MaxResults?: number | undefined;
|
|
4765
4765
|
/**
|
|
4766
4766
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
4767
4767
|
* @public
|
|
4768
4768
|
*/
|
|
4769
|
-
NextToken?: string;
|
|
4769
|
+
NextToken?: string | undefined;
|
|
4770
4770
|
}
|
|
4771
4771
|
/**
|
|
4772
4772
|
* @public
|
|
@@ -4776,12 +4776,12 @@ export interface DescribeUserStackAssociationsResult {
|
|
|
4776
4776
|
* <p>The UserStackAssociation objects.</p>
|
|
4777
4777
|
* @public
|
|
4778
4778
|
*/
|
|
4779
|
-
UserStackAssociations?: UserStackAssociation[];
|
|
4779
|
+
UserStackAssociations?: UserStackAssociation[] | undefined;
|
|
4780
4780
|
/**
|
|
4781
4781
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
4782
4782
|
* @public
|
|
4783
4783
|
*/
|
|
4784
|
-
NextToken?: string;
|
|
4784
|
+
NextToken?: string | undefined;
|
|
4785
4785
|
}
|
|
4786
4786
|
/**
|
|
4787
4787
|
* @public
|
|
@@ -4970,7 +4970,7 @@ export interface ListAssociatedFleetsRequest {
|
|
|
4970
4970
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
4971
4971
|
* @public
|
|
4972
4972
|
*/
|
|
4973
|
-
NextToken?: string;
|
|
4973
|
+
NextToken?: string | undefined;
|
|
4974
4974
|
}
|
|
4975
4975
|
/**
|
|
4976
4976
|
* @public
|
|
@@ -4980,12 +4980,12 @@ export interface ListAssociatedFleetsResult {
|
|
|
4980
4980
|
* <p>The name of the fleet.</p>
|
|
4981
4981
|
* @public
|
|
4982
4982
|
*/
|
|
4983
|
-
Names?: string[];
|
|
4983
|
+
Names?: string[] | undefined;
|
|
4984
4984
|
/**
|
|
4985
4985
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
4986
4986
|
* @public
|
|
4987
4987
|
*/
|
|
4988
|
-
NextToken?: string;
|
|
4988
|
+
NextToken?: string | undefined;
|
|
4989
4989
|
}
|
|
4990
4990
|
/**
|
|
4991
4991
|
* @public
|
|
@@ -5000,7 +5000,7 @@ export interface ListAssociatedStacksRequest {
|
|
|
5000
5000
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.</p>
|
|
5001
5001
|
* @public
|
|
5002
5002
|
*/
|
|
5003
|
-
NextToken?: string;
|
|
5003
|
+
NextToken?: string | undefined;
|
|
5004
5004
|
}
|
|
5005
5005
|
/**
|
|
5006
5006
|
* @public
|
|
@@ -5010,12 +5010,12 @@ export interface ListAssociatedStacksResult {
|
|
|
5010
5010
|
* <p>The name of the stack.</p>
|
|
5011
5011
|
* @public
|
|
5012
5012
|
*/
|
|
5013
|
-
Names?: string[];
|
|
5013
|
+
Names?: string[] | undefined;
|
|
5014
5014
|
/**
|
|
5015
5015
|
* <p>The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.</p>
|
|
5016
5016
|
* @public
|
|
5017
5017
|
*/
|
|
5018
|
-
NextToken?: string;
|
|
5018
|
+
NextToken?: string | undefined;
|
|
5019
5019
|
}
|
|
5020
5020
|
/**
|
|
5021
5021
|
* @public
|
|
@@ -5035,12 +5035,12 @@ export interface ListEntitledApplicationsRequest {
|
|
|
5035
5035
|
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
5036
5036
|
* @public
|
|
5037
5037
|
*/
|
|
5038
|
-
NextToken?: string;
|
|
5038
|
+
NextToken?: string | undefined;
|
|
5039
5039
|
/**
|
|
5040
5040
|
* <p>The maximum size of each page of results.</p>
|
|
5041
5041
|
* @public
|
|
5042
5042
|
*/
|
|
5043
|
-
MaxResults?: number;
|
|
5043
|
+
MaxResults?: number | undefined;
|
|
5044
5044
|
}
|
|
5045
5045
|
/**
|
|
5046
5046
|
* @public
|
|
@@ -5050,12 +5050,12 @@ export interface ListEntitledApplicationsResult {
|
|
|
5050
5050
|
* <p>The entitled applications.</p>
|
|
5051
5051
|
* @public
|
|
5052
5052
|
*/
|
|
5053
|
-
EntitledApplications?: EntitledApplication[];
|
|
5053
|
+
EntitledApplications?: EntitledApplication[] | undefined;
|
|
5054
5054
|
/**
|
|
5055
5055
|
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
5056
5056
|
* @public
|
|
5057
5057
|
*/
|
|
5058
|
-
NextToken?: string;
|
|
5058
|
+
NextToken?: string | undefined;
|
|
5059
5059
|
}
|
|
5060
5060
|
/**
|
|
5061
5061
|
* @public
|
|
@@ -5075,7 +5075,7 @@ export interface ListTagsForResourceResponse {
|
|
|
5075
5075
|
* <p>The information about the tags.</p>
|
|
5076
5076
|
* @public
|
|
5077
5077
|
*/
|
|
5078
|
-
Tags?: Record<string, string
|
|
5078
|
+
Tags?: Record<string, string> | undefined;
|
|
5079
5079
|
}
|
|
5080
5080
|
/**
|
|
5081
5081
|
* @public
|
|
@@ -5095,7 +5095,7 @@ export interface StartAppBlockBuilderResult {
|
|
|
5095
5095
|
* <p>Describes an app block builder.</p>
|
|
5096
5096
|
* @public
|
|
5097
5097
|
*/
|
|
5098
|
-
AppBlockBuilder?: AppBlockBuilder;
|
|
5098
|
+
AppBlockBuilder?: AppBlockBuilder | undefined;
|
|
5099
5099
|
}
|
|
5100
5100
|
/**
|
|
5101
5101
|
* @public
|
|
@@ -5125,7 +5125,7 @@ export interface StartImageBuilderRequest {
|
|
|
5125
5125
|
* <p>The version of the AppStream 2.0 agent to use for this image builder. To use the latest version of the AppStream 2.0 agent, specify [LATEST]. </p>
|
|
5126
5126
|
* @public
|
|
5127
5127
|
*/
|
|
5128
|
-
AppstreamAgentVersion?: string;
|
|
5128
|
+
AppstreamAgentVersion?: string | undefined;
|
|
5129
5129
|
}
|
|
5130
5130
|
/**
|
|
5131
5131
|
* @public
|
|
@@ -5135,7 +5135,7 @@ export interface StartImageBuilderResult {
|
|
|
5135
5135
|
* <p>Information about the image builder.</p>
|
|
5136
5136
|
* @public
|
|
5137
5137
|
*/
|
|
5138
|
-
ImageBuilder?: ImageBuilder;
|
|
5138
|
+
ImageBuilder?: ImageBuilder | undefined;
|
|
5139
5139
|
}
|
|
5140
5140
|
/**
|
|
5141
5141
|
* @public
|
|
@@ -5155,7 +5155,7 @@ export interface StopAppBlockBuilderResult {
|
|
|
5155
5155
|
* <p>Describes an app block builder.</p>
|
|
5156
5156
|
* @public
|
|
5157
5157
|
*/
|
|
5158
|
-
AppBlockBuilder?: AppBlockBuilder;
|
|
5158
|
+
AppBlockBuilder?: AppBlockBuilder | undefined;
|
|
5159
5159
|
}
|
|
5160
5160
|
/**
|
|
5161
5161
|
* @public
|
|
@@ -5190,7 +5190,7 @@ export interface StopImageBuilderResult {
|
|
|
5190
5190
|
* <p>Information about the image builder.</p>
|
|
5191
5191
|
* @public
|
|
5192
5192
|
*/
|
|
5193
|
-
ImageBuilder?: ImageBuilder;
|
|
5193
|
+
ImageBuilder?: ImageBuilder | undefined;
|
|
5194
5194
|
}
|
|
5195
5195
|
/**
|
|
5196
5196
|
* @public
|
|
@@ -5248,19 +5248,19 @@ export interface UpdateAppBlockBuilderRequest {
|
|
|
5248
5248
|
* <p>The description of the app block builder.</p>
|
|
5249
5249
|
* @public
|
|
5250
5250
|
*/
|
|
5251
|
-
Description?: string;
|
|
5251
|
+
Description?: string | undefined;
|
|
5252
5252
|
/**
|
|
5253
5253
|
* <p>The display name of the app block builder.</p>
|
|
5254
5254
|
* @public
|
|
5255
5255
|
*/
|
|
5256
|
-
DisplayName?: string;
|
|
5256
|
+
DisplayName?: string | undefined;
|
|
5257
5257
|
/**
|
|
5258
5258
|
* <p>The platform of the app block builder.</p>
|
|
5259
5259
|
* <p>
|
|
5260
5260
|
* <code>WINDOWS_SERVER_2019</code> is the only valid value.</p>
|
|
5261
5261
|
* @public
|
|
5262
5262
|
*/
|
|
5263
|
-
Platform?: PlatformType;
|
|
5263
|
+
Platform?: PlatformType | undefined;
|
|
5264
5264
|
/**
|
|
5265
5265
|
* <p>The instance type to use when launching the app block builder. The following instance
|
|
5266
5266
|
* types are available:</p>
|
|
@@ -5283,19 +5283,19 @@ export interface UpdateAppBlockBuilderRequest {
|
|
|
5283
5283
|
* </ul>
|
|
5284
5284
|
* @public
|
|
5285
5285
|
*/
|
|
5286
|
-
InstanceType?: string;
|
|
5286
|
+
InstanceType?: string | undefined;
|
|
5287
5287
|
/**
|
|
5288
5288
|
* <p>The VPC configuration for the app block builder.</p>
|
|
5289
5289
|
* <p>App block builders require that you specify at least two subnets in different availability
|
|
5290
5290
|
* zones.</p>
|
|
5291
5291
|
* @public
|
|
5292
5292
|
*/
|
|
5293
|
-
VpcConfig?: VpcConfig;
|
|
5293
|
+
VpcConfig?: VpcConfig | undefined;
|
|
5294
5294
|
/**
|
|
5295
5295
|
* <p>Enables or disables default internet access for the app block builder.</p>
|
|
5296
5296
|
* @public
|
|
5297
5297
|
*/
|
|
5298
|
-
EnableDefaultInternetAccess?: boolean;
|
|
5298
|
+
EnableDefaultInternetAccess?: boolean | undefined;
|
|
5299
5299
|
/**
|
|
5300
5300
|
* <p>The Amazon Resource Name (ARN) of the IAM role to apply to the app block builder. To
|
|
5301
5301
|
* assume a role, the app block builder calls the AWS Security Token Service (STS)
|
|
@@ -5305,17 +5305,17 @@ export interface UpdateAppBlockBuilderRequest {
|
|
|
5305
5305
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on AppStream 2.0 Streaming Instances</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
|
|
5306
5306
|
* @public
|
|
5307
5307
|
*/
|
|
5308
|
-
IamRoleArn?: string;
|
|
5308
|
+
IamRoleArn?: string | undefined;
|
|
5309
5309
|
/**
|
|
5310
5310
|
* <p>The list of interface VPC endpoint (interface endpoint) objects. Administrators can connect to the app block builder only through the specified endpoints.</p>
|
|
5311
5311
|
* @public
|
|
5312
5312
|
*/
|
|
5313
|
-
AccessEndpoints?: AccessEndpoint[];
|
|
5313
|
+
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
5314
5314
|
/**
|
|
5315
5315
|
* <p>The attributes to delete from the app block builder.</p>
|
|
5316
5316
|
* @public
|
|
5317
5317
|
*/
|
|
5318
|
-
AttributesToDelete?: AppBlockBuilderAttribute[];
|
|
5318
|
+
AttributesToDelete?: AppBlockBuilderAttribute[] | undefined;
|
|
5319
5319
|
}
|
|
5320
5320
|
/**
|
|
5321
5321
|
* @public
|
|
@@ -5325,7 +5325,7 @@ export interface UpdateAppBlockBuilderResult {
|
|
|
5325
5325
|
* <p>Describes an app block builder.</p>
|
|
5326
5326
|
* @public
|
|
5327
5327
|
*/
|
|
5328
|
-
AppBlockBuilder?: AppBlockBuilder;
|
|
5328
|
+
AppBlockBuilder?: AppBlockBuilder | undefined;
|
|
5329
5329
|
}
|
|
5330
5330
|
/**
|
|
5331
5331
|
* @public
|
|
@@ -5340,42 +5340,42 @@ export interface UpdateApplicationRequest {
|
|
|
5340
5340
|
* <p>The display name of the application. This name is visible to users in the application catalog.</p>
|
|
5341
5341
|
* @public
|
|
5342
5342
|
*/
|
|
5343
|
-
DisplayName?: string;
|
|
5343
|
+
DisplayName?: string | undefined;
|
|
5344
5344
|
/**
|
|
5345
5345
|
* <p>The description of the application.</p>
|
|
5346
5346
|
* @public
|
|
5347
5347
|
*/
|
|
5348
|
-
Description?: string;
|
|
5348
|
+
Description?: string | undefined;
|
|
5349
5349
|
/**
|
|
5350
5350
|
* <p>The icon S3 location of the application.</p>
|
|
5351
5351
|
* @public
|
|
5352
5352
|
*/
|
|
5353
|
-
IconS3Location?: S3Location;
|
|
5353
|
+
IconS3Location?: S3Location | undefined;
|
|
5354
5354
|
/**
|
|
5355
5355
|
* <p>The launch path of the application.</p>
|
|
5356
5356
|
* @public
|
|
5357
5357
|
*/
|
|
5358
|
-
LaunchPath?: string;
|
|
5358
|
+
LaunchPath?: string | undefined;
|
|
5359
5359
|
/**
|
|
5360
5360
|
* <p>The working directory of the application.</p>
|
|
5361
5361
|
* @public
|
|
5362
5362
|
*/
|
|
5363
|
-
WorkingDirectory?: string;
|
|
5363
|
+
WorkingDirectory?: string | undefined;
|
|
5364
5364
|
/**
|
|
5365
5365
|
* <p>The launch parameters of the application.</p>
|
|
5366
5366
|
* @public
|
|
5367
5367
|
*/
|
|
5368
|
-
LaunchParameters?: string;
|
|
5368
|
+
LaunchParameters?: string | undefined;
|
|
5369
5369
|
/**
|
|
5370
5370
|
* <p>The ARN of the app block.</p>
|
|
5371
5371
|
* @public
|
|
5372
5372
|
*/
|
|
5373
|
-
AppBlockArn?: string;
|
|
5373
|
+
AppBlockArn?: string | undefined;
|
|
5374
5374
|
/**
|
|
5375
5375
|
* <p>The attributes to delete for an application.</p>
|
|
5376
5376
|
* @public
|
|
5377
5377
|
*/
|
|
5378
|
-
AttributesToDelete?: ApplicationAttribute[];
|
|
5378
|
+
AttributesToDelete?: ApplicationAttribute[] | undefined;
|
|
5379
5379
|
}
|
|
5380
5380
|
/**
|
|
5381
5381
|
* @public
|
|
@@ -5385,7 +5385,7 @@ export interface UpdateApplicationResult {
|
|
|
5385
5385
|
* <p>Describes an application in the application catalog.</p>
|
|
5386
5386
|
* @public
|
|
5387
5387
|
*/
|
|
5388
|
-
Application?: Application;
|
|
5388
|
+
Application?: Application | undefined;
|
|
5389
5389
|
}
|
|
5390
5390
|
/**
|
|
5391
5391
|
* @public
|
|
@@ -5400,12 +5400,12 @@ export interface UpdateDirectoryConfigRequest {
|
|
|
5400
5400
|
* <p>The distinguished names of the organizational units for computer accounts.</p>
|
|
5401
5401
|
* @public
|
|
5402
5402
|
*/
|
|
5403
|
-
OrganizationalUnitDistinguishedNames?: string[];
|
|
5403
|
+
OrganizationalUnitDistinguishedNames?: string[] | undefined;
|
|
5404
5404
|
/**
|
|
5405
5405
|
* <p>The credentials for the service account used by the fleet or image builder to connect to the directory.</p>
|
|
5406
5406
|
* @public
|
|
5407
5407
|
*/
|
|
5408
|
-
ServiceAccountCredentials?: ServiceAccountCredentials;
|
|
5408
|
+
ServiceAccountCredentials?: ServiceAccountCredentials | undefined;
|
|
5409
5409
|
/**
|
|
5410
5410
|
* <p>The certificate-based authentication properties used to authenticate SAML 2.0 Identity
|
|
5411
5411
|
* Provider (IdP) user identities to Active Directory domain-joined streaming instances.
|
|
@@ -5416,7 +5416,7 @@ export interface UpdateDirectoryConfigRequest {
|
|
|
5416
5416
|
* will be disconnected to re-authenticate using certificates.</p>
|
|
5417
5417
|
* @public
|
|
5418
5418
|
*/
|
|
5419
|
-
CertificateBasedAuthProperties?: CertificateBasedAuthProperties;
|
|
5419
|
+
CertificateBasedAuthProperties?: CertificateBasedAuthProperties | undefined;
|
|
5420
5420
|
}
|
|
5421
5421
|
/**
|
|
5422
5422
|
* @public
|
|
@@ -5426,7 +5426,7 @@ export interface UpdateDirectoryConfigResult {
|
|
|
5426
5426
|
* <p>Information about the Directory Config object.</p>
|
|
5427
5427
|
* @public
|
|
5428
5428
|
*/
|
|
5429
|
-
DirectoryConfig?: DirectoryConfig;
|
|
5429
|
+
DirectoryConfig?: DirectoryConfig | undefined;
|
|
5430
5430
|
}
|
|
5431
5431
|
/**
|
|
5432
5432
|
* @public
|
|
@@ -5446,17 +5446,17 @@ export interface UpdateEntitlementRequest {
|
|
|
5446
5446
|
* <p>The description of the entitlement.</p>
|
|
5447
5447
|
* @public
|
|
5448
5448
|
*/
|
|
5449
|
-
Description?: string;
|
|
5449
|
+
Description?: string | undefined;
|
|
5450
5450
|
/**
|
|
5451
5451
|
* <p>Specifies whether all or only selected apps are entitled.</p>
|
|
5452
5452
|
* @public
|
|
5453
5453
|
*/
|
|
5454
|
-
AppVisibility?: AppVisibility;
|
|
5454
|
+
AppVisibility?: AppVisibility | undefined;
|
|
5455
5455
|
/**
|
|
5456
5456
|
* <p>The attributes of the entitlement.</p>
|
|
5457
5457
|
* @public
|
|
5458
5458
|
*/
|
|
5459
|
-
Attributes?: EntitlementAttribute[];
|
|
5459
|
+
Attributes?: EntitlementAttribute[] | undefined;
|
|
5460
5460
|
}
|
|
5461
5461
|
/**
|
|
5462
5462
|
* @public
|
|
@@ -5466,7 +5466,7 @@ export interface UpdateEntitlementResult {
|
|
|
5466
5466
|
* <p>The entitlement.</p>
|
|
5467
5467
|
* @public
|
|
5468
5468
|
*/
|
|
5469
|
-
Entitlement?: Entitlement;
|
|
5469
|
+
Entitlement?: Entitlement | undefined;
|
|
5470
5470
|
}
|
|
5471
5471
|
/**
|
|
5472
5472
|
* @public
|
|
@@ -5476,17 +5476,17 @@ export interface UpdateFleetRequest {
|
|
|
5476
5476
|
* <p>The name of the image used to create the fleet.</p>
|
|
5477
5477
|
* @public
|
|
5478
5478
|
*/
|
|
5479
|
-
ImageName?: string;
|
|
5479
|
+
ImageName?: string | undefined;
|
|
5480
5480
|
/**
|
|
5481
5481
|
* <p>The ARN of the public, private, or shared image to use.</p>
|
|
5482
5482
|
* @public
|
|
5483
5483
|
*/
|
|
5484
|
-
ImageArn?: string;
|
|
5484
|
+
ImageArn?: string | undefined;
|
|
5485
5485
|
/**
|
|
5486
5486
|
* <p>A unique name for the fleet.</p>
|
|
5487
5487
|
* @public
|
|
5488
5488
|
*/
|
|
5489
|
-
Name?: string;
|
|
5489
|
+
Name?: string | undefined;
|
|
5490
5490
|
/**
|
|
5491
5491
|
* <p>The instance type to use when launching fleet instances. The following instance types are available:</p>
|
|
5492
5492
|
* <ul>
|
|
@@ -5616,56 +5616,56 @@ export interface UpdateFleetRequest {
|
|
|
5616
5616
|
* </ul>
|
|
5617
5617
|
* @public
|
|
5618
5618
|
*/
|
|
5619
|
-
InstanceType?: string;
|
|
5619
|
+
InstanceType?: string | undefined;
|
|
5620
5620
|
/**
|
|
5621
5621
|
* <p>The desired capacity for the fleet. This is not allowed for Elastic fleets.</p>
|
|
5622
5622
|
* @public
|
|
5623
5623
|
*/
|
|
5624
|
-
ComputeCapacity?: ComputeCapacity;
|
|
5624
|
+
ComputeCapacity?: ComputeCapacity | undefined;
|
|
5625
5625
|
/**
|
|
5626
5626
|
* <p>The VPC configuration for the fleet. This is required for Elastic fleets, but not required for other fleet types. Elastic fleets require that you specify at least two subnets in different availability zones. </p>
|
|
5627
5627
|
* @public
|
|
5628
5628
|
*/
|
|
5629
|
-
VpcConfig?: VpcConfig;
|
|
5629
|
+
VpcConfig?: VpcConfig | undefined;
|
|
5630
5630
|
/**
|
|
5631
5631
|
* <p>The maximum amount of time that a streaming session can remain active, in seconds. If users are still connected to a streaming instance five minutes before this limit is reached, they are prompted to save any open documents before being disconnected. After this time elapses, the instance is terminated and replaced by a new instance.</p>
|
|
5632
5632
|
* <p>Specify a value between 600 and 432000.</p>
|
|
5633
5633
|
* @public
|
|
5634
5634
|
*/
|
|
5635
|
-
MaxUserDurationInSeconds?: number;
|
|
5635
|
+
MaxUserDurationInSeconds?: number | undefined;
|
|
5636
5636
|
/**
|
|
5637
5637
|
* <p>The amount of time that a streaming session remains active after users disconnect. If users try to reconnect to the streaming session after a disconnection or network interruption within this time interval, they are connected to their previous session. Otherwise, they are connected to a new session with a new streaming instance. </p>
|
|
5638
5638
|
* <p>Specify a value between 60 and 36000.</p>
|
|
5639
5639
|
* @public
|
|
5640
5640
|
*/
|
|
5641
|
-
DisconnectTimeoutInSeconds?: number;
|
|
5641
|
+
DisconnectTimeoutInSeconds?: number | undefined;
|
|
5642
5642
|
/**
|
|
5643
5643
|
* @deprecated
|
|
5644
5644
|
*
|
|
5645
5645
|
* <p>Deletes the VPC association for the specified fleet.</p>
|
|
5646
5646
|
* @public
|
|
5647
5647
|
*/
|
|
5648
|
-
DeleteVpcConfig?: boolean;
|
|
5648
|
+
DeleteVpcConfig?: boolean | undefined;
|
|
5649
5649
|
/**
|
|
5650
5650
|
* <p>The description to display.</p>
|
|
5651
5651
|
* @public
|
|
5652
5652
|
*/
|
|
5653
|
-
Description?: string;
|
|
5653
|
+
Description?: string | undefined;
|
|
5654
5654
|
/**
|
|
5655
5655
|
* <p>The fleet name to display.</p>
|
|
5656
5656
|
* @public
|
|
5657
5657
|
*/
|
|
5658
|
-
DisplayName?: string;
|
|
5658
|
+
DisplayName?: string | undefined;
|
|
5659
5659
|
/**
|
|
5660
5660
|
* <p>Enables or disables default internet access for the fleet.</p>
|
|
5661
5661
|
* @public
|
|
5662
5662
|
*/
|
|
5663
|
-
EnableDefaultInternetAccess?: boolean;
|
|
5663
|
+
EnableDefaultInternetAccess?: boolean | undefined;
|
|
5664
5664
|
/**
|
|
5665
5665
|
* <p>The name of the directory and organizational unit (OU) to use to join the fleet to a Microsoft Active Directory domain. </p>
|
|
5666
5666
|
* @public
|
|
5667
5667
|
*/
|
|
5668
|
-
DomainJoinInfo?: DomainJoinInfo;
|
|
5668
|
+
DomainJoinInfo?: DomainJoinInfo | undefined;
|
|
5669
5669
|
/**
|
|
5670
5670
|
* <p>The amount of time that users can be idle (inactive) before they are disconnected
|
|
5671
5671
|
* from their streaming session and the <code>DisconnectTimeoutInSeconds</code> time
|
|
@@ -5683,49 +5683,49 @@ export interface UpdateFleetRequest {
|
|
|
5683
5683
|
* </note>
|
|
5684
5684
|
* @public
|
|
5685
5685
|
*/
|
|
5686
|
-
IdleDisconnectTimeoutInSeconds?: number;
|
|
5686
|
+
IdleDisconnectTimeoutInSeconds?: number | undefined;
|
|
5687
5687
|
/**
|
|
5688
5688
|
* <p>The fleet attributes to delete.</p>
|
|
5689
5689
|
* @public
|
|
5690
5690
|
*/
|
|
5691
|
-
AttributesToDelete?: FleetAttribute[];
|
|
5691
|
+
AttributesToDelete?: FleetAttribute[] | undefined;
|
|
5692
5692
|
/**
|
|
5693
5693
|
* <p>The Amazon Resource Name (ARN) of the IAM role to apply to the fleet. To assume a role, a fleet instance calls the AWS Security Token Service (STS) <code>AssumeRole</code> API operation and passes the ARN of the role to use. The operation creates a new session with temporary credentials. AppStream 2.0 retrieves the temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
|
|
5694
5694
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on AppStream 2.0 Streaming Instances</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
|
|
5695
5695
|
* @public
|
|
5696
5696
|
*/
|
|
5697
|
-
IamRoleArn?: string;
|
|
5697
|
+
IamRoleArn?: string | undefined;
|
|
5698
5698
|
/**
|
|
5699
5699
|
* <p>The AppStream 2.0 view that is displayed to your users when they stream from the fleet. When <code>APP</code> is specified, only the windows of applications opened by users display. When <code>DESKTOP</code> is specified, the standard desktop that is provided by the operating system displays.</p>
|
|
5700
5700
|
* <p>The default value is <code>APP</code>.</p>
|
|
5701
5701
|
* @public
|
|
5702
5702
|
*/
|
|
5703
|
-
StreamView?: StreamView;
|
|
5703
|
+
StreamView?: StreamView | undefined;
|
|
5704
5704
|
/**
|
|
5705
5705
|
* <p>The platform of the fleet. WINDOWS_SERVER_2019 and AMAZON_LINUX2 are supported for Elastic fleets. </p>
|
|
5706
5706
|
* @public
|
|
5707
5707
|
*/
|
|
5708
|
-
Platform?: PlatformType;
|
|
5708
|
+
Platform?: PlatformType | undefined;
|
|
5709
5709
|
/**
|
|
5710
5710
|
* <p>The maximum number of concurrent sessions for a fleet.</p>
|
|
5711
5711
|
* @public
|
|
5712
5712
|
*/
|
|
5713
|
-
MaxConcurrentSessions?: number;
|
|
5713
|
+
MaxConcurrentSessions?: number | undefined;
|
|
5714
5714
|
/**
|
|
5715
5715
|
* <p>The USB device filter strings that specify which USB devices a user can redirect to the fleet streaming session, when using the Windows native client. This is allowed but not required for Elastic fleets.</p>
|
|
5716
5716
|
* @public
|
|
5717
5717
|
*/
|
|
5718
|
-
UsbDeviceFilterStrings?: string[];
|
|
5718
|
+
UsbDeviceFilterStrings?: string[] | undefined;
|
|
5719
5719
|
/**
|
|
5720
5720
|
* <p>The S3 location of the session scripts configuration zip file. This only applies to Elastic fleets. </p>
|
|
5721
5721
|
* @public
|
|
5722
5722
|
*/
|
|
5723
|
-
SessionScriptS3Location?: S3Location;
|
|
5723
|
+
SessionScriptS3Location?: S3Location | undefined;
|
|
5724
5724
|
/**
|
|
5725
5725
|
* <p>The maximum number of user sessions on an instance. This only applies to multi-session fleets.</p>
|
|
5726
5726
|
* @public
|
|
5727
5727
|
*/
|
|
5728
|
-
MaxSessionsPerInstance?: number;
|
|
5728
|
+
MaxSessionsPerInstance?: number | undefined;
|
|
5729
5729
|
}
|
|
5730
5730
|
/**
|
|
5731
5731
|
* @public
|
|
@@ -5735,7 +5735,7 @@ export interface UpdateFleetResult {
|
|
|
5735
5735
|
* <p>Information about the fleet.</p>
|
|
5736
5736
|
* @public
|
|
5737
5737
|
*/
|
|
5738
|
-
Fleet?: Fleet;
|
|
5738
|
+
Fleet?: Fleet | undefined;
|
|
5739
5739
|
}
|
|
5740
5740
|
/**
|
|
5741
5741
|
* @public
|
|
@@ -5792,12 +5792,12 @@ export interface UpdateStackRequest {
|
|
|
5792
5792
|
* <p>The stack name to display.</p>
|
|
5793
5793
|
* @public
|
|
5794
5794
|
*/
|
|
5795
|
-
DisplayName?: string;
|
|
5795
|
+
DisplayName?: string | undefined;
|
|
5796
5796
|
/**
|
|
5797
5797
|
* <p>The description to display.</p>
|
|
5798
5798
|
* @public
|
|
5799
5799
|
*/
|
|
5800
|
-
Description?: string;
|
|
5800
|
+
Description?: string | undefined;
|
|
5801
5801
|
/**
|
|
5802
5802
|
* <p>The name of the stack.</p>
|
|
5803
5803
|
* @public
|
|
@@ -5807,54 +5807,54 @@ export interface UpdateStackRequest {
|
|
|
5807
5807
|
* <p>The storage connectors to enable.</p>
|
|
5808
5808
|
* @public
|
|
5809
5809
|
*/
|
|
5810
|
-
StorageConnectors?: StorageConnector[];
|
|
5810
|
+
StorageConnectors?: StorageConnector[] | undefined;
|
|
5811
5811
|
/**
|
|
5812
5812
|
* @deprecated
|
|
5813
5813
|
*
|
|
5814
5814
|
* <p>Deletes the storage connectors currently enabled for the stack.</p>
|
|
5815
5815
|
* @public
|
|
5816
5816
|
*/
|
|
5817
|
-
DeleteStorageConnectors?: boolean;
|
|
5817
|
+
DeleteStorageConnectors?: boolean | undefined;
|
|
5818
5818
|
/**
|
|
5819
5819
|
* <p>The URL that users are redirected to after their streaming session ends.</p>
|
|
5820
5820
|
* @public
|
|
5821
5821
|
*/
|
|
5822
|
-
RedirectURL?: string;
|
|
5822
|
+
RedirectURL?: string | undefined;
|
|
5823
5823
|
/**
|
|
5824
5824
|
* <p>The URL that users are redirected to after they choose the Send Feedback link. If no URL is specified, no Send Feedback link is displayed.</p>
|
|
5825
5825
|
* @public
|
|
5826
5826
|
*/
|
|
5827
|
-
FeedbackURL?: string;
|
|
5827
|
+
FeedbackURL?: string | undefined;
|
|
5828
5828
|
/**
|
|
5829
5829
|
* <p>The stack attributes to delete.</p>
|
|
5830
5830
|
* @public
|
|
5831
5831
|
*/
|
|
5832
|
-
AttributesToDelete?: StackAttribute[];
|
|
5832
|
+
AttributesToDelete?: StackAttribute[] | undefined;
|
|
5833
5833
|
/**
|
|
5834
5834
|
* <p>The actions that are enabled or disabled for users during their streaming sessions. By default, these actions are enabled.</p>
|
|
5835
5835
|
* @public
|
|
5836
5836
|
*/
|
|
5837
|
-
UserSettings?: UserSetting[];
|
|
5837
|
+
UserSettings?: UserSetting[] | undefined;
|
|
5838
5838
|
/**
|
|
5839
5839
|
* <p>The persistent application settings for users of a stack. When these settings are enabled, changes that users make to applications and Windows settings are automatically saved after each session and applied to the next session.</p>
|
|
5840
5840
|
* @public
|
|
5841
5841
|
*/
|
|
5842
|
-
ApplicationSettings?: ApplicationSettings;
|
|
5842
|
+
ApplicationSettings?: ApplicationSettings | undefined;
|
|
5843
5843
|
/**
|
|
5844
5844
|
* <p>The list of interface VPC endpoint (interface endpoint) objects. Users of the stack can connect to AppStream 2.0 only through the specified endpoints.</p>
|
|
5845
5845
|
* @public
|
|
5846
5846
|
*/
|
|
5847
|
-
AccessEndpoints?: AccessEndpoint[];
|
|
5847
|
+
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
5848
5848
|
/**
|
|
5849
5849
|
* <p>The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions. </p>
|
|
5850
5850
|
* @public
|
|
5851
5851
|
*/
|
|
5852
|
-
EmbedHostDomains?: string[];
|
|
5852
|
+
EmbedHostDomains?: string[] | undefined;
|
|
5853
5853
|
/**
|
|
5854
5854
|
* <p>The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.</p>
|
|
5855
5855
|
* @public
|
|
5856
5856
|
*/
|
|
5857
|
-
StreamingExperienceSettings?: StreamingExperienceSettings;
|
|
5857
|
+
StreamingExperienceSettings?: StreamingExperienceSettings | undefined;
|
|
5858
5858
|
}
|
|
5859
5859
|
/**
|
|
5860
5860
|
* @public
|
|
@@ -5864,7 +5864,7 @@ export interface UpdateStackResult {
|
|
|
5864
5864
|
* <p>Information about the stack.</p>
|
|
5865
5865
|
* @public
|
|
5866
5866
|
*/
|
|
5867
|
-
Stack?: Stack;
|
|
5867
|
+
Stack?: Stack | undefined;
|
|
5868
5868
|
}
|
|
5869
5869
|
/**
|
|
5870
5870
|
* @public
|
|
@@ -5890,37 +5890,37 @@ export interface UpdateThemeForStackRequest {
|
|
|
5890
5890
|
* <p>The links that are displayed in the footer of the streaming application catalog page. These links are helpful resources for users, such as the organization's IT support and product marketing sites.</p>
|
|
5891
5891
|
* @public
|
|
5892
5892
|
*/
|
|
5893
|
-
FooterLinks?: ThemeFooterLink[];
|
|
5893
|
+
FooterLinks?: ThemeFooterLink[] | undefined;
|
|
5894
5894
|
/**
|
|
5895
5895
|
* <p>The title that is displayed at the top of the browser tab during users' application streaming sessions.</p>
|
|
5896
5896
|
* @public
|
|
5897
5897
|
*/
|
|
5898
|
-
TitleText?: string;
|
|
5898
|
+
TitleText?: string | undefined;
|
|
5899
5899
|
/**
|
|
5900
5900
|
* <p>The color theme that is applied to website links, text, and buttons. These colors are also applied as accents in the background for the streaming application catalog page.</p>
|
|
5901
5901
|
* @public
|
|
5902
5902
|
*/
|
|
5903
|
-
ThemeStyling?: ThemeStyling;
|
|
5903
|
+
ThemeStyling?: ThemeStyling | undefined;
|
|
5904
5904
|
/**
|
|
5905
5905
|
* <p>The organization logo that appears on the streaming application catalog page.</p>
|
|
5906
5906
|
* @public
|
|
5907
5907
|
*/
|
|
5908
|
-
OrganizationLogoS3Location?: S3Location;
|
|
5908
|
+
OrganizationLogoS3Location?: S3Location | undefined;
|
|
5909
5909
|
/**
|
|
5910
5910
|
* <p>The S3 location of the favicon. The favicon enables users to recognize their application streaming site in a browser full of tabs or bookmarks. It is displayed at the top of the browser tab for the application streaming site during users' streaming sessions.</p>
|
|
5911
5911
|
* @public
|
|
5912
5912
|
*/
|
|
5913
|
-
FaviconS3Location?: S3Location;
|
|
5913
|
+
FaviconS3Location?: S3Location | undefined;
|
|
5914
5914
|
/**
|
|
5915
5915
|
* <p>Specifies whether custom branding should be applied to catalog page or not.</p>
|
|
5916
5916
|
* @public
|
|
5917
5917
|
*/
|
|
5918
|
-
State?: ThemeState;
|
|
5918
|
+
State?: ThemeState | undefined;
|
|
5919
5919
|
/**
|
|
5920
5920
|
* <p>The attributes to delete.</p>
|
|
5921
5921
|
* @public
|
|
5922
5922
|
*/
|
|
5923
|
-
AttributesToDelete?: ThemeAttribute[];
|
|
5923
|
+
AttributesToDelete?: ThemeAttribute[] | undefined;
|
|
5924
5924
|
}
|
|
5925
5925
|
/**
|
|
5926
5926
|
* @public
|
|
@@ -5930,7 +5930,7 @@ export interface UpdateThemeForStackResult {
|
|
|
5930
5930
|
* <p> The theme object that contains the metadata of the custom branding.</p>
|
|
5931
5931
|
* @public
|
|
5932
5932
|
*/
|
|
5933
|
-
Theme?: Theme;
|
|
5933
|
+
Theme?: Theme | undefined;
|
|
5934
5934
|
}
|
|
5935
5935
|
/**
|
|
5936
5936
|
* @internal
|