@aws-sdk/client-workspaces-thin-client 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.
@@ -37,12 +37,12 @@ export declare class ConflictException extends __BaseException {
37
37
  * <p>The ID of the resource associated with the request.</p>
38
38
  * @public
39
39
  */
40
- resourceId?: string;
40
+ resourceId?: string | undefined;
41
41
  /**
42
42
  * <p>The type of the resource associated with the request.</p>
43
43
  * @public
44
44
  */
45
- resourceType?: string;
45
+ resourceType?: string | undefined;
46
46
  /**
47
47
  * @internal
48
48
  */
@@ -86,39 +86,39 @@ export interface MaintenanceWindow {
86
86
  * <p>An option to select the default or custom maintenance window.</p>
87
87
  * @public
88
88
  */
89
- type?: MaintenanceWindowType;
89
+ type?: MaintenanceWindowType | undefined;
90
90
  /**
91
91
  * <p>The hour for the maintenance window start (<code>00</code>-<code>23</code>).</p>
92
92
  * @public
93
93
  */
94
- startTimeHour?: number;
94
+ startTimeHour?: number | undefined;
95
95
  /**
96
96
  * <p>The minutes past the hour for the maintenance window start
97
97
  * (<code>00</code>-<code>59</code>).</p>
98
98
  * @public
99
99
  */
100
- startTimeMinute?: number;
100
+ startTimeMinute?: number | undefined;
101
101
  /**
102
102
  * <p>The hour for the maintenance window end (<code>00</code>-<code>23</code>).</p>
103
103
  * @public
104
104
  */
105
- endTimeHour?: number;
105
+ endTimeHour?: number | undefined;
106
106
  /**
107
107
  * <p>The minutes for the maintenance window end (<code>00</code>-<code>59</code>).</p>
108
108
  * @public
109
109
  */
110
- endTimeMinute?: number;
110
+ endTimeMinute?: number | undefined;
111
111
  /**
112
112
  * <p>The days of the week during which the maintenance window is open.</p>
113
113
  * @public
114
114
  */
115
- daysOfTheWeek?: DayOfWeek[];
115
+ daysOfTheWeek?: DayOfWeek[] | undefined;
116
116
  /**
117
117
  * <p>The option to set the maintenance window during the device local time or Universal
118
118
  * Coordinated Time (UTC).</p>
119
119
  * @public
120
120
  */
121
- applyTimeOf?: ApplyTimeOf;
121
+ applyTimeOf?: ApplyTimeOf | undefined;
122
122
  }
123
123
  /**
124
124
  * @public
@@ -152,7 +152,7 @@ export interface CreateEnvironmentRequest {
152
152
  * <p>The name for the environment.</p>
153
153
  * @public
154
154
  */
155
- name?: string;
155
+ name?: string | undefined;
156
156
  /**
157
157
  * <p>The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces,
158
158
  * WorkSpaces Web, or AppStream 2.0.</p>
@@ -163,34 +163,34 @@ export interface CreateEnvironmentRequest {
163
163
  * <p>The URL for the identity provider login (only for environments that use AppStream 2.0).</p>
164
164
  * @public
165
165
  */
166
- desktopEndpoint?: string;
166
+ desktopEndpoint?: string | undefined;
167
167
  /**
168
168
  * <p>An option to define if software updates should be applied within a maintenance
169
169
  * window.</p>
170
170
  * @public
171
171
  */
172
- softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
172
+ softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule | undefined;
173
173
  /**
174
174
  * <p>A specification for a time window to apply software updates.</p>
175
175
  * @public
176
176
  */
177
- maintenanceWindow?: MaintenanceWindow;
177
+ maintenanceWindow?: MaintenanceWindow | undefined;
178
178
  /**
179
179
  * <p>An option to define which software updates to apply.</p>
180
180
  * @public
181
181
  */
182
- softwareSetUpdateMode?: SoftwareSetUpdateMode;
182
+ softwareSetUpdateMode?: SoftwareSetUpdateMode | undefined;
183
183
  /**
184
184
  * <p>The ID of the software set to apply.</p>
185
185
  * @public
186
186
  */
187
- desiredSoftwareSetId?: string;
187
+ desiredSoftwareSetId?: string | undefined;
188
188
  /**
189
189
  * <p>The Amazon Resource Name (ARN) of the Key Management Service key to use to encrypt the
190
190
  * environment.</p>
191
191
  * @public
192
192
  */
193
- kmsKeyArn?: string;
193
+ kmsKeyArn?: string | undefined;
194
194
  /**
195
195
  * <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency
196
196
  * of the request. This lets you safely retry the request without accidentally performing the
@@ -204,17 +204,17 @@ export interface CreateEnvironmentRequest {
204
204
  * parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
205
205
  * @public
206
206
  */
207
- clientToken?: string;
207
+ clientToken?: string | undefined;
208
208
  /**
209
209
  * <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
210
210
  * @public
211
211
  */
212
- tags?: Record<string, string>;
212
+ tags?: Record<string, string> | undefined;
213
213
  /**
214
214
  * <p>A map of the key-value pairs of the tag or tags to assign to the newly created devices for this environment.</p>
215
215
  * @public
216
216
  */
217
- deviceCreationTags?: Record<string, string>;
217
+ deviceCreationTags?: Record<string, string> | undefined;
218
218
  }
219
219
  /**
220
220
  * @public
@@ -238,74 +238,74 @@ export interface EnvironmentSummary {
238
238
  * <p>The ID of the environment.</p>
239
239
  * @public
240
240
  */
241
- id?: string;
241
+ id?: string | undefined;
242
242
  /**
243
243
  * <p>The name of the environment.</p>
244
244
  * @public
245
245
  */
246
- name?: string;
246
+ name?: string | undefined;
247
247
  /**
248
248
  * <p>The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces,
249
249
  * WorkSpaces Web, or AppStream 2.0.</p>
250
250
  * @public
251
251
  */
252
- desktopArn?: string;
252
+ desktopArn?: string | undefined;
253
253
  /**
254
254
  * <p>The URL for the identity provider login (only for environments that use AppStream 2.0).</p>
255
255
  * @public
256
256
  */
257
- desktopEndpoint?: string;
257
+ desktopEndpoint?: string | undefined;
258
258
  /**
259
259
  * <p>The type of streaming desktop for the environment.</p>
260
260
  * @public
261
261
  */
262
- desktopType?: DesktopType;
262
+ desktopType?: DesktopType | undefined;
263
263
  /**
264
264
  * <p>The activation code to register a device to the environment.</p>
265
265
  * @public
266
266
  */
267
- activationCode?: string;
267
+ activationCode?: string | undefined;
268
268
  /**
269
269
  * <p>An option to define if software updates should be applied within a maintenance
270
270
  * window.</p>
271
271
  * @public
272
272
  */
273
- softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
273
+ softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule | undefined;
274
274
  /**
275
275
  * <p>A specification for a time window to apply software updates.</p>
276
276
  * @public
277
277
  */
278
- maintenanceWindow?: MaintenanceWindow;
278
+ maintenanceWindow?: MaintenanceWindow | undefined;
279
279
  /**
280
280
  * <p>An option to define which software updates to apply.</p>
281
281
  * @public
282
282
  */
283
- softwareSetUpdateMode?: SoftwareSetUpdateMode;
283
+ softwareSetUpdateMode?: SoftwareSetUpdateMode | undefined;
284
284
  /**
285
285
  * <p>The ID of the software set to apply.</p>
286
286
  * @public
287
287
  */
288
- desiredSoftwareSetId?: string;
288
+ desiredSoftwareSetId?: string | undefined;
289
289
  /**
290
290
  * <p>The ID of the software set that is pending to be installed.</p>
291
291
  * @public
292
292
  */
293
- pendingSoftwareSetId?: string;
293
+ pendingSoftwareSetId?: string | undefined;
294
294
  /**
295
295
  * <p>The timestamp of when the environment was created.</p>
296
296
  * @public
297
297
  */
298
- createdAt?: Date;
298
+ createdAt?: Date | undefined;
299
299
  /**
300
300
  * <p>The timestamp of when the device was updated.</p>
301
301
  * @public
302
302
  */
303
- updatedAt?: Date;
303
+ updatedAt?: Date | undefined;
304
304
  /**
305
305
  * <p>The Amazon Resource Name (ARN) of the environment.</p>
306
306
  * @public
307
307
  */
308
- arn?: string;
308
+ arn?: string | undefined;
309
309
  }
310
310
  /**
311
311
  * @public
@@ -315,7 +315,7 @@ export interface CreateEnvironmentResponse {
315
315
  * <p>Describes an environment.</p>
316
316
  * @public
317
317
  */
318
- environment?: EnvironmentSummary;
318
+ environment?: EnvironmentSummary | undefined;
319
319
  }
320
320
  /**
321
321
  * <p>The server encountered an internal error and is unable to complete the request.</p>
@@ -328,7 +328,7 @@ export declare class InternalServerException extends __BaseException {
328
328
  * <p>The number of seconds to wait before retrying the next request.</p>
329
329
  * @public
330
330
  */
331
- retryAfterSeconds?: number;
331
+ retryAfterSeconds?: number | undefined;
332
332
  /**
333
333
  * @internal
334
334
  */
@@ -345,12 +345,12 @@ export declare class ResourceNotFoundException extends __BaseException {
345
345
  * <p>The ID of the resource associated with the request.</p>
346
346
  * @public
347
347
  */
348
- resourceId?: string;
348
+ resourceId?: string | undefined;
349
349
  /**
350
350
  * <p>The type of the resource associated with the request.</p>
351
351
  * @public
352
352
  */
353
- resourceType?: string;
353
+ resourceType?: string | undefined;
354
354
  /**
355
355
  * @internal
356
356
  */
@@ -367,22 +367,22 @@ export declare class ServiceQuotaExceededException extends __BaseException {
367
367
  * <p>The ID of the resource that exceeds the service quota.</p>
368
368
  * @public
369
369
  */
370
- resourceId?: string;
370
+ resourceId?: string | undefined;
371
371
  /**
372
372
  * <p>The type of the resource that exceeds the service quota.</p>
373
373
  * @public
374
374
  */
375
- resourceType?: string;
375
+ resourceType?: string | undefined;
376
376
  /**
377
377
  * <p>The code for the service in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
378
378
  * @public
379
379
  */
380
- serviceCode?: string;
380
+ serviceCode?: string | undefined;
381
381
  /**
382
382
  * <p>The code for the quota in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
383
383
  * @public
384
384
  */
385
- quotaCode?: string;
385
+ quotaCode?: string | undefined;
386
386
  /**
387
387
  * @internal
388
388
  */
@@ -399,17 +399,17 @@ export declare class ThrottlingException extends __BaseException {
399
399
  * <p>The code for the service in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
400
400
  * @public
401
401
  */
402
- serviceCode?: string;
402
+ serviceCode?: string | undefined;
403
403
  /**
404
404
  * <p>The code for the quota in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
405
405
  * @public
406
406
  */
407
- quotaCode?: string;
407
+ quotaCode?: string | undefined;
408
408
  /**
409
409
  * <p>The number of seconds to wait before retrying the next request.</p>
410
410
  * @public
411
411
  */
412
- retryAfterSeconds?: number;
412
+ retryAfterSeconds?: number | undefined;
413
413
  /**
414
414
  * @internal
415
415
  */
@@ -456,12 +456,12 @@ export declare class ValidationException extends __BaseException {
456
456
  * <p>The reason for the exception.</p>
457
457
  * @public
458
458
  */
459
- reason?: ValidationExceptionReason;
459
+ reason?: ValidationExceptionReason | undefined;
460
460
  /**
461
461
  * <p>A list of fields that didn't validate.</p>
462
462
  * @public
463
463
  */
464
- fieldList?: ValidationExceptionField[];
464
+ fieldList?: ValidationExceptionField[] | undefined;
465
465
  /**
466
466
  * @internal
467
467
  */
@@ -489,7 +489,7 @@ export interface DeleteDeviceRequest {
489
489
  * parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
490
490
  * @public
491
491
  */
492
- clientToken?: string;
492
+ clientToken?: string | undefined;
493
493
  }
494
494
  /**
495
495
  * @public
@@ -518,7 +518,7 @@ export interface DeleteEnvironmentRequest {
518
518
  * parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
519
519
  * @public
520
520
  */
521
- clientToken?: string;
521
+ clientToken?: string | undefined;
522
522
  }
523
523
  /**
524
524
  * @public
@@ -550,7 +550,7 @@ export interface DeregisterDeviceRequest {
550
550
  * <p>The desired new status for the device.</p>
551
551
  * @public
552
552
  */
553
- targetDeviceStatus?: TargetDeviceStatus;
553
+ targetDeviceStatus?: TargetDeviceStatus | undefined;
554
554
  /**
555
555
  * <p>Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency
556
556
  * of the request. This lets you safely retry the request without accidentally performing the
@@ -564,7 +564,7 @@ export interface DeregisterDeviceRequest {
564
564
  * parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
565
565
  * @public
566
566
  */
567
- clientToken?: string;
567
+ clientToken?: string | undefined;
568
568
  }
569
569
  /**
570
570
  * @public
@@ -620,110 +620,110 @@ export interface Device {
620
620
  * <p>The ID of the device.</p>
621
621
  * @public
622
622
  */
623
- id?: string;
623
+ id?: string | undefined;
624
624
  /**
625
625
  * <p>The hardware serial number of the device.</p>
626
626
  * @public
627
627
  */
628
- serialNumber?: string;
628
+ serialNumber?: string | undefined;
629
629
  /**
630
630
  * <p>The name of the device.</p>
631
631
  * @public
632
632
  */
633
- name?: string;
633
+ name?: string | undefined;
634
634
  /**
635
635
  * <p>The model number of the device.</p>
636
636
  * @public
637
637
  */
638
- model?: string;
638
+ model?: string | undefined;
639
639
  /**
640
640
  * <p>The ID of the environment the device is associated with.</p>
641
641
  * @public
642
642
  */
643
- environmentId?: string;
643
+ environmentId?: string | undefined;
644
644
  /**
645
645
  * <p>The status of the device.</p>
646
646
  * @public
647
647
  */
648
- status?: DeviceStatus;
648
+ status?: DeviceStatus | undefined;
649
649
  /**
650
650
  * <p>The ID of the software set currently installed on the device.</p>
651
651
  * @public
652
652
  */
653
- currentSoftwareSetId?: string;
653
+ currentSoftwareSetId?: string | undefined;
654
654
  /**
655
655
  * <p>The version of the software set currently installed on the device.</p>
656
656
  * @public
657
657
  */
658
- currentSoftwareSetVersion?: string;
658
+ currentSoftwareSetVersion?: string | undefined;
659
659
  /**
660
660
  * <p>The ID of the software set which the device has been set to.</p>
661
661
  * @public
662
662
  */
663
- desiredSoftwareSetId?: string;
663
+ desiredSoftwareSetId?: string | undefined;
664
664
  /**
665
665
  * <p>The ID of the software set that is pending to be installed on the device.</p>
666
666
  * @public
667
667
  */
668
- pendingSoftwareSetId?: string;
668
+ pendingSoftwareSetId?: string | undefined;
669
669
  /**
670
670
  * <p>The version of the software set that is pending to be installed on the device.</p>
671
671
  * @public
672
672
  */
673
- pendingSoftwareSetVersion?: string;
673
+ pendingSoftwareSetVersion?: string | undefined;
674
674
  /**
675
675
  * <p>An option to define if software updates should be applied within a maintenance
676
676
  * window.</p>
677
677
  * @public
678
678
  */
679
- softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
679
+ softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule | undefined;
680
680
  /**
681
681
  * <p>Describes if the software currently installed on the device is a supported
682
682
  * version.</p>
683
683
  * @public
684
684
  */
685
- softwareSetComplianceStatus?: DeviceSoftwareSetComplianceStatus;
685
+ softwareSetComplianceStatus?: DeviceSoftwareSetComplianceStatus | undefined;
686
686
  /**
687
687
  * <p>Describes if the device has a supported version of software installed.</p>
688
688
  * @public
689
689
  */
690
- softwareSetUpdateStatus?: SoftwareSetUpdateStatus;
690
+ softwareSetUpdateStatus?: SoftwareSetUpdateStatus | undefined;
691
691
  /**
692
692
  * <p>The timestamp of the most recent session on the device.</p>
693
693
  * @public
694
694
  */
695
- lastConnectedAt?: Date;
695
+ lastConnectedAt?: Date | undefined;
696
696
  /**
697
697
  * <p>The timestamp of the most recent check-in of the device.</p>
698
698
  * @public
699
699
  */
700
- lastPostureAt?: Date;
700
+ lastPostureAt?: Date | undefined;
701
701
  /**
702
702
  * <p>The timestamp of when the device was created.</p>
703
703
  * @public
704
704
  */
705
- createdAt?: Date;
705
+ createdAt?: Date | undefined;
706
706
  /**
707
707
  * <p>The timestamp of when the device was updated.</p>
708
708
  * @public
709
709
  */
710
- updatedAt?: Date;
710
+ updatedAt?: Date | undefined;
711
711
  /**
712
712
  * <p>The Amazon Resource Name (ARN) of the device.</p>
713
713
  * @public
714
714
  */
715
- arn?: string;
715
+ arn?: string | undefined;
716
716
  /**
717
717
  * <p>The Amazon Resource Name (ARN) of the Key Management Service key used to encrypt the
718
718
  * device.</p>
719
719
  * @public
720
720
  */
721
- kmsKeyArn?: string;
721
+ kmsKeyArn?: string | undefined;
722
722
  /**
723
723
  * <p>The tag keys and optional values for the resource.</p>
724
724
  * @public
725
725
  */
726
- tags?: Record<string, string>;
726
+ tags?: Record<string, string> | undefined;
727
727
  }
728
728
  /**
729
729
  * <p>Describes a thin client device.</p>
@@ -734,78 +734,78 @@ export interface DeviceSummary {
734
734
  * <p>The ID of the device.</p>
735
735
  * @public
736
736
  */
737
- id?: string;
737
+ id?: string | undefined;
738
738
  /**
739
739
  * <p>The hardware serial number of the device.</p>
740
740
  * @public
741
741
  */
742
- serialNumber?: string;
742
+ serialNumber?: string | undefined;
743
743
  /**
744
744
  * <p>The name of the device.</p>
745
745
  * @public
746
746
  */
747
- name?: string;
747
+ name?: string | undefined;
748
748
  /**
749
749
  * <p>The model number of the device.</p>
750
750
  * @public
751
751
  */
752
- model?: string;
752
+ model?: string | undefined;
753
753
  /**
754
754
  * <p>The ID of the environment the device is associated with.</p>
755
755
  * @public
756
756
  */
757
- environmentId?: string;
757
+ environmentId?: string | undefined;
758
758
  /**
759
759
  * <p>The status of the device.</p>
760
760
  * @public
761
761
  */
762
- status?: DeviceStatus;
762
+ status?: DeviceStatus | undefined;
763
763
  /**
764
764
  * <p>The ID of the software set currently installed on the device.</p>
765
765
  * @public
766
766
  */
767
- currentSoftwareSetId?: string;
767
+ currentSoftwareSetId?: string | undefined;
768
768
  /**
769
769
  * <p>The ID of the software set which the device has been set to.</p>
770
770
  * @public
771
771
  */
772
- desiredSoftwareSetId?: string;
772
+ desiredSoftwareSetId?: string | undefined;
773
773
  /**
774
774
  * <p>The ID of the software set that is pending to be installed on the device.</p>
775
775
  * @public
776
776
  */
777
- pendingSoftwareSetId?: string;
777
+ pendingSoftwareSetId?: string | undefined;
778
778
  /**
779
779
  * <p>An option to define if software updates should be applied within a maintenance
780
780
  * window.</p>
781
781
  * @public
782
782
  */
783
- softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
783
+ softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule | undefined;
784
784
  /**
785
785
  * <p>The timestamp of the most recent session on the device.</p>
786
786
  * @public
787
787
  */
788
- lastConnectedAt?: Date;
788
+ lastConnectedAt?: Date | undefined;
789
789
  /**
790
790
  * <p>The timestamp of the most recent check-in of the device.</p>
791
791
  * @public
792
792
  */
793
- lastPostureAt?: Date;
793
+ lastPostureAt?: Date | undefined;
794
794
  /**
795
795
  * <p>The timestamp of when the device was created.</p>
796
796
  * @public
797
797
  */
798
- createdAt?: Date;
798
+ createdAt?: Date | undefined;
799
799
  /**
800
800
  * <p>The timestamp of when the device was updated.</p>
801
801
  * @public
802
802
  */
803
- updatedAt?: Date;
803
+ updatedAt?: Date | undefined;
804
804
  /**
805
805
  * <p>The Amazon Resource Name (ARN) of the device.</p>
806
806
  * @public
807
807
  */
808
- arn?: string;
808
+ arn?: string | undefined;
809
809
  }
810
810
  /**
811
811
  * @public
@@ -829,106 +829,106 @@ export interface Environment {
829
829
  * <p>The ID of the environment.</p>
830
830
  * @public
831
831
  */
832
- id?: string;
832
+ id?: string | undefined;
833
833
  /**
834
834
  * <p>The name of the environment.</p>
835
835
  * @public
836
836
  */
837
- name?: string;
837
+ name?: string | undefined;
838
838
  /**
839
839
  * <p>The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces,
840
840
  * WorkSpaces Web, or AppStream 2.0.</p>
841
841
  * @public
842
842
  */
843
- desktopArn?: string;
843
+ desktopArn?: string | undefined;
844
844
  /**
845
845
  * <p>The URL for the identity provider login (only for environments that use AppStream 2.0).</p>
846
846
  * @public
847
847
  */
848
- desktopEndpoint?: string;
848
+ desktopEndpoint?: string | undefined;
849
849
  /**
850
850
  * <p>The type of streaming desktop for the environment.</p>
851
851
  * @public
852
852
  */
853
- desktopType?: DesktopType;
853
+ desktopType?: DesktopType | undefined;
854
854
  /**
855
855
  * <p>The activation code to register a device to the environment.</p>
856
856
  * @public
857
857
  */
858
- activationCode?: string;
858
+ activationCode?: string | undefined;
859
859
  /**
860
860
  * <p>The number of devices registered to the environment.</p>
861
861
  * @public
862
862
  */
863
- registeredDevicesCount?: number;
863
+ registeredDevicesCount?: number | undefined;
864
864
  /**
865
865
  * <p>An option to define if software updates should be applied within a maintenance
866
866
  * window.</p>
867
867
  * @public
868
868
  */
869
- softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
869
+ softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule | undefined;
870
870
  /**
871
871
  * <p>A specification for a time window to apply software updates.</p>
872
872
  * @public
873
873
  */
874
- maintenanceWindow?: MaintenanceWindow;
874
+ maintenanceWindow?: MaintenanceWindow | undefined;
875
875
  /**
876
876
  * <p>An option to define which software updates to apply.</p>
877
877
  * @public
878
878
  */
879
- softwareSetUpdateMode?: SoftwareSetUpdateMode;
879
+ softwareSetUpdateMode?: SoftwareSetUpdateMode | undefined;
880
880
  /**
881
881
  * <p>The ID of the software set to apply.</p>
882
882
  * @public
883
883
  */
884
- desiredSoftwareSetId?: string;
884
+ desiredSoftwareSetId?: string | undefined;
885
885
  /**
886
886
  * <p>The ID of the software set that is pending to be installed.</p>
887
887
  * @public
888
888
  */
889
- pendingSoftwareSetId?: string;
889
+ pendingSoftwareSetId?: string | undefined;
890
890
  /**
891
891
  * <p>The version of the software set that is pending to be installed.</p>
892
892
  * @public
893
893
  */
894
- pendingSoftwareSetVersion?: string;
894
+ pendingSoftwareSetVersion?: string | undefined;
895
895
  /**
896
896
  * <p>Describes if the software currently installed on all devices in the environment is a
897
897
  * supported version.</p>
898
898
  * @public
899
899
  */
900
- softwareSetComplianceStatus?: EnvironmentSoftwareSetComplianceStatus;
900
+ softwareSetComplianceStatus?: EnvironmentSoftwareSetComplianceStatus | undefined;
901
901
  /**
902
902
  * <p>The timestamp of when the environment was created.</p>
903
903
  * @public
904
904
  */
905
- createdAt?: Date;
905
+ createdAt?: Date | undefined;
906
906
  /**
907
907
  * <p>The timestamp of when the device was updated.</p>
908
908
  * @public
909
909
  */
910
- updatedAt?: Date;
910
+ updatedAt?: Date | undefined;
911
911
  /**
912
912
  * <p>The Amazon Resource Name (ARN) of the environment.</p>
913
913
  * @public
914
914
  */
915
- arn?: string;
915
+ arn?: string | undefined;
916
916
  /**
917
917
  * <p>The Amazon Resource Name (ARN) of the Key Management Service key used to encrypt the
918
918
  * environment.</p>
919
919
  * @public
920
920
  */
921
- kmsKeyArn?: string;
921
+ kmsKeyArn?: string | undefined;
922
922
  /**
923
923
  * <p>The tag keys and optional values for the resource.</p>
924
924
  * @public
925
925
  */
926
- tags?: Record<string, string>;
926
+ tags?: Record<string, string> | undefined;
927
927
  /**
928
928
  * <p>The tag keys and optional values for the newly created devices for this environment.</p>
929
929
  * @public
930
930
  */
931
- deviceCreationTags?: Record<string, string>;
931
+ deviceCreationTags?: Record<string, string> | undefined;
932
932
  }
933
933
  /**
934
934
  * @public
@@ -948,7 +948,7 @@ export interface GetDeviceResponse {
948
948
  * <p>Describes an device.</p>
949
949
  * @public
950
950
  */
951
- device?: Device;
951
+ device?: Device | undefined;
952
952
  }
953
953
  /**
954
954
  * @public
@@ -968,7 +968,7 @@ export interface GetEnvironmentResponse {
968
968
  * <p>Describes an environment.</p>
969
969
  * @public
970
970
  */
971
- environment?: Environment;
971
+ environment?: Environment | undefined;
972
972
  }
973
973
  /**
974
974
  * @public
@@ -989,12 +989,12 @@ export interface Software {
989
989
  * <p>The name of the software component.</p>
990
990
  * @public
991
991
  */
992
- name?: string;
992
+ name?: string | undefined;
993
993
  /**
994
994
  * <p>The version of the software component.</p>
995
995
  * @public
996
996
  */
997
- version?: string;
997
+ version?: string | undefined;
998
998
  }
999
999
  /**
1000
1000
  * @public
@@ -1017,42 +1017,42 @@ export interface SoftwareSet {
1017
1017
  * <p>The ID of the software set.</p>
1018
1018
  * @public
1019
1019
  */
1020
- id?: string;
1020
+ id?: string | undefined;
1021
1021
  /**
1022
1022
  * <p>The version of the software set.</p>
1023
1023
  * @public
1024
1024
  */
1025
- version?: string;
1025
+ version?: string | undefined;
1026
1026
  /**
1027
1027
  * <p>The timestamp of when the software set was released.</p>
1028
1028
  * @public
1029
1029
  */
1030
- releasedAt?: Date;
1030
+ releasedAt?: Date | undefined;
1031
1031
  /**
1032
1032
  * <p>The timestamp of the end of support for the software set.</p>
1033
1033
  * @public
1034
1034
  */
1035
- supportedUntil?: Date;
1035
+ supportedUntil?: Date | undefined;
1036
1036
  /**
1037
1037
  * <p>An option to define if the software set has been validated.</p>
1038
1038
  * @public
1039
1039
  */
1040
- validationStatus?: SoftwareSetValidationStatus;
1040
+ validationStatus?: SoftwareSetValidationStatus | undefined;
1041
1041
  /**
1042
1042
  * <p>A list of the software components in the software set.</p>
1043
1043
  * @public
1044
1044
  */
1045
- software?: Software[];
1045
+ software?: Software[] | undefined;
1046
1046
  /**
1047
1047
  * <p>The Amazon Resource Name (ARN) of the software set.</p>
1048
1048
  * @public
1049
1049
  */
1050
- arn?: string;
1050
+ arn?: string | undefined;
1051
1051
  /**
1052
1052
  * <p>The tag keys and optional values for the resource.</p>
1053
1053
  * @public
1054
1054
  */
1055
- tags?: Record<string, string>;
1055
+ tags?: Record<string, string> | undefined;
1056
1056
  }
1057
1057
  /**
1058
1058
  * @public
@@ -1062,7 +1062,7 @@ export interface GetSoftwareSetResponse {
1062
1062
  * <p>Describes a software set.</p>
1063
1063
  * @public
1064
1064
  */
1065
- softwareSet?: SoftwareSet;
1065
+ softwareSet?: SoftwareSet | undefined;
1066
1066
  }
1067
1067
  /**
1068
1068
  * @public
@@ -1076,7 +1076,7 @@ export interface ListDevicesRequest {
1076
1076
  * an <i>HTTP 400 InvalidToken error</i>.</p>
1077
1077
  * @public
1078
1078
  */
1079
- nextToken?: string;
1079
+ nextToken?: string | undefined;
1080
1080
  /**
1081
1081
  * <p>The maximum number of results that are returned per call. You can use
1082
1082
  * <code>nextToken</code> to obtain further pages of results.</p>
@@ -1084,7 +1084,7 @@ export interface ListDevicesRequest {
1084
1084
  * fewer than the specified maximum.</p>
1085
1085
  * @public
1086
1086
  */
1087
- maxResults?: number;
1087
+ maxResults?: number | undefined;
1088
1088
  }
1089
1089
  /**
1090
1090
  * @public
@@ -1094,7 +1094,7 @@ export interface ListDevicesResponse {
1094
1094
  * <p>Describes devices.</p>
1095
1095
  * @public
1096
1096
  */
1097
- devices?: DeviceSummary[];
1097
+ devices?: DeviceSummary[] | undefined;
1098
1098
  /**
1099
1099
  * <p>If <code>nextToken</code> is returned, there are more results available. The value of
1100
1100
  * <code>nextToken</code> is a unique pagination token for each page. Make the call again
@@ -1103,7 +1103,7 @@ export interface ListDevicesResponse {
1103
1103
  * an <i>HTTP 400 InvalidToken error</i>.</p>
1104
1104
  * @public
1105
1105
  */
1106
- nextToken?: string;
1106
+ nextToken?: string | undefined;
1107
1107
  }
1108
1108
  /**
1109
1109
  * @public
@@ -1117,7 +1117,7 @@ export interface ListEnvironmentsRequest {
1117
1117
  * an <i>HTTP 400 InvalidToken error</i>.</p>
1118
1118
  * @public
1119
1119
  */
1120
- nextToken?: string;
1120
+ nextToken?: string | undefined;
1121
1121
  /**
1122
1122
  * <p>The maximum number of results that are returned per call. You can use
1123
1123
  * <code>nextToken</code> to obtain further pages of results.</p>
@@ -1125,7 +1125,7 @@ export interface ListEnvironmentsRequest {
1125
1125
  * fewer than the specified maximum.</p>
1126
1126
  * @public
1127
1127
  */
1128
- maxResults?: number;
1128
+ maxResults?: number | undefined;
1129
1129
  }
1130
1130
  /**
1131
1131
  * @public
@@ -1135,7 +1135,7 @@ export interface ListEnvironmentsResponse {
1135
1135
  * <p>Describes environments.</p>
1136
1136
  * @public
1137
1137
  */
1138
- environments?: EnvironmentSummary[];
1138
+ environments?: EnvironmentSummary[] | undefined;
1139
1139
  /**
1140
1140
  * <p>If <code>nextToken</code> is returned, there are more results available. The value of
1141
1141
  * <code>nextToken</code> is a unique pagination token for each page. Make the call again
@@ -1144,7 +1144,7 @@ export interface ListEnvironmentsResponse {
1144
1144
  * an <i>HTTP 400 InvalidToken error</i>.</p>
1145
1145
  * @public
1146
1146
  */
1147
- nextToken?: string;
1147
+ nextToken?: string | undefined;
1148
1148
  }
1149
1149
  /**
1150
1150
  * @public
@@ -1158,7 +1158,7 @@ export interface ListSoftwareSetsRequest {
1158
1158
  * an <i>HTTP 400 InvalidToken error</i>.</p>
1159
1159
  * @public
1160
1160
  */
1161
- nextToken?: string;
1161
+ nextToken?: string | undefined;
1162
1162
  /**
1163
1163
  * <p>The maximum number of results that are returned per call. You can use
1164
1164
  * <code>nextToken</code> to obtain further pages of results.</p>
@@ -1166,7 +1166,7 @@ export interface ListSoftwareSetsRequest {
1166
1166
  * fewer than the specified maximum.</p>
1167
1167
  * @public
1168
1168
  */
1169
- maxResults?: number;
1169
+ maxResults?: number | undefined;
1170
1170
  }
1171
1171
  /**
1172
1172
  * <p>Describes a software set.</p>
@@ -1177,32 +1177,32 @@ export interface SoftwareSetSummary {
1177
1177
  * <p>The ID of the software set.</p>
1178
1178
  * @public
1179
1179
  */
1180
- id?: string;
1180
+ id?: string | undefined;
1181
1181
  /**
1182
1182
  * <p>The version of the software set.</p>
1183
1183
  * @public
1184
1184
  */
1185
- version?: string;
1185
+ version?: string | undefined;
1186
1186
  /**
1187
1187
  * <p>The timestamp of when the software set was released.</p>
1188
1188
  * @public
1189
1189
  */
1190
- releasedAt?: Date;
1190
+ releasedAt?: Date | undefined;
1191
1191
  /**
1192
1192
  * <p>The timestamp of the end of support for the software set.</p>
1193
1193
  * @public
1194
1194
  */
1195
- supportedUntil?: Date;
1195
+ supportedUntil?: Date | undefined;
1196
1196
  /**
1197
1197
  * <p>An option to define if the software set has been validated.</p>
1198
1198
  * @public
1199
1199
  */
1200
- validationStatus?: SoftwareSetValidationStatus;
1200
+ validationStatus?: SoftwareSetValidationStatus | undefined;
1201
1201
  /**
1202
1202
  * <p>The Amazon Resource Name (ARN) of the software set.</p>
1203
1203
  * @public
1204
1204
  */
1205
- arn?: string;
1205
+ arn?: string | undefined;
1206
1206
  }
1207
1207
  /**
1208
1208
  * @public
@@ -1212,7 +1212,7 @@ export interface ListSoftwareSetsResponse {
1212
1212
  * <p>Describes software sets.</p>
1213
1213
  * @public
1214
1214
  */
1215
- softwareSets?: SoftwareSetSummary[];
1215
+ softwareSets?: SoftwareSetSummary[] | undefined;
1216
1216
  /**
1217
1217
  * <p>If <code>nextToken</code> is returned, there are more results available. The value of
1218
1218
  * <code>nextToken</code> is a unique pagination token for each page. Make the call again
@@ -1221,7 +1221,7 @@ export interface ListSoftwareSetsResponse {
1221
1221
  * an <i>HTTP 400 InvalidToken error</i>.</p>
1222
1222
  * @public
1223
1223
  */
1224
- nextToken?: string;
1224
+ nextToken?: string | undefined;
1225
1225
  }
1226
1226
  /**
1227
1227
  * @public
@@ -1242,7 +1242,7 @@ export interface ListTagsForResourceResponse {
1242
1242
  * <p>A map of the key-value pairs for the tag or tags assigned to the specified resource.</p>
1243
1243
  * @public
1244
1244
  */
1245
- tags?: Record<string, string>;
1245
+ tags?: Record<string, string> | undefined;
1246
1246
  }
1247
1247
  /**
1248
1248
  * @public
@@ -1298,18 +1298,18 @@ export interface UpdateDeviceRequest {
1298
1298
  * <p>The name of the device to update.</p>
1299
1299
  * @public
1300
1300
  */
1301
- name?: string;
1301
+ name?: string | undefined;
1302
1302
  /**
1303
1303
  * <p>The ID of the software set to apply.</p>
1304
1304
  * @public
1305
1305
  */
1306
- desiredSoftwareSetId?: string;
1306
+ desiredSoftwareSetId?: string | undefined;
1307
1307
  /**
1308
1308
  * <p>An option to define if software updates should be applied within a maintenance
1309
1309
  * window.</p>
1310
1310
  * @public
1311
1311
  */
1312
- softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
1312
+ softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule | undefined;
1313
1313
  }
1314
1314
  /**
1315
1315
  * @public
@@ -1319,7 +1319,7 @@ export interface UpdateDeviceResponse {
1319
1319
  * <p>Describes a device.</p>
1320
1320
  * @public
1321
1321
  */
1322
- device?: DeviceSummary;
1322
+ device?: DeviceSummary | undefined;
1323
1323
  }
1324
1324
  /**
1325
1325
  * @public
@@ -1334,44 +1334,44 @@ export interface UpdateEnvironmentRequest {
1334
1334
  * <p>The name of the environment to update.</p>
1335
1335
  * @public
1336
1336
  */
1337
- name?: string;
1337
+ name?: string | undefined;
1338
1338
  /**
1339
1339
  * <p>The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces,
1340
1340
  * WorkSpaces Web, or AppStream 2.0.</p>
1341
1341
  * @public
1342
1342
  */
1343
- desktopArn?: string;
1343
+ desktopArn?: string | undefined;
1344
1344
  /**
1345
1345
  * <p>The URL for the identity provider login (only for environments that use AppStream 2.0).</p>
1346
1346
  * @public
1347
1347
  */
1348
- desktopEndpoint?: string;
1348
+ desktopEndpoint?: string | undefined;
1349
1349
  /**
1350
1350
  * <p>An option to define if software updates should be applied within a maintenance
1351
1351
  * window.</p>
1352
1352
  * @public
1353
1353
  */
1354
- softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
1354
+ softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule | undefined;
1355
1355
  /**
1356
1356
  * <p>A specification for a time window to apply software updates.</p>
1357
1357
  * @public
1358
1358
  */
1359
- maintenanceWindow?: MaintenanceWindow;
1359
+ maintenanceWindow?: MaintenanceWindow | undefined;
1360
1360
  /**
1361
1361
  * <p>An option to define which software updates to apply.</p>
1362
1362
  * @public
1363
1363
  */
1364
- softwareSetUpdateMode?: SoftwareSetUpdateMode;
1364
+ softwareSetUpdateMode?: SoftwareSetUpdateMode | undefined;
1365
1365
  /**
1366
1366
  * <p>The ID of the software set to apply.</p>
1367
1367
  * @public
1368
1368
  */
1369
- desiredSoftwareSetId?: string;
1369
+ desiredSoftwareSetId?: string | undefined;
1370
1370
  /**
1371
1371
  * <p>A map of the key-value pairs of the tag or tags to assign to the newly created devices for this environment.</p>
1372
1372
  * @public
1373
1373
  */
1374
- deviceCreationTags?: Record<string, string>;
1374
+ deviceCreationTags?: Record<string, string> | undefined;
1375
1375
  }
1376
1376
  /**
1377
1377
  * @public
@@ -1381,7 +1381,7 @@ export interface UpdateEnvironmentResponse {
1381
1381
  * <p>Describes an environment.</p>
1382
1382
  * @public
1383
1383
  */
1384
- environment?: EnvironmentSummary;
1384
+ environment?: EnvironmentSummary | undefined;
1385
1385
  }
1386
1386
  /**
1387
1387
  * @public