@aws-sdk/client-workspaces 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.
@@ -13,7 +13,7 @@ export interface AcceptAccountLinkInvitationRequest {
13
13
  * <p>A string of up to 64 ASCII characters that Amazon EFS uses to ensure idempotent creation.</p>
14
14
  * @public
15
15
  */
16
- ClientToken?: string;
16
+ ClientToken?: string | undefined;
17
17
  }
18
18
  /**
19
19
  * @public
@@ -39,22 +39,22 @@ export interface AccountLink {
39
39
  * <p>The identifier of the account link.</p>
40
40
  * @public
41
41
  */
42
- AccountLinkId?: string;
42
+ AccountLinkId?: string | undefined;
43
43
  /**
44
44
  * <p>The status of the account link.</p>
45
45
  * @public
46
46
  */
47
- AccountLinkStatus?: AccountLinkStatusEnum;
47
+ AccountLinkStatus?: AccountLinkStatusEnum | undefined;
48
48
  /**
49
49
  * <p>The identifier of the source account.</p>
50
50
  * @public
51
51
  */
52
- SourceAccountId?: string;
52
+ SourceAccountId?: string | undefined;
53
53
  /**
54
54
  * <p>The identifier of the target account.</p>
55
55
  * @public
56
56
  */
57
- TargetAccountId?: string;
57
+ TargetAccountId?: string | undefined;
58
58
  }
59
59
  /**
60
60
  * @public
@@ -64,7 +64,7 @@ export interface AcceptAccountLinkInvitationResult {
64
64
  * <p>Information about the account link.</p>
65
65
  * @public
66
66
  */
67
- AccountLink?: AccountLink;
67
+ AccountLink?: AccountLink | undefined;
68
68
  }
69
69
  /**
70
70
  * <p>The user is not authorized to access a resource.</p>
@@ -113,7 +113,7 @@ export declare class ResourceNotFoundException extends __BaseException {
113
113
  * <p>The ID of the resource that could not be found.</p>
114
114
  * @public
115
115
  */
116
- ResourceId?: string;
116
+ ResourceId?: string | undefined;
117
117
  /**
118
118
  * @internal
119
119
  */
@@ -179,34 +179,34 @@ export interface AccountModification {
179
179
  * <p>The state of the modification to the configuration of BYOL.</p>
180
180
  * @public
181
181
  */
182
- ModificationState?: DedicatedTenancyModificationStateEnum;
182
+ ModificationState?: DedicatedTenancyModificationStateEnum | undefined;
183
183
  /**
184
184
  * <p>The status of BYOL (whether BYOL is being enabled or disabled).</p>
185
185
  * @public
186
186
  */
187
- DedicatedTenancySupport?: DedicatedTenancySupportResultEnum;
187
+ DedicatedTenancySupport?: DedicatedTenancySupportResultEnum | undefined;
188
188
  /**
189
189
  * <p>The IP address range, specified as an IPv4 CIDR block, for the management network
190
190
  * interface used for the account.</p>
191
191
  * @public
192
192
  */
193
- DedicatedTenancyManagementCidrRange?: string;
193
+ DedicatedTenancyManagementCidrRange?: string | undefined;
194
194
  /**
195
195
  * <p>The timestamp when the modification of the BYOL configuration was started.</p>
196
196
  * @public
197
197
  */
198
- StartTime?: Date;
198
+ StartTime?: Date | undefined;
199
199
  /**
200
200
  * <p>The error code that is returned if the configuration of BYOL cannot be modified.</p>
201
201
  * @public
202
202
  */
203
- ErrorCode?: string;
203
+ ErrorCode?: string | undefined;
204
204
  /**
205
205
  * <p>The text of the error message that is returned if the configuration of BYOL cannot be
206
206
  * modified.</p>
207
207
  * @public
208
208
  */
209
- ErrorMessage?: string;
209
+ ErrorMessage?: string | undefined;
210
210
  }
211
211
  /**
212
212
  * <p>Information about the Active Directory config.</p>
@@ -304,12 +304,12 @@ export interface AssociationStateReason {
304
304
  * <p>The error code of the association deployment failure.</p>
305
305
  * @public
306
306
  */
307
- ErrorCode?: AssociationErrorCode;
307
+ ErrorCode?: AssociationErrorCode | undefined;
308
308
  /**
309
309
  * <p>The error message of the association deployment failure.</p>
310
310
  * @public
311
311
  */
312
- ErrorMessage?: string;
312
+ ErrorMessage?: string | undefined;
313
313
  }
314
314
  /**
315
315
  * <p>Describes the association between an application and an application resource.</p>
@@ -320,37 +320,37 @@ export interface ApplicationResourceAssociation {
320
320
  * <p>The identifier of the application.</p>
321
321
  * @public
322
322
  */
323
- ApplicationId?: string;
323
+ ApplicationId?: string | undefined;
324
324
  /**
325
325
  * <p>The identifier of the associated resource.</p>
326
326
  * @public
327
327
  */
328
- AssociatedResourceId?: string;
328
+ AssociatedResourceId?: string | undefined;
329
329
  /**
330
330
  * <p>The resource type of the associated resource.</p>
331
331
  * @public
332
332
  */
333
- AssociatedResourceType?: ApplicationAssociatedResourceType;
333
+ AssociatedResourceType?: ApplicationAssociatedResourceType | undefined;
334
334
  /**
335
335
  * <p>The time the association was created.</p>
336
336
  * @public
337
337
  */
338
- Created?: Date;
338
+ Created?: Date | undefined;
339
339
  /**
340
340
  * <p>The time the association status was last updated.</p>
341
341
  * @public
342
342
  */
343
- LastUpdatedTime?: Date;
343
+ LastUpdatedTime?: Date | undefined;
344
344
  /**
345
345
  * <p>The status of the application resource association.</p>
346
346
  * @public
347
347
  */
348
- State?: AssociationState;
348
+ State?: AssociationState | undefined;
349
349
  /**
350
350
  * <p>The reason the association deployment failed.</p>
351
351
  * @public
352
352
  */
353
- StateReason?: AssociationStateReason;
353
+ StateReason?: AssociationStateReason | undefined;
354
354
  }
355
355
  /**
356
356
  * @public
@@ -380,7 +380,7 @@ export interface ApplicationSettingsRequest {
380
380
  * the same settings group for each pool.</p>
381
381
  * @public
382
382
  */
383
- SettingsGroup?: string;
383
+ SettingsGroup?: string | undefined;
384
384
  }
385
385
  /**
386
386
  * <p>Describes the persistent application settings for WorkSpaces Pools users.</p>
@@ -396,14 +396,14 @@ export interface ApplicationSettingsResponse {
396
396
  * <p>The path prefix for the S3 bucket where users’ persistent application settings are stored.</p>
397
397
  * @public
398
398
  */
399
- SettingsGroup?: string;
399
+ SettingsGroup?: string | undefined;
400
400
  /**
401
401
  * <p>The S3 bucket where users’ persistent application settings are stored. When persistent
402
402
  * application settings are enabled for the first time for an account in an Amazon Web Services Region,
403
403
  * an S3 bucket is created. The bucket is unique to the Amazon Web Services account and the Region.</p>
404
404
  * @public
405
405
  */
406
- S3BucketName?: string;
406
+ S3BucketName?: string | undefined;
407
407
  }
408
408
  /**
409
409
  * @public
@@ -429,7 +429,7 @@ export interface AssociateConnectionAliasResult {
429
429
  * the DNS TXT record when you're configuring your DNS routing policies. </p>
430
430
  * @public
431
431
  */
432
- ConnectionIdentifier?: string;
432
+ ConnectionIdentifier?: string | undefined;
433
433
  }
434
434
  /**
435
435
  * <p>One or more parameter values are not valid.</p>
@@ -466,7 +466,7 @@ export declare class OperationNotSupportedException extends __BaseException {
466
466
  * <p>The exception error reason.</p>
467
467
  * @public
468
468
  */
469
- reason?: string;
469
+ reason?: string | undefined;
470
470
  /**
471
471
  * @internal
472
472
  */
@@ -551,37 +551,37 @@ export interface WorkspaceResourceAssociation {
551
551
  * <p>The identifier of the associated resource.</p>
552
552
  * @public
553
553
  */
554
- AssociatedResourceId?: string;
554
+ AssociatedResourceId?: string | undefined;
555
555
  /**
556
556
  * <p>The resource types of the associated resource.</p>
557
557
  * @public
558
558
  */
559
- AssociatedResourceType?: WorkSpaceAssociatedResourceType;
559
+ AssociatedResourceType?: WorkSpaceAssociatedResourceType | undefined;
560
560
  /**
561
561
  * <p>The time the association is created.</p>
562
562
  * @public
563
563
  */
564
- Created?: Date;
564
+ Created?: Date | undefined;
565
565
  /**
566
566
  * <p>The time the association status was last updated.</p>
567
567
  * @public
568
568
  */
569
- LastUpdatedTime?: Date;
569
+ LastUpdatedTime?: Date | undefined;
570
570
  /**
571
571
  * <p>The status of the WorkSpace resource association.</p>
572
572
  * @public
573
573
  */
574
- State?: AssociationState;
574
+ State?: AssociationState | undefined;
575
575
  /**
576
576
  * <p>The reason the association deployment failed.</p>
577
577
  * @public
578
578
  */
579
- StateReason?: AssociationStateReason;
579
+ StateReason?: AssociationStateReason | undefined;
580
580
  /**
581
581
  * <p>The identifier of the WorkSpace.</p>
582
582
  * @public
583
583
  */
584
- WorkspaceId?: string;
584
+ WorkspaceId?: string | undefined;
585
585
  }
586
586
  /**
587
587
  * @public
@@ -591,7 +591,7 @@ export interface AssociateWorkspaceApplicationResult {
591
591
  * <p>Information about the association between the specified WorkSpace and the specified application.</p>
592
592
  * @public
593
593
  */
594
- Association?: WorkspaceResourceAssociation;
594
+ Association?: WorkspaceResourceAssociation | undefined;
595
595
  }
596
596
  /**
597
597
  * <p>The compute type of the WorkSpace is not compatible with the application.</p>
@@ -652,7 +652,7 @@ export declare class ResourceInUseException extends __BaseException {
652
652
  * <p>The ID of the resource that is in use.</p>
653
653
  * @public
654
654
  */
655
- ResourceId?: string;
655
+ ResourceId?: string | undefined;
656
656
  /**
657
657
  * @internal
658
658
  */
@@ -693,12 +693,12 @@ export interface IpRuleItem {
693
693
  * <p>The IP address range, in CIDR notation.</p>
694
694
  * @public
695
695
  */
696
- ipRule?: string;
696
+ ipRule?: string | undefined;
697
697
  /**
698
698
  * <p>The description.</p>
699
699
  * @public
700
700
  */
701
- ruleDesc?: string;
701
+ ruleDesc?: string | undefined;
702
702
  }
703
703
  /**
704
704
  * @public
@@ -771,7 +771,7 @@ export interface ComputeType {
771
771
  * <p>The compute type.</p>
772
772
  * @public
773
773
  */
774
- Name?: Compute;
774
+ Name?: Compute | undefined;
775
775
  }
776
776
  /**
777
777
  * <p>Describes the root volume for a WorkSpace bundle.</p>
@@ -817,64 +817,64 @@ export interface WorkspaceBundle {
817
817
  * <p>The identifier of the bundle.</p>
818
818
  * @public
819
819
  */
820
- BundleId?: string;
820
+ BundleId?: string | undefined;
821
821
  /**
822
822
  * <p>The name of the bundle.</p>
823
823
  * @public
824
824
  */
825
- Name?: string;
825
+ Name?: string | undefined;
826
826
  /**
827
827
  * <p>The owner of the bundle. This is the account identifier of the owner, or
828
828
  * <code>AMAZON</code> if the bundle is provided by Amazon Web Services.</p>
829
829
  * @public
830
830
  */
831
- Owner?: string;
831
+ Owner?: string | undefined;
832
832
  /**
833
833
  * <p>The description of the bundle.</p>
834
834
  * @public
835
835
  */
836
- Description?: string;
836
+ Description?: string | undefined;
837
837
  /**
838
838
  * <p>The identifier of the image that was used to create the bundle.</p>
839
839
  * @public
840
840
  */
841
- ImageId?: string;
841
+ ImageId?: string | undefined;
842
842
  /**
843
843
  * <p>The size of the root volume.</p>
844
844
  * @public
845
845
  */
846
- RootStorage?: RootStorage;
846
+ RootStorage?: RootStorage | undefined;
847
847
  /**
848
848
  * <p>The size of the user volume.</p>
849
849
  * @public
850
850
  */
851
- UserStorage?: UserStorage;
851
+ UserStorage?: UserStorage | undefined;
852
852
  /**
853
853
  * <p>The compute type of the bundle. For more information, see
854
854
  * <a href="http://aws.amazon.com/workspaces/details/#Amazon_WorkSpaces_Bundles">Amazon WorkSpaces Bundles</a>.</p>
855
855
  * @public
856
856
  */
857
- ComputeType?: ComputeType;
857
+ ComputeType?: ComputeType | undefined;
858
858
  /**
859
859
  * <p>The last time that the bundle was updated.</p>
860
860
  * @public
861
861
  */
862
- LastUpdatedTime?: Date;
862
+ LastUpdatedTime?: Date | undefined;
863
863
  /**
864
864
  * <p>The time when the bundle was created.</p>
865
865
  * @public
866
866
  */
867
- CreationTime?: Date;
867
+ CreationTime?: Date | undefined;
868
868
  /**
869
869
  * <p>The state of the WorkSpace bundle.</p>
870
870
  * @public
871
871
  */
872
- State?: WorkspaceBundleState;
872
+ State?: WorkspaceBundleState | undefined;
873
873
  /**
874
874
  * <p>The type of WorkSpace bundle.</p>
875
875
  * @public
876
876
  */
877
- BundleType?: BundleType;
877
+ BundleType?: BundleType | undefined;
878
878
  }
879
879
  /**
880
880
  * <p>Describes the association between an application and a bundle resource.</p>
@@ -885,37 +885,37 @@ export interface BundleResourceAssociation {
885
885
  * <p>The identifier of the associated resource.</p>
886
886
  * @public
887
887
  */
888
- AssociatedResourceId?: string;
888
+ AssociatedResourceId?: string | undefined;
889
889
  /**
890
890
  * <p>The resource type of the associated resources.</p>
891
891
  * @public
892
892
  */
893
- AssociatedResourceType?: BundleAssociatedResourceType;
893
+ AssociatedResourceType?: BundleAssociatedResourceType | undefined;
894
894
  /**
895
895
  * <p>The identifier of the bundle.</p>
896
896
  * @public
897
897
  */
898
- BundleId?: string;
898
+ BundleId?: string | undefined;
899
899
  /**
900
900
  * <p>The time the association is created.</p>
901
901
  * @public
902
902
  */
903
- Created?: Date;
903
+ Created?: Date | undefined;
904
904
  /**
905
905
  * <p>The time the association status was last updated.</p>
906
906
  * @public
907
907
  */
908
- LastUpdatedTime?: Date;
908
+ LastUpdatedTime?: Date | undefined;
909
909
  /**
910
910
  * <p>The status of the bundle resource association.</p>
911
911
  * @public
912
912
  */
913
- State?: AssociationState;
913
+ State?: AssociationState | undefined;
914
914
  /**
915
915
  * <p>The reason the association deployment failed.</p>
916
916
  * @public
917
917
  */
918
- StateReason?: AssociationStateReason;
918
+ StateReason?: AssociationStateReason | undefined;
919
919
  }
920
920
  /**
921
921
  * <p>Describes the user capacity for a pool of WorkSpaces.</p>
@@ -981,12 +981,12 @@ export interface CertificateBasedAuthProperties {
981
981
  * <p>The status of the certificate-based authentication properties.</p>
982
982
  * @public
983
983
  */
984
- Status?: CertificateBasedAuthStatusEnum;
984
+ Status?: CertificateBasedAuthStatusEnum | undefined;
985
985
  /**
986
986
  * <p>The Amazon Resource Name (ARN) of the Amazon Web Services Certificate Manager Private CA resource.</p>
987
987
  * @public
988
988
  */
989
- CertificateAuthorityArn?: string;
989
+ CertificateAuthorityArn?: string | undefined;
990
990
  }
991
991
  /**
992
992
  * @public
@@ -1039,7 +1039,7 @@ export interface ClientProperties {
1039
1039
  * credentials. </p>
1040
1040
  * @public
1041
1041
  */
1042
- ReconnectEnabled?: ReconnectEnum;
1042
+ ReconnectEnabled?: ReconnectEnum | undefined;
1043
1043
  /**
1044
1044
  * <p>Specifies whether users can upload diagnostic log files of Amazon WorkSpaces client directly to
1045
1045
  * WorkSpaces to troubleshoot issues when using the WorkSpaces client.
@@ -1047,7 +1047,7 @@ export interface ClientProperties {
1047
1047
  * users in the specified directory.</p>
1048
1048
  * @public
1049
1049
  */
1050
- LogUploadEnabled?: LogUploadEnum;
1050
+ LogUploadEnabled?: LogUploadEnum | undefined;
1051
1051
  }
1052
1052
  /**
1053
1053
  * <p>Information about the Amazon WorkSpaces client.</p>
@@ -1058,12 +1058,12 @@ export interface ClientPropertiesResult {
1058
1058
  * <p>The resource identifier, in the form of a directory ID.</p>
1059
1059
  * @public
1060
1060
  */
1061
- ResourceId?: string;
1061
+ ResourceId?: string | undefined;
1062
1062
  /**
1063
1063
  * <p>Information about the Amazon WorkSpaces client.</p>
1064
1064
  * @public
1065
1065
  */
1066
- ClientProperties?: ClientProperties;
1066
+ ClientProperties?: ClientProperties | undefined;
1067
1067
  }
1068
1068
  /**
1069
1069
  * <p>Describes an Amazon Connect client add-in.</p>
@@ -1074,22 +1074,22 @@ export interface ConnectClientAddIn {
1074
1074
  * <p>The client add-in identifier.</p>
1075
1075
  * @public
1076
1076
  */
1077
- AddInId?: string;
1077
+ AddInId?: string | undefined;
1078
1078
  /**
1079
1079
  * <p>The directory identifier for which the client add-in is configured.</p>
1080
1080
  * @public
1081
1081
  */
1082
- ResourceId?: string;
1082
+ ResourceId?: string | undefined;
1083
1083
  /**
1084
1084
  * <p>The name of the client add in.</p>
1085
1085
  * @public
1086
1086
  */
1087
- Name?: string;
1087
+ Name?: string | undefined;
1088
1088
  /**
1089
1089
  * <p>The endpoint URL of the client add-in.</p>
1090
1090
  * @public
1091
1091
  */
1092
- URL?: string;
1092
+ URL?: string | undefined;
1093
1093
  }
1094
1094
  /**
1095
1095
  * <p>Describes a connection alias association that is used for cross-Region redirection. For
@@ -1102,24 +1102,24 @@ export interface ConnectionAliasAssociation {
1102
1102
  * <p>The association status of the connection alias.</p>
1103
1103
  * @public
1104
1104
  */
1105
- AssociationStatus?: AssociationStatus;
1105
+ AssociationStatus?: AssociationStatus | undefined;
1106
1106
  /**
1107
1107
  * <p>The identifier of the Amazon Web Services account that associated the connection alias
1108
1108
  * with a directory.</p>
1109
1109
  * @public
1110
1110
  */
1111
- AssociatedAccountId?: string;
1111
+ AssociatedAccountId?: string | undefined;
1112
1112
  /**
1113
1113
  * <p>The identifier of the directory associated with a connection alias.</p>
1114
1114
  * @public
1115
1115
  */
1116
- ResourceId?: string;
1116
+ ResourceId?: string | undefined;
1117
1117
  /**
1118
1118
  * <p>The identifier of the connection alias association. You use the connection identifier in
1119
1119
  * the DNS TXT record when you're configuring your DNS routing policies.</p>
1120
1120
  * @public
1121
1121
  */
1122
- ConnectionIdentifier?: string;
1122
+ ConnectionIdentifier?: string | undefined;
1123
1123
  }
1124
1124
  /**
1125
1125
  * @public
@@ -1147,27 +1147,27 @@ export interface ConnectionAlias {
1147
1147
  * <code>www.example.com</code>.</p>
1148
1148
  * @public
1149
1149
  */
1150
- ConnectionString?: string;
1150
+ ConnectionString?: string | undefined;
1151
1151
  /**
1152
1152
  * <p>The identifier of the connection alias.</p>
1153
1153
  * @public
1154
1154
  */
1155
- AliasId?: string;
1155
+ AliasId?: string | undefined;
1156
1156
  /**
1157
1157
  * <p>The current state of the connection alias.</p>
1158
1158
  * @public
1159
1159
  */
1160
- State?: ConnectionAliasState;
1160
+ State?: ConnectionAliasState | undefined;
1161
1161
  /**
1162
1162
  * <p>The identifier of the Amazon Web Services account that owns the connection alias.</p>
1163
1163
  * @public
1164
1164
  */
1165
- OwnerAccountId?: string;
1165
+ OwnerAccountId?: string | undefined;
1166
1166
  /**
1167
1167
  * <p>The association status of the connection alias.</p>
1168
1168
  * @public
1169
1169
  */
1170
- Associations?: ConnectionAliasAssociation[];
1170
+ Associations?: ConnectionAliasAssociation[] | undefined;
1171
1171
  }
1172
1172
  /**
1173
1173
  * <p>Describes the permissions for a connection alias. Connection aliases are used for
@@ -1216,7 +1216,7 @@ export interface Tag {
1216
1216
  * <p>The value of the tag.</p>
1217
1217
  * @public
1218
1218
  */
1219
- Value?: string;
1219
+ Value?: string | undefined;
1220
1220
  }
1221
1221
  /**
1222
1222
  * @public
@@ -1231,7 +1231,7 @@ export interface CopyWorkspaceImageRequest {
1231
1231
  * <p>A description of the image.</p>
1232
1232
  * @public
1233
1233
  */
1234
- Description?: string;
1234
+ Description?: string | undefined;
1235
1235
  /**
1236
1236
  * <p>The identifier of the source image.</p>
1237
1237
  * @public
@@ -1246,7 +1246,7 @@ export interface CopyWorkspaceImageRequest {
1246
1246
  * <p>The tags for the image.</p>
1247
1247
  * @public
1248
1248
  */
1249
- Tags?: Tag[];
1249
+ Tags?: Tag[] | undefined;
1250
1250
  }
1251
1251
  /**
1252
1252
  * @public
@@ -1256,7 +1256,7 @@ export interface CopyWorkspaceImageResult {
1256
1256
  * <p>The identifier of the image.</p>
1257
1257
  * @public
1258
1258
  */
1259
- ImageId?: string;
1259
+ ImageId?: string | undefined;
1260
1260
  }
1261
1261
  /**
1262
1262
  * <p>The specified resource is not available.</p>
@@ -1269,7 +1269,7 @@ export declare class ResourceUnavailableException extends __BaseException {
1269
1269
  * <p>The identifier of the resource that is not available.</p>
1270
1270
  * @public
1271
1271
  */
1272
- ResourceId?: string;
1272
+ ResourceId?: string | undefined;
1273
1273
  /**
1274
1274
  * @internal
1275
1275
  */
@@ -1288,7 +1288,7 @@ export interface CreateAccountLinkInvitationRequest {
1288
1288
  * <p>A string of up to 64 ASCII characters that Amazon EFS uses to ensure idempotent creation.</p>
1289
1289
  * @public
1290
1290
  */
1291
- ClientToken?: string;
1291
+ ClientToken?: string | undefined;
1292
1292
  }
1293
1293
  /**
1294
1294
  * @public
@@ -1298,7 +1298,7 @@ export interface CreateAccountLinkInvitationResult {
1298
1298
  * <p>Information about the account link.</p>
1299
1299
  * @public
1300
1300
  */
1301
- AccountLink?: AccountLink;
1301
+ AccountLink?: AccountLink | undefined;
1302
1302
  }
1303
1303
  /**
1304
1304
  * @public
@@ -1328,7 +1328,7 @@ export interface CreateConnectClientAddInResult {
1328
1328
  * <p>The client add-in identifier.</p>
1329
1329
  * @public
1330
1330
  */
1331
- AddInId?: string;
1331
+ AddInId?: string | undefined;
1332
1332
  }
1333
1333
  /**
1334
1334
  * <p>The resource could not be created.</p>
@@ -1361,7 +1361,7 @@ export interface CreateConnectionAliasRequest {
1361
1361
  * <p>The tags to associate with the connection alias.</p>
1362
1362
  * @public
1363
1363
  */
1364
- Tags?: Tag[];
1364
+ Tags?: Tag[] | undefined;
1365
1365
  }
1366
1366
  /**
1367
1367
  * @public
@@ -1371,7 +1371,7 @@ export interface CreateConnectionAliasResult {
1371
1371
  * <p>The identifier of the connection alias.</p>
1372
1372
  * @public
1373
1373
  */
1374
- AliasId?: string;
1374
+ AliasId?: string | undefined;
1375
1375
  }
1376
1376
  /**
1377
1377
  * @public
@@ -1386,17 +1386,17 @@ export interface CreateIpGroupRequest {
1386
1386
  * <p>The description of the group.</p>
1387
1387
  * @public
1388
1388
  */
1389
- GroupDesc?: string;
1389
+ GroupDesc?: string | undefined;
1390
1390
  /**
1391
1391
  * <p>The rules to add to the group.</p>
1392
1392
  * @public
1393
1393
  */
1394
- UserRules?: IpRuleItem[];
1394
+ UserRules?: IpRuleItem[] | undefined;
1395
1395
  /**
1396
1396
  * <p>The tags. Each WorkSpaces resource can have a maximum of 50 tags.</p>
1397
1397
  * @public
1398
1398
  */
1399
- Tags?: Tag[];
1399
+ Tags?: Tag[] | undefined;
1400
1400
  }
1401
1401
  /**
1402
1402
  * @public
@@ -1406,7 +1406,7 @@ export interface CreateIpGroupResult {
1406
1406
  * <p>The identifier of the group.</p>
1407
1407
  * @public
1408
1408
  */
1409
- GroupId?: string;
1409
+ GroupId?: string | undefined;
1410
1410
  }
1411
1411
  /**
1412
1412
  * @public
@@ -1434,7 +1434,7 @@ export interface StandbyWorkspace {
1434
1434
  * <p>The volume encryption key of the standby WorkSpace.</p>
1435
1435
  * @public
1436
1436
  */
1437
- VolumeEncryptionKey?: string;
1437
+ VolumeEncryptionKey?: string | undefined;
1438
1438
  /**
1439
1439
  * <p>The identifier of the directory for the standby WorkSpace.</p>
1440
1440
  * @public
@@ -1444,12 +1444,12 @@ export interface StandbyWorkspace {
1444
1444
  * <p>The tags associated with the standby WorkSpace.</p>
1445
1445
  * @public
1446
1446
  */
1447
- Tags?: Tag[];
1447
+ Tags?: Tag[] | undefined;
1448
1448
  /**
1449
1449
  * <p>Indicates whether data replication is enabled, and if enabled, the type of data replication.</p>
1450
1450
  * @public
1451
1451
  */
1452
- DataReplication?: DataReplication;
1452
+ DataReplication?: DataReplication | undefined;
1453
1453
  }
1454
1454
  /**
1455
1455
  * @public
@@ -1475,17 +1475,17 @@ export interface FailedCreateStandbyWorkspacesRequest {
1475
1475
  * <p>Information about the standby WorkSpace that could not be created.</p>
1476
1476
  * @public
1477
1477
  */
1478
- StandbyWorkspaceRequest?: StandbyWorkspace;
1478
+ StandbyWorkspaceRequest?: StandbyWorkspace | undefined;
1479
1479
  /**
1480
1480
  * <p>The error code that is returned if the standby WorkSpace could not be created.</p>
1481
1481
  * @public
1482
1482
  */
1483
- ErrorCode?: string;
1483
+ ErrorCode?: string | undefined;
1484
1484
  /**
1485
1485
  * <p>The text of the error message that is returned if the standby WorkSpace could not be created.</p>
1486
1486
  * @public
1487
1487
  */
1488
- ErrorMessage?: string;
1488
+ ErrorMessage?: string | undefined;
1489
1489
  }
1490
1490
  /**
1491
1491
  * @public
@@ -1528,22 +1528,22 @@ export interface PendingCreateStandbyWorkspacesRequest {
1528
1528
  * before the WorkSpace is created, the information returned can be incomplete. </p>
1529
1529
  * @public
1530
1530
  */
1531
- UserName?: string;
1531
+ UserName?: string | undefined;
1532
1532
  /**
1533
1533
  * <p>The identifier of the directory for the standby WorkSpace.</p>
1534
1534
  * @public
1535
1535
  */
1536
- DirectoryId?: string;
1536
+ DirectoryId?: string | undefined;
1537
1537
  /**
1538
1538
  * <p>The operational state of the standby WorkSpace.</p>
1539
1539
  * @public
1540
1540
  */
1541
- State?: WorkspaceState;
1541
+ State?: WorkspaceState | undefined;
1542
1542
  /**
1543
1543
  * <p>The identifier of the standby WorkSpace.</p>
1544
1544
  * @public
1545
1545
  */
1546
- WorkspaceId?: string;
1546
+ WorkspaceId?: string | undefined;
1547
1547
  }
1548
1548
  /**
1549
1549
  * @public
@@ -1553,12 +1553,12 @@ export interface CreateStandbyWorkspacesResult {
1553
1553
  * <p>Information about the standby WorkSpace that could not be created. </p>
1554
1554
  * @public
1555
1555
  */
1556
- FailedStandbyRequests?: FailedCreateStandbyWorkspacesRequest[];
1556
+ FailedStandbyRequests?: FailedCreateStandbyWorkspacesRequest[] | undefined;
1557
1557
  /**
1558
1558
  * <p>Information about the standby WorkSpace that was created.</p>
1559
1559
  * @public
1560
1560
  */
1561
- PendingStandbyRequests?: PendingCreateStandbyWorkspacesRequest[];
1561
+ PendingStandbyRequests?: PendingCreateStandbyWorkspacesRequest[] | undefined;
1562
1562
  }
1563
1563
  /**
1564
1564
  * @public
@@ -1610,7 +1610,7 @@ export interface CreateUpdatedWorkspaceImageRequest {
1610
1610
  * </note>
1611
1611
  * @public
1612
1612
  */
1613
- Tags?: Tag[];
1613
+ Tags?: Tag[] | undefined;
1614
1614
  }
1615
1615
  /**
1616
1616
  * @public
@@ -1620,7 +1620,7 @@ export interface CreateUpdatedWorkspaceImageResult {
1620
1620
  * <p>The identifier of the new updated WorkSpace image.</p>
1621
1621
  * @public
1622
1622
  */
1623
- ImageId?: string;
1623
+ ImageId?: string | undefined;
1624
1624
  }
1625
1625
  /**
1626
1626
  * @public
@@ -1655,7 +1655,7 @@ export interface CreateWorkspaceBundleRequest {
1655
1655
  * <p>Describes the root volume for a WorkSpace bundle.</p>
1656
1656
  * @public
1657
1657
  */
1658
- RootStorage?: RootStorage;
1658
+ RootStorage?: RootStorage | undefined;
1659
1659
  /**
1660
1660
  * <p>The tags associated with the bundle.</p>
1661
1661
  * <note>
@@ -1664,7 +1664,7 @@ export interface CreateWorkspaceBundleRequest {
1664
1664
  * </note>
1665
1665
  * @public
1666
1666
  */
1667
- Tags?: Tag[];
1667
+ Tags?: Tag[] | undefined;
1668
1668
  }
1669
1669
  /**
1670
1670
  * @public
@@ -1674,7 +1674,7 @@ export interface CreateWorkspaceBundleResult {
1674
1674
  * <p>Describes a WorkSpace bundle.</p>
1675
1675
  * @public
1676
1676
  */
1677
- WorkspaceBundle?: WorkspaceBundle;
1677
+ WorkspaceBundle?: WorkspaceBundle | undefined;
1678
1678
  }
1679
1679
  /**
1680
1680
  * @public
@@ -1701,7 +1701,7 @@ export interface CreateWorkspaceImageRequest {
1701
1701
  * your IAM user permission to use <code>workspaces:CreateTags</code>.</p>
1702
1702
  * @public
1703
1703
  */
1704
- Tags?: Tag[];
1704
+ Tags?: Tag[] | undefined;
1705
1705
  }
1706
1706
  /**
1707
1707
  * @public
@@ -1724,7 +1724,7 @@ export interface OperatingSystem {
1724
1724
  * <p>The operating system.</p>
1725
1725
  * @public
1726
1726
  */
1727
- Type?: OperatingSystemType;
1727
+ Type?: OperatingSystemType | undefined;
1728
1728
  }
1729
1729
  /**
1730
1730
  * @public
@@ -1759,27 +1759,27 @@ export interface CreateWorkspaceImageResult {
1759
1759
  * <p>The identifier of the new WorkSpace image.</p>
1760
1760
  * @public
1761
1761
  */
1762
- ImageId?: string;
1762
+ ImageId?: string | undefined;
1763
1763
  /**
1764
1764
  * <p>The name of the image.</p>
1765
1765
  * @public
1766
1766
  */
1767
- Name?: string;
1767
+ Name?: string | undefined;
1768
1768
  /**
1769
1769
  * <p>The description of the image.</p>
1770
1770
  * @public
1771
1771
  */
1772
- Description?: string;
1772
+ Description?: string | undefined;
1773
1773
  /**
1774
1774
  * <p>The operating system that the image is running.</p>
1775
1775
  * @public
1776
1776
  */
1777
- OperatingSystem?: OperatingSystem;
1777
+ OperatingSystem?: OperatingSystem | undefined;
1778
1778
  /**
1779
1779
  * <p>The availability status of the image.</p>
1780
1780
  * @public
1781
1781
  */
1782
- State?: WorkspaceImageState;
1782
+ State?: WorkspaceImageState | undefined;
1783
1783
  /**
1784
1784
  * <p>Specifies whether the image is running on dedicated hardware.
1785
1785
  * When Bring Your Own License (BYOL) is enabled, this value is set
@@ -1788,17 +1788,17 @@ export interface CreateWorkspaceImageResult {
1788
1788
  * Bring Your Own Windows Desktop Images.</a>.</p>
1789
1789
  * @public
1790
1790
  */
1791
- RequiredTenancy?: WorkspaceImageRequiredTenancy;
1791
+ RequiredTenancy?: WorkspaceImageRequiredTenancy | undefined;
1792
1792
  /**
1793
1793
  * <p>The date when the image was created.</p>
1794
1794
  * @public
1795
1795
  */
1796
- Created?: Date;
1796
+ Created?: Date | undefined;
1797
1797
  /**
1798
1798
  * <p>The identifier of the Amazon Web Services account that owns the image.</p>
1799
1799
  * @public
1800
1800
  */
1801
- OwnerAccountId?: string;
1801
+ OwnerAccountId?: string | undefined;
1802
1802
  }
1803
1803
  /**
1804
1804
  * @public
@@ -1865,33 +1865,33 @@ export interface WorkspaceProperties {
1865
1865
  * </p>
1866
1866
  * @public
1867
1867
  */
1868
- RunningMode?: RunningMode;
1868
+ RunningMode?: RunningMode | undefined;
1869
1869
  /**
1870
1870
  * <p>The time after a user logs off when WorkSpaces are automatically stopped. Configured in
1871
1871
  * 60-minute intervals.</p>
1872
1872
  * @public
1873
1873
  */
1874
- RunningModeAutoStopTimeoutInMinutes?: number;
1874
+ RunningModeAutoStopTimeoutInMinutes?: number | undefined;
1875
1875
  /**
1876
1876
  * <p>The size of the root volume. For important information about how to modify the size of
1877
1877
  * the root and user volumes, see <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/modify-workspaces.html">Modify a
1878
1878
  * WorkSpace</a>.</p>
1879
1879
  * @public
1880
1880
  */
1881
- RootVolumeSizeGib?: number;
1881
+ RootVolumeSizeGib?: number | undefined;
1882
1882
  /**
1883
1883
  * <p>The size of the user storage. For important information about how to modify the size of
1884
1884
  * the root and user volumes, see <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/modify-workspaces.html">Modify a
1885
1885
  * WorkSpace</a>.</p>
1886
1886
  * @public
1887
1887
  */
1888
- UserVolumeSizeGib?: number;
1888
+ UserVolumeSizeGib?: number | undefined;
1889
1889
  /**
1890
1890
  * <p>The compute type. For more information, see <a href="http://aws.amazon.com/workspaces/details/#Amazon_WorkSpaces_Bundles">Amazon WorkSpaces
1891
1891
  * Bundles</a>.</p>
1892
1892
  * @public
1893
1893
  */
1894
- ComputeTypeName?: Compute;
1894
+ ComputeTypeName?: Compute | undefined;
1895
1895
  /**
1896
1896
  * <p>The protocol. For more information, see
1897
1897
  * <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/amazon-workspaces-protocols.html">
@@ -1912,12 +1912,12 @@ export interface WorkspaceProperties {
1912
1912
  * </note>
1913
1913
  * @public
1914
1914
  */
1915
- Protocols?: Protocol[];
1915
+ Protocols?: Protocol[] | undefined;
1916
1916
  /**
1917
1917
  * <p>The name of the operating system.</p>
1918
1918
  * @public
1919
1919
  */
1920
- OperatingSystemName?: OperatingSystemName;
1920
+ OperatingSystemName?: OperatingSystemName | undefined;
1921
1921
  }
1922
1922
  /**
1923
1923
  * <p>Describes the information used to create a WorkSpace.</p>
@@ -1945,27 +1945,27 @@ export interface WorkspaceRequest {
1945
1945
  * Amazon WorkSpaces does not support asymmetric KMS keys.</p>
1946
1946
  * @public
1947
1947
  */
1948
- VolumeEncryptionKey?: string;
1948
+ VolumeEncryptionKey?: string | undefined;
1949
1949
  /**
1950
1950
  * <p>Indicates whether the data stored on the user volume is encrypted.</p>
1951
1951
  * @public
1952
1952
  */
1953
- UserVolumeEncryptionEnabled?: boolean;
1953
+ UserVolumeEncryptionEnabled?: boolean | undefined;
1954
1954
  /**
1955
1955
  * <p>Indicates whether the data stored on the root volume is encrypted.</p>
1956
1956
  * @public
1957
1957
  */
1958
- RootVolumeEncryptionEnabled?: boolean;
1958
+ RootVolumeEncryptionEnabled?: boolean | undefined;
1959
1959
  /**
1960
1960
  * <p>The WorkSpace properties.</p>
1961
1961
  * @public
1962
1962
  */
1963
- WorkspaceProperties?: WorkspaceProperties;
1963
+ WorkspaceProperties?: WorkspaceProperties | undefined;
1964
1964
  /**
1965
1965
  * <p>The tags for the WorkSpace.</p>
1966
1966
  * @public
1967
1967
  */
1968
- Tags?: Tag[];
1968
+ Tags?: Tag[] | undefined;
1969
1969
  /**
1970
1970
  * <p>The name of the user-decoupled WorkSpace.</p>
1971
1971
  * <note>
@@ -1977,7 +1977,7 @@ export interface WorkspaceRequest {
1977
1977
  * </note>
1978
1978
  * @public
1979
1979
  */
1980
- WorkspaceName?: string;
1980
+ WorkspaceName?: string | undefined;
1981
1981
  }
1982
1982
  /**
1983
1983
  * @public
@@ -1998,18 +1998,18 @@ export interface FailedCreateWorkspaceRequest {
1998
1998
  * <p>Information about the WorkSpace.</p>
1999
1999
  * @public
2000
2000
  */
2001
- WorkspaceRequest?: WorkspaceRequest;
2001
+ WorkspaceRequest?: WorkspaceRequest | undefined;
2002
2002
  /**
2003
2003
  * <p>The error code that is returned if the WorkSpace cannot be created.</p>
2004
2004
  * @public
2005
2005
  */
2006
- ErrorCode?: string;
2006
+ ErrorCode?: string | undefined;
2007
2007
  /**
2008
2008
  * <p>The text of the error message that is returned if the WorkSpace cannot be
2009
2009
  * created.</p>
2010
2010
  * @public
2011
2011
  */
2012
- ErrorMessage?: string;
2012
+ ErrorMessage?: string | undefined;
2013
2013
  }
2014
2014
  /**
2015
2015
  * <p>Describes the data replication settings.</p>
@@ -2020,13 +2020,13 @@ export interface DataReplicationSettings {
2020
2020
  * <p>Indicates whether data replication is enabled, and if enabled, the type of data replication.</p>
2021
2021
  * @public
2022
2022
  */
2023
- DataReplication?: DataReplication;
2023
+ DataReplication?: DataReplication | undefined;
2024
2024
  /**
2025
2025
  * <p>The date and time at which the last successful snapshot was taken of the
2026
2026
  * primary WorkSpace used for replicating data.</p>
2027
2027
  * @public
2028
2028
  */
2029
- RecoverySnapshotTime?: Date;
2029
+ RecoverySnapshotTime?: Date | undefined;
2030
2030
  }
2031
2031
  /**
2032
2032
  * @public
@@ -2062,12 +2062,12 @@ export interface ModificationState {
2062
2062
  * <p>The resource.</p>
2063
2063
  * @public
2064
2064
  */
2065
- Resource?: ModificationResourceEnum;
2065
+ Resource?: ModificationResourceEnum | undefined;
2066
2066
  /**
2067
2067
  * <p>The modification state.</p>
2068
2068
  * @public
2069
2069
  */
2070
- State?: ModificationStateEnum;
2070
+ State?: ModificationStateEnum | undefined;
2071
2071
  }
2072
2072
  /**
2073
2073
  * @public
@@ -2091,22 +2091,22 @@ export interface RelatedWorkspaceProperties {
2091
2091
  * <p>The identifier of the related WorkSpace.</p>
2092
2092
  * @public
2093
2093
  */
2094
- WorkspaceId?: string;
2094
+ WorkspaceId?: string | undefined;
2095
2095
  /**
2096
2096
  * <p>The Region of the related WorkSpace.</p>
2097
2097
  * @public
2098
2098
  */
2099
- Region?: string;
2099
+ Region?: string | undefined;
2100
2100
  /**
2101
2101
  * <p>Indicates the state of the WorkSpace.</p>
2102
2102
  * @public
2103
2103
  */
2104
- State?: WorkspaceState;
2104
+ State?: WorkspaceState | undefined;
2105
2105
  /**
2106
2106
  * <p>Indicates the type of WorkSpace.</p>
2107
2107
  * @public
2108
2108
  */
2109
- Type?: StandbyWorkspaceRelationshipType;
2109
+ Type?: StandbyWorkspaceRelationshipType | undefined;
2110
2110
  }
2111
2111
  /**
2112
2112
  * <p>Describes the properties of the related standby WorkSpaces. </p>
@@ -2117,18 +2117,18 @@ export interface StandbyWorkspacesProperties {
2117
2117
  * <p>The identifier of the standby WorkSpace</p>
2118
2118
  * @public
2119
2119
  */
2120
- StandbyWorkspaceId?: string;
2120
+ StandbyWorkspaceId?: string | undefined;
2121
2121
  /**
2122
2122
  * <p>Indicates whether data replication is enabled, and if enabled, the type of data replication.</p>
2123
2123
  * @public
2124
2124
  */
2125
- DataReplication?: DataReplication;
2125
+ DataReplication?: DataReplication | undefined;
2126
2126
  /**
2127
2127
  * <p>The date and time at which the last successful snapshot was taken of the
2128
2128
  * primary WorkSpace used for replicating data.</p>
2129
2129
  * @public
2130
2130
  */
2131
- RecoverySnapshotTime?: Date;
2131
+ RecoverySnapshotTime?: Date | undefined;
2132
2132
  }
2133
2133
  /**
2134
2134
  * <p>Describes a WorkSpace.</p>
@@ -2139,22 +2139,22 @@ export interface Workspace {
2139
2139
  * <p>The identifier of the WorkSpace.</p>
2140
2140
  * @public
2141
2141
  */
2142
- WorkspaceId?: string;
2142
+ WorkspaceId?: string | undefined;
2143
2143
  /**
2144
2144
  * <p>The identifier of the Directory Service directory for the WorkSpace.</p>
2145
2145
  * @public
2146
2146
  */
2147
- DirectoryId?: string;
2147
+ DirectoryId?: string | undefined;
2148
2148
  /**
2149
2149
  * <p>The user for the WorkSpace.</p>
2150
2150
  * @public
2151
2151
  */
2152
- UserName?: string;
2152
+ UserName?: string | undefined;
2153
2153
  /**
2154
2154
  * <p>The IP address of the WorkSpace.</p>
2155
2155
  * @public
2156
2156
  */
2157
- IpAddress?: string;
2157
+ IpAddress?: string | undefined;
2158
2158
  /**
2159
2159
  * <p>The operational state of the WorkSpace.</p>
2160
2160
  * <ul>
@@ -2237,81 +2237,81 @@ export interface Workspace {
2237
2237
  * </note>
2238
2238
  * @public
2239
2239
  */
2240
- State?: WorkspaceState;
2240
+ State?: WorkspaceState | undefined;
2241
2241
  /**
2242
2242
  * <p>The identifier of the bundle used to create the WorkSpace.</p>
2243
2243
  * @public
2244
2244
  */
2245
- BundleId?: string;
2245
+ BundleId?: string | undefined;
2246
2246
  /**
2247
2247
  * <p>The identifier of the subnet for the WorkSpace.</p>
2248
2248
  * @public
2249
2249
  */
2250
- SubnetId?: string;
2250
+ SubnetId?: string | undefined;
2251
2251
  /**
2252
2252
  * <p>The text of the error message that is returned if the WorkSpace cannot be
2253
2253
  * created.</p>
2254
2254
  * @public
2255
2255
  */
2256
- ErrorMessage?: string;
2256
+ ErrorMessage?: string | undefined;
2257
2257
  /**
2258
2258
  * <p>The error code that is returned if the WorkSpace cannot be created.</p>
2259
2259
  * @public
2260
2260
  */
2261
- ErrorCode?: string;
2261
+ ErrorCode?: string | undefined;
2262
2262
  /**
2263
2263
  * <p>The name of the WorkSpace, as seen by the operating system. The format of this name
2264
2264
  * varies. For more information, see <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/launch-workspaces-tutorials.html"> Launch a
2265
2265
  * WorkSpace</a>. </p>
2266
2266
  * @public
2267
2267
  */
2268
- ComputerName?: string;
2268
+ ComputerName?: string | undefined;
2269
2269
  /**
2270
2270
  * <p>The ARN of the symmetric KMS key used to encrypt data stored on your WorkSpace.
2271
2271
  * Amazon WorkSpaces does not support asymmetric KMS keys.</p>
2272
2272
  * @public
2273
2273
  */
2274
- VolumeEncryptionKey?: string;
2274
+ VolumeEncryptionKey?: string | undefined;
2275
2275
  /**
2276
2276
  * <p>Indicates whether the data stored on the user volume is encrypted.</p>
2277
2277
  * @public
2278
2278
  */
2279
- UserVolumeEncryptionEnabled?: boolean;
2279
+ UserVolumeEncryptionEnabled?: boolean | undefined;
2280
2280
  /**
2281
2281
  * <p>Indicates whether the data stored on the root volume is encrypted.</p>
2282
2282
  * @public
2283
2283
  */
2284
- RootVolumeEncryptionEnabled?: boolean;
2284
+ RootVolumeEncryptionEnabled?: boolean | undefined;
2285
2285
  /**
2286
2286
  * <p>The name of the user-decoupled WorkSpace.</p>
2287
2287
  * @public
2288
2288
  */
2289
- WorkspaceName?: string;
2289
+ WorkspaceName?: string | undefined;
2290
2290
  /**
2291
2291
  * <p>The properties of the WorkSpace.</p>
2292
2292
  * @public
2293
2293
  */
2294
- WorkspaceProperties?: WorkspaceProperties;
2294
+ WorkspaceProperties?: WorkspaceProperties | undefined;
2295
2295
  /**
2296
2296
  * <p>The modification states of the WorkSpace.</p>
2297
2297
  * @public
2298
2298
  */
2299
- ModificationStates?: ModificationState[];
2299
+ ModificationStates?: ModificationState[] | undefined;
2300
2300
  /**
2301
2301
  * <p>The standby WorkSpace or primary WorkSpace related to the specified WorkSpace.</p>
2302
2302
  * @public
2303
2303
  */
2304
- RelatedWorkspaces?: RelatedWorkspaceProperties[];
2304
+ RelatedWorkspaces?: RelatedWorkspaceProperties[] | undefined;
2305
2305
  /**
2306
2306
  * <p>Indicates the settings of the data replication.</p>
2307
2307
  * @public
2308
2308
  */
2309
- DataReplicationSettings?: DataReplicationSettings;
2309
+ DataReplicationSettings?: DataReplicationSettings | undefined;
2310
2310
  /**
2311
2311
  * <p>The properties of the standby WorkSpace</p>
2312
2312
  * @public
2313
2313
  */
2314
- StandbyWorkspacesProperties?: StandbyWorkspacesProperties[];
2314
+ StandbyWorkspacesProperties?: StandbyWorkspacesProperties[] | undefined;
2315
2315
  }
2316
2316
  /**
2317
2317
  * @public
@@ -2321,7 +2321,7 @@ export interface CreateWorkspacesResult {
2321
2321
  * <p>Information about the WorkSpaces that could not be created.</p>
2322
2322
  * @public
2323
2323
  */
2324
- FailedRequests?: FailedCreateWorkspaceRequest[];
2324
+ FailedRequests?: FailedCreateWorkspaceRequest[] | undefined;
2325
2325
  /**
2326
2326
  * <p>Information about the WorkSpaces that were created.</p>
2327
2327
  * <p>Because this operation is asynchronous, the identifier returned is not immediately
@@ -2329,7 +2329,7 @@ export interface CreateWorkspacesResult {
2329
2329
  * can be incomplete.</p>
2330
2330
  * @public
2331
2331
  */
2332
- PendingRequests?: Workspace[];
2332
+ PendingRequests?: Workspace[] | undefined;
2333
2333
  }
2334
2334
  /**
2335
2335
  * <p>Describes the timeout settings for a pool of WorkSpaces.</p>
@@ -2343,12 +2343,12 @@ export interface TimeoutSettings {
2343
2343
  * to a new session with a new streaming instance.</p>
2344
2344
  * @public
2345
2345
  */
2346
- DisconnectTimeoutInSeconds?: number;
2346
+ DisconnectTimeoutInSeconds?: number | undefined;
2347
2347
  /**
2348
2348
  * <p>The amount of time in seconds a connection will stay active while idle.</p>
2349
2349
  * @public
2350
2350
  */
2351
- IdleDisconnectTimeoutInSeconds?: number;
2351
+ IdleDisconnectTimeoutInSeconds?: number | undefined;
2352
2352
  /**
2353
2353
  * <p>Specifies the maximum amount of time, in seconds, that a streaming session can remain active.
2354
2354
  * If users are still connected to a streaming instance five minutes before this limit is reached,
@@ -2356,7 +2356,7 @@ export interface TimeoutSettings {
2356
2356
  * the instance is terminated and replaced by a new instance.</p>
2357
2357
  * @public
2358
2358
  */
2359
- MaxUserDurationInSeconds?: number;
2359
+ MaxUserDurationInSeconds?: number | undefined;
2360
2360
  }
2361
2361
  /**
2362
2362
  * @public
@@ -2391,17 +2391,17 @@ export interface CreateWorkspacesPoolRequest {
2391
2391
  * <p>The tags for the pool.</p>
2392
2392
  * @public
2393
2393
  */
2394
- Tags?: Tag[];
2394
+ Tags?: Tag[] | undefined;
2395
2395
  /**
2396
2396
  * <p>Indicates the application settings of the pool.</p>
2397
2397
  * @public
2398
2398
  */
2399
- ApplicationSettings?: ApplicationSettingsRequest;
2399
+ ApplicationSettings?: ApplicationSettingsRequest | undefined;
2400
2400
  /**
2401
2401
  * <p>Indicates the timeout settings of the pool.</p>
2402
2402
  * @public
2403
2403
  */
2404
- TimeoutSettings?: TimeoutSettings;
2404
+ TimeoutSettings?: TimeoutSettings | undefined;
2405
2405
  }
2406
2406
  /**
2407
2407
  * @public
@@ -2462,12 +2462,12 @@ export interface WorkspacesPoolError {
2462
2462
  * <p>The error code.</p>
2463
2463
  * @public
2464
2464
  */
2465
- ErrorCode?: WorkspacesPoolErrorCode;
2465
+ ErrorCode?: WorkspacesPoolErrorCode | undefined;
2466
2466
  /**
2467
2467
  * <p>The error message.</p>
2468
2468
  * @public
2469
2469
  */
2470
- ErrorMessage?: string;
2470
+ ErrorMessage?: string | undefined;
2471
2471
  }
2472
2472
  /**
2473
2473
  * @public
@@ -2515,7 +2515,7 @@ export interface WorkspacesPool {
2515
2515
  * <p>The description of the pool.</p>
2516
2516
  * @public
2517
2517
  */
2518
- Description?: string;
2518
+ Description?: string | undefined;
2519
2519
  /**
2520
2520
  * <p>The current state of the pool.</p>
2521
2521
  * @public
@@ -2540,12 +2540,12 @@ export interface WorkspacesPool {
2540
2540
  * <p>The pool errors.</p>
2541
2541
  * @public
2542
2542
  */
2543
- Errors?: WorkspacesPoolError[];
2543
+ Errors?: WorkspacesPoolError[] | undefined;
2544
2544
  /**
2545
2545
  * <p>The persistent application settings for users of the pool.</p>
2546
2546
  * @public
2547
2547
  */
2548
- ApplicationSettings?: ApplicationSettingsResponse;
2548
+ ApplicationSettings?: ApplicationSettingsResponse | undefined;
2549
2549
  /**
2550
2550
  * <p>The amount of time that a pool session remains active after users disconnect.
2551
2551
  * If they try to reconnect to the pool session after a disconnection or network interruption
@@ -2553,7 +2553,7 @@ export interface WorkspacesPool {
2553
2553
  * Otherwise, they are connected to a new session with a new pool instance.</p>
2554
2554
  * @public
2555
2555
  */
2556
- TimeoutSettings?: TimeoutSettings;
2556
+ TimeoutSettings?: TimeoutSettings | undefined;
2557
2557
  }
2558
2558
  /**
2559
2559
  * @public
@@ -2563,7 +2563,7 @@ export interface CreateWorkspacesPoolResult {
2563
2563
  * <p>Indicates the pool to create.</p>
2564
2564
  * @public
2565
2565
  */
2566
- WorkspacesPool?: WorkspacesPool;
2566
+ WorkspacesPool?: WorkspacesPool | undefined;
2567
2567
  }
2568
2568
  /**
2569
2569
  * @public
@@ -2602,7 +2602,7 @@ export interface DefaultClientBrandingAttributes {
2602
2602
  * <p>The logo. The only image format accepted is a binary data object that is converted from a <code>.png</code> file.</p>
2603
2603
  * @public
2604
2604
  */
2605
- LogoUrl?: string;
2605
+ LogoUrl?: string | undefined;
2606
2606
  /**
2607
2607
  * <p>The support email. The company's customer support email address.</p>
2608
2608
  * <note>
@@ -2619,7 +2619,7 @@ export interface DefaultClientBrandingAttributes {
2619
2619
  * </note>
2620
2620
  * @public
2621
2621
  */
2622
- SupportEmail?: string;
2622
+ SupportEmail?: string | undefined;
2623
2623
  /**
2624
2624
  * <p>The support link. The link for the company's customer support page for their
2625
2625
  * WorkSpace.</p>
@@ -2637,13 +2637,13 @@ export interface DefaultClientBrandingAttributes {
2637
2637
  * </note>
2638
2638
  * @public
2639
2639
  */
2640
- SupportLink?: string;
2640
+ SupportLink?: string | undefined;
2641
2641
  /**
2642
2642
  * <p>The forgotten password link. This is the web address that users can go to if they forget
2643
2643
  * the password for their WorkSpace.</p>
2644
2644
  * @public
2645
2645
  */
2646
- ForgotPasswordLink?: string;
2646
+ ForgotPasswordLink?: string | undefined;
2647
2647
  /**
2648
2648
  * <p>The login message. Specified as a key value pair, in which the key is a locale and the
2649
2649
  * value is the localized message for that locale. The only key supported is
@@ -2651,7 +2651,7 @@ export interface DefaultClientBrandingAttributes {
2651
2651
  * i, li, ol, p, pre, q, small, span, strike, strong, sub, sup, u, ul</code>.</p>
2652
2652
  * @public
2653
2653
  */
2654
- LoginMessage?: Record<string, string>;
2654
+ LoginMessage?: Record<string, string> | undefined;
2655
2655
  }
2656
2656
  /**
2657
2657
  * <p>The default client branding attributes to be imported. These attributes display on the
@@ -2667,7 +2667,7 @@ export interface DefaultImportClientBrandingAttributes {
2667
2667
  * <p>The logo. The only image format accepted is a binary data object that is converted from a <code>.png</code> file.</p>
2668
2668
  * @public
2669
2669
  */
2670
- Logo?: Uint8Array;
2670
+ Logo?: Uint8Array | undefined;
2671
2671
  /**
2672
2672
  * <p>The support email. The company's customer support email address.</p>
2673
2673
  * <note>
@@ -2684,7 +2684,7 @@ export interface DefaultImportClientBrandingAttributes {
2684
2684
  * </note>
2685
2685
  * @public
2686
2686
  */
2687
- SupportEmail?: string;
2687
+ SupportEmail?: string | undefined;
2688
2688
  /**
2689
2689
  * <p>The support link. The link for the company's customer support page for their
2690
2690
  * WorkSpace.</p>
@@ -2702,13 +2702,13 @@ export interface DefaultImportClientBrandingAttributes {
2702
2702
  * </note>
2703
2703
  * @public
2704
2704
  */
2705
- SupportLink?: string;
2705
+ SupportLink?: string | undefined;
2706
2706
  /**
2707
2707
  * <p>The forgotten password link. This is the web address that users can go to if they forget
2708
2708
  * the password for their WorkSpace.</p>
2709
2709
  * @public
2710
2710
  */
2711
- ForgotPasswordLink?: string;
2711
+ ForgotPasswordLink?: string | undefined;
2712
2712
  /**
2713
2713
  * <p>The login message. Specified as a key value pair, in which the key is a locale and the
2714
2714
  * value is the localized message for that locale. The only key supported is
@@ -2716,7 +2716,7 @@ export interface DefaultImportClientBrandingAttributes {
2716
2716
  * i, li, ol, p, pre, q, small, span, strike, strong, sub, sup, u, ul</code>.</p>
2717
2717
  * @public
2718
2718
  */
2719
- LoginMessage?: Record<string, string>;
2719
+ LoginMessage?: Record<string, string> | undefined;
2720
2720
  }
2721
2721
  /**
2722
2722
  * <p>Describes the default values that are used to create WorkSpaces. For more information,
@@ -2729,7 +2729,7 @@ export interface DefaultWorkspaceCreationProperties {
2729
2729
  * <p>Specifies whether the directory is enabled for Amazon WorkDocs.</p>
2730
2730
  * @public
2731
2731
  */
2732
- EnableWorkDocs?: boolean;
2732
+ EnableWorkDocs?: boolean | undefined;
2733
2733
  /**
2734
2734
  * <p>Specifies whether to automatically assign an Elastic public IP address to WorkSpaces in
2735
2735
  * this directory by default. If enabled, the Elastic public IP address allows outbound
@@ -2742,36 +2742,36 @@ export interface DefaultWorkspaceCreationProperties {
2742
2742
  * Amazon WorkSpaces</a>.</p>
2743
2743
  * @public
2744
2744
  */
2745
- EnableInternetAccess?: boolean;
2745
+ EnableInternetAccess?: boolean | undefined;
2746
2746
  /**
2747
2747
  * <p>The organizational unit (OU) in the directory for the WorkSpace machine accounts.</p>
2748
2748
  * @public
2749
2749
  */
2750
- DefaultOu?: string;
2750
+ DefaultOu?: string | undefined;
2751
2751
  /**
2752
2752
  * <p>The identifier of the default security group to apply to WorkSpaces when they are
2753
2753
  * created. For more information, see <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/amazon-workspaces-security-groups.html"> Security
2754
2754
  * Groups for Your WorkSpaces</a>.</p>
2755
2755
  * @public
2756
2756
  */
2757
- CustomSecurityGroupId?: string;
2757
+ CustomSecurityGroupId?: string | undefined;
2758
2758
  /**
2759
2759
  * <p>Specifies whether WorkSpace users are local administrators on their WorkSpaces.</p>
2760
2760
  * @public
2761
2761
  */
2762
- UserEnabledAsLocalAdministrator?: boolean;
2762
+ UserEnabledAsLocalAdministrator?: boolean | undefined;
2763
2763
  /**
2764
2764
  * <p>Specifies whether maintenance mode is enabled for WorkSpaces. For more information, see
2765
2765
  * <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/workspace-maintenance.html">WorkSpace
2766
2766
  * Maintenance</a>.</p>
2767
2767
  * @public
2768
2768
  */
2769
- EnableMaintenanceMode?: boolean;
2769
+ EnableMaintenanceMode?: boolean | undefined;
2770
2770
  /**
2771
2771
  * <p>Indicates the IAM role ARN of the instance.</p>
2772
2772
  * @public
2773
2773
  */
2774
- InstanceIamRoleArn?: string;
2774
+ InstanceIamRoleArn?: string | undefined;
2775
2775
  }
2776
2776
  /**
2777
2777
  * @public
@@ -2809,7 +2809,7 @@ export interface DeleteAccountLinkInvitationRequest {
2809
2809
  * <p>A string of up to 64 ASCII characters that Amazon EFS uses to ensure idempotent creation.</p>
2810
2810
  * @public
2811
2811
  */
2812
- ClientToken?: string;
2812
+ ClientToken?: string | undefined;
2813
2813
  }
2814
2814
  /**
2815
2815
  * @public
@@ -2819,7 +2819,7 @@ export interface DeleteAccountLinkInvitationResult {
2819
2819
  * <p>Information about the account link.</p>
2820
2820
  * @public
2821
2821
  */
2822
- AccountLink?: AccountLink;
2822
+ AccountLink?: AccountLink | undefined;
2823
2823
  }
2824
2824
  /**
2825
2825
  * @public
@@ -2922,7 +2922,7 @@ export interface DeleteWorkspaceBundleRequest {
2922
2922
  * <p>The identifier of the bundle.</p>
2923
2923
  * @public
2924
2924
  */
2925
- BundleId?: string;
2925
+ BundleId?: string | undefined;
2926
2926
  }
2927
2927
  /**
2928
2928
  * @public
@@ -2958,7 +2958,7 @@ export interface DeployWorkspaceApplicationsRequest {
2958
2958
  * it allows previously failed deployments to be retried.</p>
2959
2959
  * @public
2960
2960
  */
2961
- Force?: boolean;
2961
+ Force?: boolean | undefined;
2962
2962
  }
2963
2963
  /**
2964
2964
  * <p>Describes the WorkSpace application deployment.</p>
@@ -2969,7 +2969,7 @@ export interface WorkSpaceApplicationDeployment {
2969
2969
  * <p>The associations between the applications and the associated resources.</p>
2970
2970
  * @public
2971
2971
  */
2972
- Associations?: WorkspaceResourceAssociation[];
2972
+ Associations?: WorkspaceResourceAssociation[] | undefined;
2973
2973
  }
2974
2974
  /**
2975
2975
  * @public
@@ -2979,7 +2979,7 @@ export interface DeployWorkspaceApplicationsResult {
2979
2979
  * <p>The list of deployed associations and information about them.</p>
2980
2980
  * @public
2981
2981
  */
2982
- Deployment?: WorkSpaceApplicationDeployment;
2982
+ Deployment?: WorkSpaceApplicationDeployment | undefined;
2983
2983
  }
2984
2984
  /**
2985
2985
  * @public
@@ -3011,7 +3011,7 @@ export interface DescribeAccountResult {
3011
3011
  * <p>The status of BYOL (whether BYOL is enabled or disabled).</p>
3012
3012
  * @public
3013
3013
  */
3014
- DedicatedTenancySupport?: DedicatedTenancySupportResultEnum;
3014
+ DedicatedTenancySupport?: DedicatedTenancySupportResultEnum | undefined;
3015
3015
  /**
3016
3016
  * <p>The IP address range, specified as an IPv4 CIDR block, used for the management network
3017
3017
  * interface.</p>
@@ -3020,12 +3020,12 @@ export interface DescribeAccountResult {
3020
3020
  * clients, and to allow Amazon WorkSpaces to manage the WorkSpace.</p>
3021
3021
  * @public
3022
3022
  */
3023
- DedicatedTenancyManagementCidrRange?: string;
3023
+ DedicatedTenancyManagementCidrRange?: string | undefined;
3024
3024
  /**
3025
3025
  * <p>The type of linked account.</p>
3026
3026
  * @public
3027
3027
  */
3028
- DedicatedTenancyAccountType?: DedicatedTenancyAccountType;
3028
+ DedicatedTenancyAccountType?: DedicatedTenancyAccountType | undefined;
3029
3029
  }
3030
3030
  /**
3031
3031
  * @public
@@ -3036,7 +3036,7 @@ export interface DescribeAccountModificationsRequest {
3036
3036
  * provide this token to receive the next set of results.</p>
3037
3037
  * @public
3038
3038
  */
3039
- NextToken?: string;
3039
+ NextToken?: string | undefined;
3040
3040
  }
3041
3041
  /**
3042
3042
  * @public
@@ -3046,13 +3046,13 @@ export interface DescribeAccountModificationsResult {
3046
3046
  * <p>The list of modifications to the configuration of BYOL.</p>
3047
3047
  * @public
3048
3048
  */
3049
- AccountModifications?: AccountModification[];
3049
+ AccountModifications?: AccountModification[] | undefined;
3050
3050
  /**
3051
3051
  * <p>The token to use to retrieve the next page of results. This value is null when there are
3052
3052
  * no more results to return. </p>
3053
3053
  * @public
3054
3054
  */
3055
- NextToken?: string;
3055
+ NextToken?: string | undefined;
3056
3056
  }
3057
3057
  /**
3058
3058
  * @public
@@ -3062,12 +3062,12 @@ export interface DescribeApplicationAssociationsRequest {
3062
3062
  * <p>The maximum number of associations to return.</p>
3063
3063
  * @public
3064
3064
  */
3065
- MaxResults?: number;
3065
+ MaxResults?: number | undefined;
3066
3066
  /**
3067
3067
  * <p>If you received a <code>NextToken</code> from a previous call that was paginated, provide this token to receive the next set of results.</p>
3068
3068
  * @public
3069
3069
  */
3070
- NextToken?: string;
3070
+ NextToken?: string | undefined;
3071
3071
  /**
3072
3072
  * <p>The identifier of the specified application.</p>
3073
3073
  * @public
@@ -3087,12 +3087,12 @@ export interface DescribeApplicationAssociationsResult {
3087
3087
  * <p>List of associations and information about them.</p>
3088
3088
  * @public
3089
3089
  */
3090
- Associations?: ApplicationResourceAssociation[];
3090
+ Associations?: ApplicationResourceAssociation[] | undefined;
3091
3091
  /**
3092
3092
  * <p>If you received a <code>NextToken</code> from a previous call that was paginated, provide this token to receive the next set of results.</p>
3093
3093
  * @public
3094
3094
  */
3095
- NextToken?: string;
3095
+ NextToken?: string | undefined;
3096
3096
  }
3097
3097
  /**
3098
3098
  * @public
@@ -3114,37 +3114,37 @@ export interface DescribeApplicationsRequest {
3114
3114
  * <p>The identifiers of one or more applications.</p>
3115
3115
  * @public
3116
3116
  */
3117
- ApplicationIds?: string[];
3117
+ ApplicationIds?: string[] | undefined;
3118
3118
  /**
3119
3119
  * <p>The compute types supported by the applications.</p>
3120
3120
  * @public
3121
3121
  */
3122
- ComputeTypeNames?: Compute[];
3122
+ ComputeTypeNames?: Compute[] | undefined;
3123
3123
  /**
3124
3124
  * <p>The license availability for the applications.</p>
3125
3125
  * @public
3126
3126
  */
3127
- LicenseType?: WorkSpaceApplicationLicenseType;
3127
+ LicenseType?: WorkSpaceApplicationLicenseType | undefined;
3128
3128
  /**
3129
3129
  * <p>The operating systems supported by the applications.</p>
3130
3130
  * @public
3131
3131
  */
3132
- OperatingSystemNames?: OperatingSystemName[];
3132
+ OperatingSystemNames?: OperatingSystemName[] | undefined;
3133
3133
  /**
3134
3134
  * <p>The owner of the applications.</p>
3135
3135
  * @public
3136
3136
  */
3137
- Owner?: string;
3137
+ Owner?: string | undefined;
3138
3138
  /**
3139
3139
  * <p>The maximum number of applications to return.</p>
3140
3140
  * @public
3141
3141
  */
3142
- MaxResults?: number;
3142
+ MaxResults?: number | undefined;
3143
3143
  /**
3144
3144
  * <p>If you received a <code>NextToken</code> from a previous call that was paginated, provide this token to receive the next set of results.</p>
3145
3145
  * @public
3146
3146
  */
3147
- NextToken?: string;
3147
+ NextToken?: string | undefined;
3148
3148
  }
3149
3149
  /**
3150
3150
  * @public
@@ -3169,47 +3169,47 @@ export interface WorkSpaceApplication {
3169
3169
  * <p>The identifier of the application.</p>
3170
3170
  * @public
3171
3171
  */
3172
- ApplicationId?: string;
3172
+ ApplicationId?: string | undefined;
3173
3173
  /**
3174
3174
  * <p>The time the application is created.</p>
3175
3175
  * @public
3176
3176
  */
3177
- Created?: Date;
3177
+ Created?: Date | undefined;
3178
3178
  /**
3179
3179
  * <p>The description of the WorkSpace application.</p>
3180
3180
  * @public
3181
3181
  */
3182
- Description?: string;
3182
+ Description?: string | undefined;
3183
3183
  /**
3184
3184
  * <p>The license availability for the applications.</p>
3185
3185
  * @public
3186
3186
  */
3187
- LicenseType?: WorkSpaceApplicationLicenseType;
3187
+ LicenseType?: WorkSpaceApplicationLicenseType | undefined;
3188
3188
  /**
3189
3189
  * <p>The name of the WorkSpace application.</p>
3190
3190
  * @public
3191
3191
  */
3192
- Name?: string;
3192
+ Name?: string | undefined;
3193
3193
  /**
3194
3194
  * <p>The owner of the WorkSpace application.</p>
3195
3195
  * @public
3196
3196
  */
3197
- Owner?: string;
3197
+ Owner?: string | undefined;
3198
3198
  /**
3199
3199
  * <p>The status of WorkSpace application.</p>
3200
3200
  * @public
3201
3201
  */
3202
- State?: WorkSpaceApplicationState;
3202
+ State?: WorkSpaceApplicationState | undefined;
3203
3203
  /**
3204
3204
  * <p>The supported compute types of the WorkSpace application.</p>
3205
3205
  * @public
3206
3206
  */
3207
- SupportedComputeTypeNames?: Compute[];
3207
+ SupportedComputeTypeNames?: Compute[] | undefined;
3208
3208
  /**
3209
3209
  * <p>The supported operating systems of the WorkSpace application.</p>
3210
3210
  * @public
3211
3211
  */
3212
- SupportedOperatingSystemNames?: OperatingSystemName[];
3212
+ SupportedOperatingSystemNames?: OperatingSystemName[] | undefined;
3213
3213
  }
3214
3214
  /**
3215
3215
  * @public
@@ -3219,12 +3219,12 @@ export interface DescribeApplicationsResult {
3219
3219
  * <p>List of information about the specified applications.</p>
3220
3220
  * @public
3221
3221
  */
3222
- Applications?: WorkSpaceApplication[];
3222
+ Applications?: WorkSpaceApplication[] | undefined;
3223
3223
  /**
3224
3224
  * <p>If you received a <code>NextToken</code> from a previous call that was paginated, provide this token to receive the next set of results.</p>
3225
3225
  * @public
3226
3226
  */
3227
- NextToken?: string;
3227
+ NextToken?: string | undefined;
3228
3228
  }
3229
3229
  /**
3230
3230
  * @public
@@ -3249,7 +3249,7 @@ export interface DescribeBundleAssociationsResult {
3249
3249
  * <p>List of information about the specified associations.</p>
3250
3250
  * @public
3251
3251
  */
3252
- Associations?: BundleResourceAssociation[];
3252
+ Associations?: BundleResourceAssociation[] | undefined;
3253
3253
  }
3254
3254
  /**
3255
3255
  * @public
@@ -3279,7 +3279,7 @@ export interface IosClientBrandingAttributes {
3279
3279
  * a <code>.png</code> file.</p>
3280
3280
  * @public
3281
3281
  */
3282
- LogoUrl?: string;
3282
+ LogoUrl?: string | undefined;
3283
3283
  /**
3284
3284
  * <p>The @2x version of the logo. This is the higher resolution display that offers a scale
3285
3285
  * factor of 2.0 (or @2x). The only image format accepted is a binary data object that is
@@ -3290,7 +3290,7 @@ export interface IosClientBrandingAttributes {
3290
3290
  * </note>
3291
3291
  * @public
3292
3292
  */
3293
- Logo2xUrl?: string;
3293
+ Logo2xUrl?: string | undefined;
3294
3294
  /**
3295
3295
  * <p>The @3x version of the logo. This is the higher resolution display that offers a scale
3296
3296
  * factor of 3.0 (or @3x).The only image format accepted is a binary data object that is
@@ -3301,7 +3301,7 @@ export interface IosClientBrandingAttributes {
3301
3301
  * </note>
3302
3302
  * @public
3303
3303
  */
3304
- Logo3xUrl?: string;
3304
+ Logo3xUrl?: string | undefined;
3305
3305
  /**
3306
3306
  * <p>The support email. The company's customer support email address.</p>
3307
3307
  * <note>
@@ -3318,7 +3318,7 @@ export interface IosClientBrandingAttributes {
3318
3318
  * </note>
3319
3319
  * @public
3320
3320
  */
3321
- SupportEmail?: string;
3321
+ SupportEmail?: string | undefined;
3322
3322
  /**
3323
3323
  * <p>The support link. The link for the company's customer support page for their
3324
3324
  * WorkSpace.</p>
@@ -3336,13 +3336,13 @@ export interface IosClientBrandingAttributes {
3336
3336
  * </note>
3337
3337
  * @public
3338
3338
  */
3339
- SupportLink?: string;
3339
+ SupportLink?: string | undefined;
3340
3340
  /**
3341
3341
  * <p>The forgotten password link. This is the web address that users can go to if they forget
3342
3342
  * the password for their WorkSpace.</p>
3343
3343
  * @public
3344
3344
  */
3345
- ForgotPasswordLink?: string;
3345
+ ForgotPasswordLink?: string | undefined;
3346
3346
  /**
3347
3347
  * <p>The login message. Specified as a key value pair, in which the key is a locale and the
3348
3348
  * value is the localized message for that locale. The only key supported is
@@ -3350,7 +3350,7 @@ export interface IosClientBrandingAttributes {
3350
3350
  * i, li, ol, p, pre, q, small, span, strike, strong, sub, sup, u, ul</code>.</p>
3351
3351
  * @public
3352
3352
  */
3353
- LoginMessage?: Record<string, string>;
3353
+ LoginMessage?: Record<string, string> | undefined;
3354
3354
  }
3355
3355
  /**
3356
3356
  * @public
@@ -3360,32 +3360,32 @@ export interface DescribeClientBrandingResult {
3360
3360
  * <p>The branding information for Windows devices.</p>
3361
3361
  * @public
3362
3362
  */
3363
- DeviceTypeWindows?: DefaultClientBrandingAttributes;
3363
+ DeviceTypeWindows?: DefaultClientBrandingAttributes | undefined;
3364
3364
  /**
3365
3365
  * <p>The branding information for macOS devices.</p>
3366
3366
  * @public
3367
3367
  */
3368
- DeviceTypeOsx?: DefaultClientBrandingAttributes;
3368
+ DeviceTypeOsx?: DefaultClientBrandingAttributes | undefined;
3369
3369
  /**
3370
3370
  * <p>The branding information for Android devices.</p>
3371
3371
  * @public
3372
3372
  */
3373
- DeviceTypeAndroid?: DefaultClientBrandingAttributes;
3373
+ DeviceTypeAndroid?: DefaultClientBrandingAttributes | undefined;
3374
3374
  /**
3375
3375
  * <p>The branding information for iOS devices.</p>
3376
3376
  * @public
3377
3377
  */
3378
- DeviceTypeIos?: IosClientBrandingAttributes;
3378
+ DeviceTypeIos?: IosClientBrandingAttributes | undefined;
3379
3379
  /**
3380
3380
  * <p>The branding information for Linux devices.</p>
3381
3381
  * @public
3382
3382
  */
3383
- DeviceTypeLinux?: DefaultClientBrandingAttributes;
3383
+ DeviceTypeLinux?: DefaultClientBrandingAttributes | undefined;
3384
3384
  /**
3385
3385
  * <p>The branding information for Web access.</p>
3386
3386
  * @public
3387
3387
  */
3388
- DeviceTypeWeb?: DefaultClientBrandingAttributes;
3388
+ DeviceTypeWeb?: DefaultClientBrandingAttributes | undefined;
3389
3389
  }
3390
3390
  /**
3391
3391
  * @public
@@ -3405,7 +3405,7 @@ export interface DescribeClientPropertiesResult {
3405
3405
  * <p>Information about the specified Amazon WorkSpaces clients.</p>
3406
3406
  * @public
3407
3407
  */
3408
- ClientPropertiesList?: ClientPropertiesResult[];
3408
+ ClientPropertiesList?: ClientPropertiesResult[] | undefined;
3409
3409
  }
3410
3410
  /**
3411
3411
  * @public
@@ -3421,12 +3421,12 @@ export interface DescribeConnectClientAddInsRequest {
3421
3421
  * provide this token to receive the next set of results.</p>
3422
3422
  * @public
3423
3423
  */
3424
- NextToken?: string;
3424
+ NextToken?: string | undefined;
3425
3425
  /**
3426
3426
  * <p>The maximum number of items to return.</p>
3427
3427
  * @public
3428
3428
  */
3429
- MaxResults?: number;
3429
+ MaxResults?: number | undefined;
3430
3430
  }
3431
3431
  /**
3432
3432
  * @public
@@ -3436,13 +3436,13 @@ export interface DescribeConnectClientAddInsResult {
3436
3436
  * <p>Information about client add-ins.</p>
3437
3437
  * @public
3438
3438
  */
3439
- AddIns?: ConnectClientAddIn[];
3439
+ AddIns?: ConnectClientAddIn[] | undefined;
3440
3440
  /**
3441
3441
  * <p>The token to use to retrieve the next page of results. This value is null when there are
3442
3442
  * no more results to return. </p>
3443
3443
  * @public
3444
3444
  */
3445
- NextToken?: string;
3445
+ NextToken?: string | undefined;
3446
3446
  }
3447
3447
  /**
3448
3448
  * @public
@@ -3452,23 +3452,23 @@ export interface DescribeConnectionAliasesRequest {
3452
3452
  * <p>The identifiers of the connection aliases to describe.</p>
3453
3453
  * @public
3454
3454
  */
3455
- AliasIds?: string[];
3455
+ AliasIds?: string[] | undefined;
3456
3456
  /**
3457
3457
  * <p>The identifier of the directory associated with the connection alias.</p>
3458
3458
  * @public
3459
3459
  */
3460
- ResourceId?: string;
3460
+ ResourceId?: string | undefined;
3461
3461
  /**
3462
3462
  * <p>The maximum number of connection aliases to return.</p>
3463
3463
  * @public
3464
3464
  */
3465
- Limit?: number;
3465
+ Limit?: number | undefined;
3466
3466
  /**
3467
3467
  * <p>If you received a <code>NextToken</code> from a previous call that was paginated,
3468
3468
  * provide this token to receive the next set of results. </p>
3469
3469
  * @public
3470
3470
  */
3471
- NextToken?: string;
3471
+ NextToken?: string | undefined;
3472
3472
  }
3473
3473
  /**
3474
3474
  * @public
@@ -3478,13 +3478,13 @@ export interface DescribeConnectionAliasesResult {
3478
3478
  * <p>Information about the specified connection aliases.</p>
3479
3479
  * @public
3480
3480
  */
3481
- ConnectionAliases?: ConnectionAlias[];
3481
+ ConnectionAliases?: ConnectionAlias[] | undefined;
3482
3482
  /**
3483
3483
  * <p>The token to use to retrieve the next page of results. This value is null when there are
3484
3484
  * no more results to return. </p>
3485
3485
  * @public
3486
3486
  */
3487
- NextToken?: string;
3487
+ NextToken?: string | undefined;
3488
3488
  }
3489
3489
  /**
3490
3490
  * @public
@@ -3500,12 +3500,12 @@ export interface DescribeConnectionAliasPermissionsRequest {
3500
3500
  * provide this token to receive the next set of results. </p>
3501
3501
  * @public
3502
3502
  */
3503
- NextToken?: string;
3503
+ NextToken?: string | undefined;
3504
3504
  /**
3505
3505
  * <p>The maximum number of results to return.</p>
3506
3506
  * @public
3507
3507
  */
3508
- MaxResults?: number;
3508
+ MaxResults?: number | undefined;
3509
3509
  }
3510
3510
  /**
3511
3511
  * @public
@@ -3515,18 +3515,18 @@ export interface DescribeConnectionAliasPermissionsResult {
3515
3515
  * <p>The identifier of the connection alias.</p>
3516
3516
  * @public
3517
3517
  */
3518
- AliasId?: string;
3518
+ AliasId?: string | undefined;
3519
3519
  /**
3520
3520
  * <p>The permissions associated with a connection alias.</p>
3521
3521
  * @public
3522
3522
  */
3523
- ConnectionAliasPermissions?: ConnectionAliasPermission[];
3523
+ ConnectionAliasPermissions?: ConnectionAliasPermission[] | undefined;
3524
3524
  /**
3525
3525
  * <p>The token to use to retrieve the next page of results. This value is null when there are
3526
3526
  * no more results to return. </p>
3527
3527
  * @public
3528
3528
  */
3529
- NextToken?: string;
3529
+ NextToken?: string | undefined;
3530
3530
  }
3531
3531
  /**
3532
3532
  * @public
@@ -3563,37 +3563,37 @@ export interface ImageResourceAssociation {
3563
3563
  * <p>The identifier of the associated resource.</p>
3564
3564
  * @public
3565
3565
  */
3566
- AssociatedResourceId?: string;
3566
+ AssociatedResourceId?: string | undefined;
3567
3567
  /**
3568
3568
  * <p>The resource type of the associated resources.</p>
3569
3569
  * @public
3570
3570
  */
3571
- AssociatedResourceType?: ImageAssociatedResourceType;
3571
+ AssociatedResourceType?: ImageAssociatedResourceType | undefined;
3572
3572
  /**
3573
3573
  * <p>The time the association is created.</p>
3574
3574
  * @public
3575
3575
  */
3576
- Created?: Date;
3576
+ Created?: Date | undefined;
3577
3577
  /**
3578
3578
  * <p>The time the association status was last updated.</p>
3579
3579
  * @public
3580
3580
  */
3581
- LastUpdatedTime?: Date;
3581
+ LastUpdatedTime?: Date | undefined;
3582
3582
  /**
3583
3583
  * <p>The identifier of the image.</p>
3584
3584
  * @public
3585
3585
  */
3586
- ImageId?: string;
3586
+ ImageId?: string | undefined;
3587
3587
  /**
3588
3588
  * <p>The status of the image resource association.</p>
3589
3589
  * @public
3590
3590
  */
3591
- State?: AssociationState;
3591
+ State?: AssociationState | undefined;
3592
3592
  /**
3593
3593
  * <p>The reason the association deployment failed.</p>
3594
3594
  * @public
3595
3595
  */
3596
- StateReason?: AssociationStateReason;
3596
+ StateReason?: AssociationStateReason | undefined;
3597
3597
  }
3598
3598
  /**
3599
3599
  * @public
@@ -3603,7 +3603,7 @@ export interface DescribeImageAssociationsResult {
3603
3603
  * <p>List of information about the specified associations.</p>
3604
3604
  * @public
3605
3605
  */
3606
- Associations?: ImageResourceAssociation[];
3606
+ Associations?: ImageResourceAssociation[] | undefined;
3607
3607
  }
3608
3608
  /**
3609
3609
  * @public
@@ -3613,18 +3613,18 @@ export interface DescribeIpGroupsRequest {
3613
3613
  * <p>The identifiers of one or more IP access control groups.</p>
3614
3614
  * @public
3615
3615
  */
3616
- GroupIds?: string[];
3616
+ GroupIds?: string[] | undefined;
3617
3617
  /**
3618
3618
  * <p>If you received a <code>NextToken</code> from a previous call that was paginated,
3619
3619
  * provide this token to receive the next set of results.</p>
3620
3620
  * @public
3621
3621
  */
3622
- NextToken?: string;
3622
+ NextToken?: string | undefined;
3623
3623
  /**
3624
3624
  * <p>The maximum number of items to return.</p>
3625
3625
  * @public
3626
3626
  */
3627
- MaxResults?: number;
3627
+ MaxResults?: number | undefined;
3628
3628
  }
3629
3629
  /**
3630
3630
  * <p>Describes an IP access control group.</p>
@@ -3635,22 +3635,22 @@ export interface WorkspacesIpGroup {
3635
3635
  * <p>The identifier of the group.</p>
3636
3636
  * @public
3637
3637
  */
3638
- groupId?: string;
3638
+ groupId?: string | undefined;
3639
3639
  /**
3640
3640
  * <p>The name of the group.</p>
3641
3641
  * @public
3642
3642
  */
3643
- groupName?: string;
3643
+ groupName?: string | undefined;
3644
3644
  /**
3645
3645
  * <p>The description of the group.</p>
3646
3646
  * @public
3647
3647
  */
3648
- groupDesc?: string;
3648
+ groupDesc?: string | undefined;
3649
3649
  /**
3650
3650
  * <p>The rules.</p>
3651
3651
  * @public
3652
3652
  */
3653
- userRules?: IpRuleItem[];
3653
+ userRules?: IpRuleItem[] | undefined;
3654
3654
  }
3655
3655
  /**
3656
3656
  * @public
@@ -3660,13 +3660,13 @@ export interface DescribeIpGroupsResult {
3660
3660
  * <p>Information about the IP access control groups.</p>
3661
3661
  * @public
3662
3662
  */
3663
- Result?: WorkspacesIpGroup[];
3663
+ Result?: WorkspacesIpGroup[] | undefined;
3664
3664
  /**
3665
3665
  * <p>The token to use to retrieve the next page of results. This value is null when there are
3666
3666
  * no more results to return. </p>
3667
3667
  * @public
3668
3668
  */
3669
- NextToken?: string;
3669
+ NextToken?: string | undefined;
3670
3670
  }
3671
3671
  /**
3672
3672
  * @public
@@ -3688,7 +3688,7 @@ export interface DescribeTagsResult {
3688
3688
  * <p>The tags.</p>
3689
3689
  * @public
3690
3690
  */
3691
- TagList?: Tag[];
3691
+ TagList?: Tag[] | undefined;
3692
3692
  }
3693
3693
  /**
3694
3694
  * @public
@@ -3713,7 +3713,7 @@ export interface DescribeWorkspaceAssociationsResult {
3713
3713
  * <p>List of information about the specified associations.</p>
3714
3714
  * @public
3715
3715
  */
3716
- Associations?: WorkspaceResourceAssociation[];
3716
+ Associations?: WorkspaceResourceAssociation[] | undefined;
3717
3717
  }
3718
3718
  /**
3719
3719
  * @public
@@ -3723,19 +3723,19 @@ export interface DescribeWorkspaceBundlesRequest {
3723
3723
  * <p>The identifiers of the bundles. You cannot combine this parameter with any other filter.</p>
3724
3724
  * @public
3725
3725
  */
3726
- BundleIds?: string[];
3726
+ BundleIds?: string[] | undefined;
3727
3727
  /**
3728
3728
  * <p>The owner of the bundles. You cannot combine this parameter with any other filter.</p>
3729
3729
  * <p>To describe the bundles provided by Amazon Web Services, specify <code>AMAZON</code>.
3730
3730
  * To describe the bundles that belong to your account, don't specify a value.</p>
3731
3731
  * @public
3732
3732
  */
3733
- Owner?: string;
3733
+ Owner?: string | undefined;
3734
3734
  /**
3735
3735
  * <p>The token for the next set of results. (You received this token from a previous call.)</p>
3736
3736
  * @public
3737
3737
  */
3738
- NextToken?: string;
3738
+ NextToken?: string | undefined;
3739
3739
  }
3740
3740
  /**
3741
3741
  * @public
@@ -3745,14 +3745,14 @@ export interface DescribeWorkspaceBundlesResult {
3745
3745
  * <p>Information about the bundles.</p>
3746
3746
  * @public
3747
3747
  */
3748
- Bundles?: WorkspaceBundle[];
3748
+ Bundles?: WorkspaceBundle[] | undefined;
3749
3749
  /**
3750
3750
  * <p>The token to use to retrieve the next page of results. This value is null when there are no more
3751
3751
  * results to return. This token is valid for one day and must be used within that time
3752
3752
  * frame.</p>
3753
3753
  * @public
3754
3754
  */
3755
- NextToken?: string;
3755
+ NextToken?: string | undefined;
3756
3756
  }
3757
3757
  /**
3758
3758
  * @public
@@ -3791,28 +3791,28 @@ export interface DescribeWorkspaceDirectoriesRequest {
3791
3791
  * retrieved.</p>
3792
3792
  * @public
3793
3793
  */
3794
- DirectoryIds?: string[];
3794
+ DirectoryIds?: string[] | undefined;
3795
3795
  /**
3796
3796
  * <p>The names of the WorkSpace directories.</p>
3797
3797
  * @public
3798
3798
  */
3799
- WorkspaceDirectoryNames?: string[];
3799
+ WorkspaceDirectoryNames?: string[] | undefined;
3800
3800
  /**
3801
3801
  * <p>The maximum number of directories to return.</p>
3802
3802
  * @public
3803
3803
  */
3804
- Limit?: number;
3804
+ Limit?: number | undefined;
3805
3805
  /**
3806
3806
  * <p>If you received a <code>NextToken</code> from a previous call that was paginated,
3807
3807
  * provide this token to receive the next set of results.</p>
3808
3808
  * @public
3809
3809
  */
3810
- NextToken?: string;
3810
+ NextToken?: string | undefined;
3811
3811
  /**
3812
3812
  * <p>The filter condition for the WorkSpaces.</p>
3813
3813
  * @public
3814
3814
  */
3815
- Filters?: DescribeWorkspaceDirectoriesFilter[];
3815
+ Filters?: DescribeWorkspaceDirectoriesFilter[] | undefined;
3816
3816
  }
3817
3817
  /**
3818
3818
  * @public
@@ -3837,12 +3837,12 @@ export interface IDCConfig {
3837
3837
  * <p>The Amazon Resource Name (ARN) of the identity center instance.</p>
3838
3838
  * @public
3839
3839
  */
3840
- InstanceArn?: string;
3840
+ InstanceArn?: string | undefined;
3841
3841
  /**
3842
3842
  * <p>The Amazon Resource Name (ARN) of the application.</p>
3843
3843
  * @public
3844
3844
  */
3845
- ApplicationArn?: string;
3845
+ ApplicationArn?: string | undefined;
3846
3846
  }
3847
3847
  /**
3848
3848
  * <p>Specifies the configurations of the Microsoft Entra.</p>
@@ -3853,12 +3853,12 @@ export interface MicrosoftEntraConfig {
3853
3853
  * <p>The identifier of the tenant.</p>
3854
3854
  * @public
3855
3855
  */
3856
- TenantId?: string;
3856
+ TenantId?: string | undefined;
3857
3857
  /**
3858
3858
  * <p>The Amazon Resource Name (ARN) of the application config.</p>
3859
3859
  * @public
3860
3860
  */
3861
- ApplicationConfigSecretArn?: string;
3861
+ ApplicationConfigSecretArn?: string | undefined;
3862
3862
  }
3863
3863
  /**
3864
3864
  * @public
@@ -3898,14 +3898,14 @@ export interface SamlProperties {
3898
3898
  * </ul>
3899
3899
  * @public
3900
3900
  */
3901
- Status?: SamlStatusEnum;
3901
+ Status?: SamlStatusEnum | undefined;
3902
3902
  /**
3903
3903
  * <p>The SAML 2.0 identity provider (IdP) user access URL is the URL a user would navigate to in their web browser in
3904
3904
  * order to federate from the IdP and directly access the application, without any SAML 2.0 service provider (SP)
3905
3905
  * bindings.</p>
3906
3906
  * @public
3907
3907
  */
3908
- UserAccessUrl?: string;
3908
+ UserAccessUrl?: string | undefined;
3909
3909
  /**
3910
3910
  * <p>The relay state parameter name supported by the SAML 2.0 identity provider (IdP). When the end user is redirected to
3911
3911
  * the user access URL from the WorkSpaces client application, this relay state parameter name is appended as a query
@@ -3914,7 +3914,7 @@ export interface SamlProperties {
3914
3914
  * URL. Consult your IdP documentation for more information.</p>
3915
3915
  * @public
3916
3916
  */
3917
- RelayStateParameterName?: string;
3917
+ RelayStateParameterName?: string | undefined;
3918
3918
  }
3919
3919
  /**
3920
3920
  * <p>Describes the self-service permissions for a directory. For more information, see <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/enable-user-self-service-workspace-management.html">Enable Self-Service WorkSpace Management Capabilities for Your Users</a>.</p>
@@ -3925,29 +3925,29 @@ export interface SelfservicePermissions {
3925
3925
  * <p>Specifies whether users can restart their WorkSpace.</p>
3926
3926
  * @public
3927
3927
  */
3928
- RestartWorkspace?: ReconnectEnum;
3928
+ RestartWorkspace?: ReconnectEnum | undefined;
3929
3929
  /**
3930
3930
  * <p>Specifies whether users can increase the volume size of the drives on their
3931
3931
  * WorkSpace.</p>
3932
3932
  * @public
3933
3933
  */
3934
- IncreaseVolumeSize?: ReconnectEnum;
3934
+ IncreaseVolumeSize?: ReconnectEnum | undefined;
3935
3935
  /**
3936
3936
  * <p>Specifies whether users can change the compute type (bundle) for their WorkSpace.</p>
3937
3937
  * @public
3938
3938
  */
3939
- ChangeComputeType?: ReconnectEnum;
3939
+ ChangeComputeType?: ReconnectEnum | undefined;
3940
3940
  /**
3941
3941
  * <p>Specifies whether users can switch the running mode of their WorkSpace.</p>
3942
3942
  * @public
3943
3943
  */
3944
- SwitchRunningMode?: ReconnectEnum;
3944
+ SwitchRunningMode?: ReconnectEnum | undefined;
3945
3945
  /**
3946
3946
  * <p>Specifies whether users can rebuild the operating system of a WorkSpace to its original
3947
3947
  * state.</p>
3948
3948
  * @public
3949
3949
  */
3950
- RebuildWorkspace?: ReconnectEnum;
3950
+ RebuildWorkspace?: ReconnectEnum | undefined;
3951
3951
  }
3952
3952
  /**
3953
3953
  * @public
@@ -4060,7 +4060,7 @@ export interface UserSetting {
4060
4060
  * <p>Indicates the maximum character length for the specified user setting.</p>
4061
4061
  * @public
4062
4062
  */
4063
- MaximumLength?: number;
4063
+ MaximumLength?: number | undefined;
4064
4064
  }
4065
4065
  /**
4066
4066
  * <p>Describes the streaming properties.</p>
@@ -4071,17 +4071,17 @@ export interface StreamingProperties {
4071
4071
  * <p>Indicates the type of preferred protocol for the streaming experience.</p>
4072
4072
  * @public
4073
4073
  */
4074
- StreamingExperiencePreferredProtocol?: StreamingExperiencePreferredProtocolEnum;
4074
+ StreamingExperiencePreferredProtocol?: StreamingExperiencePreferredProtocolEnum | undefined;
4075
4075
  /**
4076
4076
  * <p>Indicates the permission settings asscoiated with the user.</p>
4077
4077
  * @public
4078
4078
  */
4079
- UserSettings?: UserSetting[];
4079
+ UserSettings?: UserSetting[] | undefined;
4080
4080
  /**
4081
4081
  * <p>Indicates the storage connector used </p>
4082
4082
  * @public
4083
4083
  */
4084
- StorageConnectors?: StorageConnector[];
4084
+ StorageConnectors?: StorageConnector[] | undefined;
4085
4085
  }
4086
4086
  /**
4087
4087
  * @public
@@ -4119,43 +4119,43 @@ export interface WorkspaceAccessProperties {
4119
4119
  * <p>Indicates whether users can use Windows clients to access their WorkSpaces.</p>
4120
4120
  * @public
4121
4121
  */
4122
- DeviceTypeWindows?: AccessPropertyValue;
4122
+ DeviceTypeWindows?: AccessPropertyValue | undefined;
4123
4123
  /**
4124
4124
  * <p>Indicates whether users can use macOS clients to access their WorkSpaces.</p>
4125
4125
  * @public
4126
4126
  */
4127
- DeviceTypeOsx?: AccessPropertyValue;
4127
+ DeviceTypeOsx?: AccessPropertyValue | undefined;
4128
4128
  /**
4129
4129
  * <p>Indicates whether users can access their WorkSpaces through a web browser.</p>
4130
4130
  * @public
4131
4131
  */
4132
- DeviceTypeWeb?: AccessPropertyValue;
4132
+ DeviceTypeWeb?: AccessPropertyValue | undefined;
4133
4133
  /**
4134
4134
  * <p>Indicates whether users can use iOS devices to access their WorkSpaces.</p>
4135
4135
  * @public
4136
4136
  */
4137
- DeviceTypeIos?: AccessPropertyValue;
4137
+ DeviceTypeIos?: AccessPropertyValue | undefined;
4138
4138
  /**
4139
4139
  * <p>Indicates whether users can use Android and Android-compatible Chrome OS devices to
4140
4140
  * access their WorkSpaces.</p>
4141
4141
  * @public
4142
4142
  */
4143
- DeviceTypeAndroid?: AccessPropertyValue;
4143
+ DeviceTypeAndroid?: AccessPropertyValue | undefined;
4144
4144
  /**
4145
4145
  * <p>Indicates whether users can use Chromebooks to access their WorkSpaces.</p>
4146
4146
  * @public
4147
4147
  */
4148
- DeviceTypeChromeOs?: AccessPropertyValue;
4148
+ DeviceTypeChromeOs?: AccessPropertyValue | undefined;
4149
4149
  /**
4150
4150
  * <p>Indicates whether users can use zero client devices to access their WorkSpaces.</p>
4151
4151
  * @public
4152
4152
  */
4153
- DeviceTypeZeroClient?: AccessPropertyValue;
4153
+ DeviceTypeZeroClient?: AccessPropertyValue | undefined;
4154
4154
  /**
4155
4155
  * <p>Indicates whether users can use Linux clients to access their WorkSpaces.</p>
4156
4156
  * @public
4157
4157
  */
4158
- DeviceTypeLinux?: AccessPropertyValue;
4158
+ DeviceTypeLinux?: AccessPropertyValue | undefined;
4159
4159
  }
4160
4160
  /**
4161
4161
  * @public
@@ -4178,54 +4178,54 @@ export interface WorkspaceDirectory {
4178
4178
  * <p>The directory identifier.</p>
4179
4179
  * @public
4180
4180
  */
4181
- DirectoryId?: string;
4181
+ DirectoryId?: string | undefined;
4182
4182
  /**
4183
4183
  * <p>The directory alias.</p>
4184
4184
  * @public
4185
4185
  */
4186
- Alias?: string;
4186
+ Alias?: string | undefined;
4187
4187
  /**
4188
4188
  * <p>The name of the directory.</p>
4189
4189
  * @public
4190
4190
  */
4191
- DirectoryName?: string;
4191
+ DirectoryName?: string | undefined;
4192
4192
  /**
4193
4193
  * <p>The registration code for the directory. This is the code that users enter in their
4194
4194
  * Amazon WorkSpaces client application to connect to the directory.</p>
4195
4195
  * @public
4196
4196
  */
4197
- RegistrationCode?: string;
4197
+ RegistrationCode?: string | undefined;
4198
4198
  /**
4199
4199
  * <p>The identifiers of the subnets used with the directory.</p>
4200
4200
  * @public
4201
4201
  */
4202
- SubnetIds?: string[];
4202
+ SubnetIds?: string[] | undefined;
4203
4203
  /**
4204
4204
  * <p>The IP addresses of the DNS servers for the directory.</p>
4205
4205
  * @public
4206
4206
  */
4207
- DnsIpAddresses?: string[];
4207
+ DnsIpAddresses?: string[] | undefined;
4208
4208
  /**
4209
4209
  * <p>The user name for the service account.</p>
4210
4210
  * @public
4211
4211
  */
4212
- CustomerUserName?: string;
4212
+ CustomerUserName?: string | undefined;
4213
4213
  /**
4214
4214
  * <p>The identifier of the IAM role. This is the role that allows Amazon WorkSpaces to make
4215
4215
  * calls to other services, such as Amazon EC2, on your behalf.</p>
4216
4216
  * @public
4217
4217
  */
4218
- IamRoleId?: string;
4218
+ IamRoleId?: string | undefined;
4219
4219
  /**
4220
4220
  * <p>The directory type.</p>
4221
4221
  * @public
4222
4222
  */
4223
- DirectoryType?: WorkspaceDirectoryType;
4223
+ DirectoryType?: WorkspaceDirectoryType | undefined;
4224
4224
  /**
4225
4225
  * <p>The identifier of the security group that is assigned to new WorkSpaces.</p>
4226
4226
  * @public
4227
4227
  */
4228
- WorkspaceSecurityGroupId?: string;
4228
+ WorkspaceSecurityGroupId?: string | undefined;
4229
4229
  /**
4230
4230
  * <p>The state of the directory's registration with Amazon WorkSpaces. After a directory is
4231
4231
  * deregistered, the <code>DEREGISTERED</code> state is returned very briefly before the
@@ -4235,91 +4235,91 @@ export interface WorkspaceDirectory {
4235
4235
  * directory has been successfully deregistered.</p>
4236
4236
  * @public
4237
4237
  */
4238
- State?: WorkspaceDirectoryState;
4238
+ State?: WorkspaceDirectoryState | undefined;
4239
4239
  /**
4240
4240
  * <p>The default creation properties for all WorkSpaces in the directory.</p>
4241
4241
  * @public
4242
4242
  */
4243
- WorkspaceCreationProperties?: DefaultWorkspaceCreationProperties;
4243
+ WorkspaceCreationProperties?: DefaultWorkspaceCreationProperties | undefined;
4244
4244
  /**
4245
4245
  * <p>The identifiers of the IP access control groups associated with the directory.</p>
4246
4246
  * @public
4247
4247
  */
4248
- ipGroupIds?: string[];
4248
+ ipGroupIds?: string[] | undefined;
4249
4249
  /**
4250
4250
  * <p>The devices and operating systems that users can use to access WorkSpaces.</p>
4251
4251
  * @public
4252
4252
  */
4253
- WorkspaceAccessProperties?: WorkspaceAccessProperties;
4253
+ WorkspaceAccessProperties?: WorkspaceAccessProperties | undefined;
4254
4254
  /**
4255
4255
  * <p>Specifies whether the directory is dedicated or shared. To use Bring Your Own License
4256
4256
  * (BYOL), this value must be set to <code>DEDICATED</code>. For more information, see <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/byol-windows-images.html">Bring
4257
4257
  * Your Own Windows Desktop Images</a>.</p>
4258
4258
  * @public
4259
4259
  */
4260
- Tenancy?: Tenancy;
4260
+ Tenancy?: Tenancy | undefined;
4261
4261
  /**
4262
4262
  * <p>The default self-service permissions for WorkSpaces in the directory.</p>
4263
4263
  * @public
4264
4264
  */
4265
- SelfservicePermissions?: SelfservicePermissions;
4265
+ SelfservicePermissions?: SelfservicePermissions | undefined;
4266
4266
  /**
4267
4267
  * <p>Describes the enablement status, user access URL, and relay state parameter name that are used for configuring
4268
4268
  * federation with an SAML 2.0 identity provider.</p>
4269
4269
  * @public
4270
4270
  */
4271
- SamlProperties?: SamlProperties;
4271
+ SamlProperties?: SamlProperties | undefined;
4272
4272
  /**
4273
4273
  * <p>The certificate-based authentication properties used to authenticate SAML 2.0 Identity Provider (IdP)
4274
4274
  * user identities to Active Directory for WorkSpaces login.</p>
4275
4275
  * @public
4276
4276
  */
4277
- CertificateBasedAuthProperties?: CertificateBasedAuthProperties;
4277
+ CertificateBasedAuthProperties?: CertificateBasedAuthProperties | undefined;
4278
4278
  /**
4279
4279
  * <p>Specifies details about Microsoft Entra configurations.</p>
4280
4280
  * @public
4281
4281
  */
4282
- MicrosoftEntraConfig?: MicrosoftEntraConfig;
4282
+ MicrosoftEntraConfig?: MicrosoftEntraConfig | undefined;
4283
4283
  /**
4284
4284
  * <p>The name fo the WorkSpace directory.</p>
4285
4285
  * @public
4286
4286
  */
4287
- WorkspaceDirectoryName?: string;
4287
+ WorkspaceDirectoryName?: string | undefined;
4288
4288
  /**
4289
4289
  * <p>The description of the WorkSpace directory</p>
4290
4290
  * @public
4291
4291
  */
4292
- WorkspaceDirectoryDescription?: string;
4292
+ WorkspaceDirectoryDescription?: string | undefined;
4293
4293
  /**
4294
4294
  * <p>Indicates the identity type of the specifired user.</p>
4295
4295
  * @public
4296
4296
  */
4297
- UserIdentityType?: UserIdentityType;
4297
+ UserIdentityType?: UserIdentityType | undefined;
4298
4298
  /**
4299
4299
  * <p>Indicates whether the directory's WorkSpace type is personal or pools.</p>
4300
4300
  * @public
4301
4301
  */
4302
- WorkspaceType?: WorkspaceType;
4302
+ WorkspaceType?: WorkspaceType | undefined;
4303
4303
  /**
4304
4304
  * <p>Specifies details about identity center configurations.</p>
4305
4305
  * @public
4306
4306
  */
4307
- IDCConfig?: IDCConfig;
4307
+ IDCConfig?: IDCConfig | undefined;
4308
4308
  /**
4309
4309
  * <p>Information about the Active Directory config.</p>
4310
4310
  * @public
4311
4311
  */
4312
- ActiveDirectoryConfig?: ActiveDirectoryConfig;
4312
+ ActiveDirectoryConfig?: ActiveDirectoryConfig | undefined;
4313
4313
  /**
4314
4314
  * <p>The streaming properties to configure.</p>
4315
4315
  * @public
4316
4316
  */
4317
- StreamingProperties?: StreamingProperties;
4317
+ StreamingProperties?: StreamingProperties | undefined;
4318
4318
  /**
4319
4319
  * <p>The error message returned.</p>
4320
4320
  * @public
4321
4321
  */
4322
- ErrorMessage?: string;
4322
+ ErrorMessage?: string | undefined;
4323
4323
  }
4324
4324
  /**
4325
4325
  * @public
@@ -4329,13 +4329,13 @@ export interface DescribeWorkspaceDirectoriesResult {
4329
4329
  * <p>Information about the directories.</p>
4330
4330
  * @public
4331
4331
  */
4332
- Directories?: WorkspaceDirectory[];
4332
+ Directories?: WorkspaceDirectory[] | undefined;
4333
4333
  /**
4334
4334
  * <p>The token to use to retrieve the next page of results. This value is null when there are
4335
4335
  * no more results to return. </p>
4336
4336
  * @public
4337
4337
  */
4338
- NextToken?: string;
4338
+ NextToken?: string | undefined;
4339
4339
  }
4340
4340
  /**
4341
4341
  * @public
@@ -4351,12 +4351,12 @@ export interface DescribeWorkspaceImagePermissionsRequest {
4351
4351
  * provide this token to receive the next set of results.</p>
4352
4352
  * @public
4353
4353
  */
4354
- NextToken?: string;
4354
+ NextToken?: string | undefined;
4355
4355
  /**
4356
4356
  * <p>The maximum number of items to return.</p>
4357
4357
  * @public
4358
4358
  */
4359
- MaxResults?: number;
4359
+ MaxResults?: number | undefined;
4360
4360
  }
4361
4361
  /**
4362
4362
  * <p>Describes the Amazon Web Services accounts that have been granted permission to use a
@@ -4370,7 +4370,7 @@ export interface ImagePermission {
4370
4370
  * with.</p>
4371
4371
  * @public
4372
4372
  */
4373
- SharedAccountId?: string;
4373
+ SharedAccountId?: string | undefined;
4374
4374
  }
4375
4375
  /**
4376
4376
  * @public
@@ -4380,19 +4380,19 @@ export interface DescribeWorkspaceImagePermissionsResult {
4380
4380
  * <p>The identifier of the image.</p>
4381
4381
  * @public
4382
4382
  */
4383
- ImageId?: string;
4383
+ ImageId?: string | undefined;
4384
4384
  /**
4385
4385
  * <p>The identifiers of the Amazon Web Services accounts that the image has been shared
4386
4386
  * with.</p>
4387
4387
  * @public
4388
4388
  */
4389
- ImagePermissions?: ImagePermission[];
4389
+ ImagePermissions?: ImagePermission[] | undefined;
4390
4390
  /**
4391
4391
  * <p>The token to use to retrieve the next page of results. This value is null when there are
4392
4392
  * no more results to return. </p>
4393
4393
  * @public
4394
4394
  */
4395
- NextToken?: string;
4395
+ NextToken?: string | undefined;
4396
4396
  }
4397
4397
  /**
4398
4398
  * @public
@@ -4414,23 +4414,23 @@ export interface DescribeWorkspaceImagesRequest {
4414
4414
  * <p>The identifier of the image.</p>
4415
4415
  * @public
4416
4416
  */
4417
- ImageIds?: string[];
4417
+ ImageIds?: string[] | undefined;
4418
4418
  /**
4419
4419
  * <p>The type (owned or shared) of the image.</p>
4420
4420
  * @public
4421
4421
  */
4422
- ImageType?: ImageType;
4422
+ ImageType?: ImageType | undefined;
4423
4423
  /**
4424
4424
  * <p>If you received a <code>NextToken</code> from a previous call that was paginated,
4425
4425
  * provide this token to receive the next set of results.</p>
4426
4426
  * @public
4427
4427
  */
4428
- NextToken?: string;
4428
+ NextToken?: string | undefined;
4429
4429
  /**
4430
4430
  * <p>The maximum number of items to return.</p>
4431
4431
  * @public
4432
4432
  */
4433
- MaxResults?: number;
4433
+ MaxResults?: number | undefined;
4434
4434
  }
4435
4435
  /**
4436
4436
  * @public
@@ -4481,12 +4481,12 @@ export interface ErrorDetails {
4481
4481
  * <p>Indicates the error code returned.</p>
4482
4482
  * @public
4483
4483
  */
4484
- ErrorCode?: WorkspaceImageErrorDetailCode;
4484
+ ErrorCode?: WorkspaceImageErrorDetailCode | undefined;
4485
4485
  /**
4486
4486
  * <p>The text of the error message related the error code.</p>
4487
4487
  * @public
4488
4488
  */
4489
- ErrorMessage?: string;
4489
+ ErrorMessage?: string | undefined;
4490
4490
  }
4491
4491
  /**
4492
4492
  * <p>Describes whether a WorkSpace image needs to be updated with the latest drivers and
@@ -4502,13 +4502,13 @@ export interface UpdateResult {
4502
4502
  * WorkSpace image.</p>
4503
4503
  * @public
4504
4504
  */
4505
- UpdateAvailable?: boolean;
4505
+ UpdateAvailable?: boolean | undefined;
4506
4506
  /**
4507
4507
  * <p>A description of whether updates for the WorkSpace image are pending or
4508
4508
  * available.</p>
4509
4509
  * @public
4510
4510
  */
4511
- Description?: string;
4511
+ Description?: string | undefined;
4512
4512
  }
4513
4513
  /**
4514
4514
  * <p>Describes a WorkSpace image.</p>
@@ -4519,27 +4519,27 @@ export interface WorkspaceImage {
4519
4519
  * <p>The identifier of the image.</p>
4520
4520
  * @public
4521
4521
  */
4522
- ImageId?: string;
4522
+ ImageId?: string | undefined;
4523
4523
  /**
4524
4524
  * <p>The name of the image.</p>
4525
4525
  * @public
4526
4526
  */
4527
- Name?: string;
4527
+ Name?: string | undefined;
4528
4528
  /**
4529
4529
  * <p>The description of the image.</p>
4530
4530
  * @public
4531
4531
  */
4532
- Description?: string;
4532
+ Description?: string | undefined;
4533
4533
  /**
4534
4534
  * <p>The operating system that the image is running. </p>
4535
4535
  * @public
4536
4536
  */
4537
- OperatingSystem?: OperatingSystem;
4537
+ OperatingSystem?: OperatingSystem | undefined;
4538
4538
  /**
4539
4539
  * <p>The status of the image.</p>
4540
4540
  * @public
4541
4541
  */
4542
- State?: WorkspaceImageState;
4542
+ State?: WorkspaceImageState | undefined;
4543
4543
  /**
4544
4544
  * <p>Specifies whether the image is running on dedicated hardware. When Bring Your Own
4545
4545
  * License (BYOL) is enabled, this value is set to <code>DEDICATED</code>. For more
@@ -4547,39 +4547,39 @@ export interface WorkspaceImage {
4547
4547
  * Desktop Images</a>.</p>
4548
4548
  * @public
4549
4549
  */
4550
- RequiredTenancy?: WorkspaceImageRequiredTenancy;
4550
+ RequiredTenancy?: WorkspaceImageRequiredTenancy | undefined;
4551
4551
  /**
4552
4552
  * <p>The error code that is returned for the image.</p>
4553
4553
  * @public
4554
4554
  */
4555
- ErrorCode?: string;
4555
+ ErrorCode?: string | undefined;
4556
4556
  /**
4557
4557
  * <p>The text of the error message that is returned for the image.</p>
4558
4558
  * @public
4559
4559
  */
4560
- ErrorMessage?: string;
4560
+ ErrorMessage?: string | undefined;
4561
4561
  /**
4562
4562
  * <p>The date when the image was created. If the image has been shared, the Amazon Web Services account that the image has been shared with sees the original creation date
4563
4563
  * of the image.</p>
4564
4564
  * @public
4565
4565
  */
4566
- Created?: Date;
4566
+ Created?: Date | undefined;
4567
4567
  /**
4568
4568
  * <p>The identifier of the Amazon Web Services account that owns the image.</p>
4569
4569
  * @public
4570
4570
  */
4571
- OwnerAccountId?: string;
4571
+ OwnerAccountId?: string | undefined;
4572
4572
  /**
4573
4573
  * <p>The updates (if any) that are available for the specified image.</p>
4574
4574
  * @public
4575
4575
  */
4576
- Updates?: UpdateResult;
4576
+ Updates?: UpdateResult | undefined;
4577
4577
  /**
4578
4578
  * <p>Additional details of the error returned for the image, including the
4579
4579
  * possible causes of the errors and troubleshooting information.</p>
4580
4580
  * @public
4581
4581
  */
4582
- ErrorDetails?: ErrorDetails[];
4582
+ ErrorDetails?: ErrorDetails[] | undefined;
4583
4583
  }
4584
4584
  /**
4585
4585
  * @public
@@ -4589,13 +4589,13 @@ export interface DescribeWorkspaceImagesResult {
4589
4589
  * <p>Information about the images.</p>
4590
4590
  * @public
4591
4591
  */
4592
- Images?: WorkspaceImage[];
4592
+ Images?: WorkspaceImage[] | undefined;
4593
4593
  /**
4594
4594
  * <p>The token to use to retrieve the next page of results. This value is null when there are
4595
4595
  * no more results to return. </p>
4596
4596
  * @public
4597
4597
  */
4598
- NextToken?: string;
4598
+ NextToken?: string | undefined;
4599
4599
  }
4600
4600
  /**
4601
4601
  * @public
@@ -4608,42 +4608,42 @@ export interface DescribeWorkspacesRequest {
4608
4608
  * it returns is not immediately available. If you immediately call <a>DescribeWorkspaces</a> with this identifier, no information is returned.</p>
4609
4609
  * @public
4610
4610
  */
4611
- WorkspaceIds?: string[];
4611
+ WorkspaceIds?: string[] | undefined;
4612
4612
  /**
4613
4613
  * <p>The identifier of the directory. In addition, you can optionally specify a specific
4614
4614
  * directory user (see <code>UserName</code>). You cannot combine this parameter with any
4615
4615
  * other filter.</p>
4616
4616
  * @public
4617
4617
  */
4618
- DirectoryId?: string;
4618
+ DirectoryId?: string | undefined;
4619
4619
  /**
4620
4620
  * <p>The name of the directory user. You must specify this parameter with
4621
4621
  * <code>DirectoryId</code>.</p>
4622
4622
  * @public
4623
4623
  */
4624
- UserName?: string;
4624
+ UserName?: string | undefined;
4625
4625
  /**
4626
4626
  * <p>The identifier of the bundle. All WorkSpaces that are created from this bundle are
4627
4627
  * retrieved. You cannot combine this parameter with any other filter.</p>
4628
4628
  * @public
4629
4629
  */
4630
- BundleId?: string;
4630
+ BundleId?: string | undefined;
4631
4631
  /**
4632
4632
  * <p>The maximum number of items to return.</p>
4633
4633
  * @public
4634
4634
  */
4635
- Limit?: number;
4635
+ Limit?: number | undefined;
4636
4636
  /**
4637
4637
  * <p>If you received a <code>NextToken</code> from a previous call that was paginated,
4638
4638
  * provide this token to receive the next set of results.</p>
4639
4639
  * @public
4640
4640
  */
4641
- NextToken?: string;
4641
+ NextToken?: string | undefined;
4642
4642
  /**
4643
4643
  * <p>The name of the user-decoupled WorkSpace.</p>
4644
4644
  * @public
4645
4645
  */
4646
- WorkspaceName?: string;
4646
+ WorkspaceName?: string | undefined;
4647
4647
  }
4648
4648
  /**
4649
4649
  * @public
@@ -4655,13 +4655,13 @@ export interface DescribeWorkspacesResult {
4655
4655
  * returned information could be incomplete.</p>
4656
4656
  * @public
4657
4657
  */
4658
- Workspaces?: Workspace[];
4658
+ Workspaces?: Workspace[] | undefined;
4659
4659
  /**
4660
4660
  * <p>The token to use to retrieve the next page of results. This value is null when there are
4661
4661
  * no more results to return. </p>
4662
4662
  * @public
4663
4663
  */
4664
- NextToken?: string;
4664
+ NextToken?: string | undefined;
4665
4665
  }
4666
4666
  /**
4667
4667
  * @public
@@ -4671,13 +4671,13 @@ export interface DescribeWorkspacesConnectionStatusRequest {
4671
4671
  * <p>The identifiers of the WorkSpaces. You can specify up to 25 WorkSpaces.</p>
4672
4672
  * @public
4673
4673
  */
4674
- WorkspaceIds?: string[];
4674
+ WorkspaceIds?: string[] | undefined;
4675
4675
  /**
4676
4676
  * <p>If you received a <code>NextToken</code> from a previous call that was paginated,
4677
4677
  * provide this token to receive the next set of results.</p>
4678
4678
  * @public
4679
4679
  */
4680
- NextToken?: string;
4680
+ NextToken?: string | undefined;
4681
4681
  }
4682
4682
  /**
4683
4683
  * <p>Describes the connection status of a WorkSpace.</p>
@@ -4688,23 +4688,23 @@ export interface WorkspaceConnectionStatus {
4688
4688
  * <p>The identifier of the WorkSpace.</p>
4689
4689
  * @public
4690
4690
  */
4691
- WorkspaceId?: string;
4691
+ WorkspaceId?: string | undefined;
4692
4692
  /**
4693
4693
  * <p>The connection state of the WorkSpace. The connection state is unknown if the WorkSpace
4694
4694
  * is stopped.</p>
4695
4695
  * @public
4696
4696
  */
4697
- ConnectionState?: ConnectionState;
4697
+ ConnectionState?: ConnectionState | undefined;
4698
4698
  /**
4699
4699
  * <p>The timestamp of the connection status check.</p>
4700
4700
  * @public
4701
4701
  */
4702
- ConnectionStateCheckTimestamp?: Date;
4702
+ ConnectionStateCheckTimestamp?: Date | undefined;
4703
4703
  /**
4704
4704
  * <p>The timestamp of the last known user connection.</p>
4705
4705
  * @public
4706
4706
  */
4707
- LastKnownUserConnectionTimestamp?: Date;
4707
+ LastKnownUserConnectionTimestamp?: Date | undefined;
4708
4708
  }
4709
4709
  /**
4710
4710
  * @public
@@ -4714,13 +4714,13 @@ export interface DescribeWorkspacesConnectionStatusResult {
4714
4714
  * <p>Information about the connection status of the WorkSpace.</p>
4715
4715
  * @public
4716
4716
  */
4717
- WorkspacesConnectionStatus?: WorkspaceConnectionStatus[];
4717
+ WorkspacesConnectionStatus?: WorkspaceConnectionStatus[] | undefined;
4718
4718
  /**
4719
4719
  * <p>The token to use to retrieve the next page of results. This value is null when there are
4720
4720
  * no more results to return. </p>
4721
4721
  * @public
4722
4722
  */
4723
- NextToken?: string;
4723
+ NextToken?: string | undefined;
4724
4724
  }
4725
4725
  /**
4726
4726
  * @public
@@ -4741,7 +4741,7 @@ export interface Snapshot {
4741
4741
  * <p>The time when the snapshot was created.</p>
4742
4742
  * @public
4743
4743
  */
4744
- SnapshotTime?: Date;
4744
+ SnapshotTime?: Date | undefined;
4745
4745
  }
4746
4746
  /**
4747
4747
  * @public
@@ -4752,13 +4752,13 @@ export interface DescribeWorkspaceSnapshotsResult {
4752
4752
  * include the user volume.</p>
4753
4753
  * @public
4754
4754
  */
4755
- RebuildSnapshots?: Snapshot[];
4755
+ RebuildSnapshots?: Snapshot[] | undefined;
4756
4756
  /**
4757
4757
  * <p>Information about the snapshots that can be used to restore a WorkSpace. These snapshots
4758
4758
  * include both the root volume and the user volume.</p>
4759
4759
  * @public
4760
4760
  */
4761
- RestoreSnapshots?: Snapshot[];
4761
+ RestoreSnapshots?: Snapshot[] | undefined;
4762
4762
  }
4763
4763
  /**
4764
4764
  * @public
@@ -4814,23 +4814,23 @@ export interface DescribeWorkspacesPoolsRequest {
4814
4814
  * <p>The identifier of the WorkSpaces Pools.</p>
4815
4815
  * @public
4816
4816
  */
4817
- PoolIds?: string[];
4817
+ PoolIds?: string[] | undefined;
4818
4818
  /**
4819
4819
  * <p>The filter conditions for the WorkSpaces Pool to return.</p>
4820
4820
  * @public
4821
4821
  */
4822
- Filters?: DescribeWorkspacesPoolsFilter[];
4822
+ Filters?: DescribeWorkspacesPoolsFilter[] | undefined;
4823
4823
  /**
4824
4824
  * <p>The maximum number of items to return.</p>
4825
4825
  * @public
4826
4826
  */
4827
- Limit?: number;
4827
+ Limit?: number | undefined;
4828
4828
  /**
4829
4829
  * <p>If you received a <code>NextToken</code> from a previous call that was paginated,
4830
4830
  * provide this token to receive the next set of results.</p>
4831
4831
  * @public
4832
4832
  */
4833
- NextToken?: string;
4833
+ NextToken?: string | undefined;
4834
4834
  }
4835
4835
  /**
4836
4836
  * @public
@@ -4840,13 +4840,13 @@ export interface DescribeWorkspacesPoolsResult {
4840
4840
  * <p>Information about the WorkSpaces Pools.</p>
4841
4841
  * @public
4842
4842
  */
4843
- WorkspacesPools?: WorkspacesPool[];
4843
+ WorkspacesPools?: WorkspacesPool[] | undefined;
4844
4844
  /**
4845
4845
  * <p>If you received a <code>NextToken</code> from a previous call that was paginated,
4846
4846
  * provide this token to receive the next set of results.</p>
4847
4847
  * @public
4848
4848
  */
4849
- NextToken?: string;
4849
+ NextToken?: string | undefined;
4850
4850
  }
4851
4851
  /**
4852
4852
  * @public
@@ -4861,18 +4861,18 @@ export interface DescribeWorkspacesPoolSessionsRequest {
4861
4861
  * <p>The identifier of the user.</p>
4862
4862
  * @public
4863
4863
  */
4864
- UserId?: string;
4864
+ UserId?: string | undefined;
4865
4865
  /**
4866
4866
  * <p>The maximum number of items to return.</p>
4867
4867
  * @public
4868
4868
  */
4869
- Limit?: number;
4869
+ Limit?: number | undefined;
4870
4870
  /**
4871
4871
  * <p>If you received a <code>NextToken</code> from a previous call that was paginated,
4872
4872
  * provide this token to receive the next set of results.</p>
4873
4873
  * @public
4874
4874
  */
4875
- NextToken?: string;
4875
+ NextToken?: string | undefined;
4876
4876
  }
4877
4877
  /**
4878
4878
  * @public
@@ -4895,13 +4895,13 @@ export interface NetworkAccessConfiguration {
4895
4895
  * <p>The private IP address of the elastic network interface that is attached to instances in your VPC.</p>
4896
4896
  * @public
4897
4897
  */
4898
- EniPrivateIpAddress?: string;
4898
+ EniPrivateIpAddress?: string | undefined;
4899
4899
  /**
4900
4900
  * <p>The resource identifier of the elastic network interface that is attached to instances in your
4901
4901
  * VPC. All network interfaces have the eni-xxxxxxxx resource identifier.</p>
4902
4902
  * @public
4903
4903
  */
4904
- EniId?: string;
4904
+ EniId?: string | undefined;
4905
4905
  }
4906
4906
  /**
4907
4907
  * <p>Describes a pool session.</p>
@@ -4913,12 +4913,12 @@ export interface WorkspacesPoolSession {
4913
4913
  * WorkSpaces Pools URL (API) or SAML 2.0 federation (SAML).</p>
4914
4914
  * @public
4915
4915
  */
4916
- AuthenticationType?: AuthenticationType;
4916
+ AuthenticationType?: AuthenticationType | undefined;
4917
4917
  /**
4918
4918
  * <p>Specifies whether a user is connected to the pool session.</p>
4919
4919
  * @public
4920
4920
  */
4921
- ConnectionState?: SessionConnectionState;
4921
+ ConnectionState?: SessionConnectionState | undefined;
4922
4922
  /**
4923
4923
  * <p>The identifier of the session.</p>
4924
4924
  * @public
@@ -4928,7 +4928,7 @@ export interface WorkspacesPoolSession {
4928
4928
  * <p>The identifier for the instance hosting the session.</p>
4929
4929
  * @public
4930
4930
  */
4931
- InstanceId?: string;
4931
+ InstanceId?: string | undefined;
4932
4932
  /**
4933
4933
  * <p>The identifier of the pool.</p>
4934
4934
  * @public
@@ -4938,17 +4938,17 @@ export interface WorkspacesPoolSession {
4938
4938
  * <p>The time that the pool session ended.</p>
4939
4939
  * @public
4940
4940
  */
4941
- ExpirationTime?: Date;
4941
+ ExpirationTime?: Date | undefined;
4942
4942
  /**
4943
4943
  * <p>Describes the network details of the pool.</p>
4944
4944
  * @public
4945
4945
  */
4946
- NetworkAccessConfiguration?: NetworkAccessConfiguration;
4946
+ NetworkAccessConfiguration?: NetworkAccessConfiguration | undefined;
4947
4947
  /**
4948
4948
  * <p>The time that the pool sission started.</p>
4949
4949
  * @public
4950
4950
  */
4951
- StartTime?: Date;
4951
+ StartTime?: Date | undefined;
4952
4952
  /**
4953
4953
  * <p>The identifier of the user.</p>
4954
4954
  * @public
@@ -4963,13 +4963,13 @@ export interface DescribeWorkspacesPoolSessionsResult {
4963
4963
  * <p>Describes the pool sessions.</p>
4964
4964
  * @public
4965
4965
  */
4966
- Sessions?: WorkspacesPoolSession[];
4966
+ Sessions?: WorkspacesPoolSession[] | undefined;
4967
4967
  /**
4968
4968
  * <p>If you received a <code>NextToken</code> from a previous call that was paginated,
4969
4969
  * provide this token to receive the next set of results.</p>
4970
4970
  * @public
4971
4971
  */
4972
- NextToken?: string;
4972
+ NextToken?: string | undefined;
4973
4973
  }
4974
4974
  /**
4975
4975
  * @public
@@ -5029,7 +5029,7 @@ export interface DisassociateWorkspaceApplicationResult {
5029
5029
  * <p>Information about the targeted association.</p>
5030
5030
  * @public
5031
5031
  */
5032
- Association?: WorkspaceResourceAssociation;
5032
+ Association?: WorkspaceResourceAssociation | undefined;
5033
5033
  }
5034
5034
  /**
5035
5035
  * <p>Describes a WorkSpace that could not be rebooted. (<a>RebootWorkspaces</a>),
@@ -5041,18 +5041,18 @@ export interface FailedWorkspaceChangeRequest {
5041
5041
  * <p>The identifier of the WorkSpace.</p>
5042
5042
  * @public
5043
5043
  */
5044
- WorkspaceId?: string;
5044
+ WorkspaceId?: string | undefined;
5045
5045
  /**
5046
5046
  * <p>The error code that is returned if the WorkSpace cannot be rebooted.</p>
5047
5047
  * @public
5048
5048
  */
5049
- ErrorCode?: string;
5049
+ ErrorCode?: string | undefined;
5050
5050
  /**
5051
5051
  * <p>The text of the error message that is returned if the WorkSpace cannot be
5052
5052
  * rebooted.</p>
5053
5053
  * @public
5054
5054
  */
5055
- ErrorMessage?: string;
5055
+ ErrorMessage?: string | undefined;
5056
5056
  }
5057
5057
  /**
5058
5058
  * @public
@@ -5062,12 +5062,12 @@ export interface GetAccountLinkRequest {
5062
5062
  * <p>The identifier of the account to link.</p>
5063
5063
  * @public
5064
5064
  */
5065
- LinkId?: string;
5065
+ LinkId?: string | undefined;
5066
5066
  /**
5067
5067
  * <p>The identifier of the account link</p>
5068
5068
  * @public
5069
5069
  */
5070
- LinkedAccountId?: string;
5070
+ LinkedAccountId?: string | undefined;
5071
5071
  }
5072
5072
  /**
5073
5073
  * @public
@@ -5077,7 +5077,7 @@ export interface GetAccountLinkResult {
5077
5077
  * <p>The account link of the account link to retrieve.</p>
5078
5078
  * @public
5079
5079
  */
5080
- AccountLink?: AccountLink;
5080
+ AccountLink?: AccountLink | undefined;
5081
5081
  }
5082
5082
  /**
5083
5083
  * <p>The client branding attributes to import for iOS device types. These attributes are
@@ -5096,7 +5096,7 @@ export interface IosImportClientBrandingAttributes {
5096
5096
  * from a <code>.png</code> file.</p>
5097
5097
  * @public
5098
5098
  */
5099
- Logo?: Uint8Array;
5099
+ Logo?: Uint8Array | undefined;
5100
5100
  /**
5101
5101
  * <p>The @2x version of the logo. This is the higher resolution display that offers a scale
5102
5102
  * factor of 2.0 (or @2x). The only image format accepted is a binary data object that is
@@ -5107,7 +5107,7 @@ export interface IosImportClientBrandingAttributes {
5107
5107
  * </note>
5108
5108
  * @public
5109
5109
  */
5110
- Logo2x?: Uint8Array;
5110
+ Logo2x?: Uint8Array | undefined;
5111
5111
  /**
5112
5112
  * <p>The @3x version of the logo. This is the higher resolution display that offers a scale
5113
5113
  * factor of 3.0 (or @3x). The only image format accepted is a binary data object that is
@@ -5118,7 +5118,7 @@ export interface IosImportClientBrandingAttributes {
5118
5118
  * </note>
5119
5119
  * @public
5120
5120
  */
5121
- Logo3x?: Uint8Array;
5121
+ Logo3x?: Uint8Array | undefined;
5122
5122
  /**
5123
5123
  * <p>The support email. The company's customer support email address.</p>
5124
5124
  * <note>
@@ -5135,7 +5135,7 @@ export interface IosImportClientBrandingAttributes {
5135
5135
  * </note>
5136
5136
  * @public
5137
5137
  */
5138
- SupportEmail?: string;
5138
+ SupportEmail?: string | undefined;
5139
5139
  /**
5140
5140
  * <p>The support link. The link for the company's customer support page for their
5141
5141
  * WorkSpace.</p>
@@ -5153,13 +5153,13 @@ export interface IosImportClientBrandingAttributes {
5153
5153
  * </note>
5154
5154
  * @public
5155
5155
  */
5156
- SupportLink?: string;
5156
+ SupportLink?: string | undefined;
5157
5157
  /**
5158
5158
  * <p>The forgotten password link. This is the web address that users can go to if they forget
5159
5159
  * the password for their WorkSpace.</p>
5160
5160
  * @public
5161
5161
  */
5162
- ForgotPasswordLink?: string;
5162
+ ForgotPasswordLink?: string | undefined;
5163
5163
  /**
5164
5164
  * <p>The login message. Specified as a key value pair, in which the key is a locale and the
5165
5165
  * value is the localized message for that locale. The only key supported is
@@ -5167,7 +5167,7 @@ export interface IosImportClientBrandingAttributes {
5167
5167
  * i, li, ol, p, pre, q, small, span, strike, strong, sub, sup, u, ul</code>.</p>
5168
5168
  * @public
5169
5169
  */
5170
- LoginMessage?: Record<string, string>;
5170
+ LoginMessage?: Record<string, string> | undefined;
5171
5171
  }
5172
5172
  /**
5173
5173
  * @public
@@ -5183,32 +5183,32 @@ export interface ImportClientBrandingRequest {
5183
5183
  * <p>The branding information to import for Windows devices.</p>
5184
5184
  * @public
5185
5185
  */
5186
- DeviceTypeWindows?: DefaultImportClientBrandingAttributes;
5186
+ DeviceTypeWindows?: DefaultImportClientBrandingAttributes | undefined;
5187
5187
  /**
5188
5188
  * <p>The branding information to import for macOS devices.</p>
5189
5189
  * @public
5190
5190
  */
5191
- DeviceTypeOsx?: DefaultImportClientBrandingAttributes;
5191
+ DeviceTypeOsx?: DefaultImportClientBrandingAttributes | undefined;
5192
5192
  /**
5193
5193
  * <p>The branding information to import for Android devices.</p>
5194
5194
  * @public
5195
5195
  */
5196
- DeviceTypeAndroid?: DefaultImportClientBrandingAttributes;
5196
+ DeviceTypeAndroid?: DefaultImportClientBrandingAttributes | undefined;
5197
5197
  /**
5198
5198
  * <p>The branding information to import for iOS devices.</p>
5199
5199
  * @public
5200
5200
  */
5201
- DeviceTypeIos?: IosImportClientBrandingAttributes;
5201
+ DeviceTypeIos?: IosImportClientBrandingAttributes | undefined;
5202
5202
  /**
5203
5203
  * <p>The branding information to import for Linux devices.</p>
5204
5204
  * @public
5205
5205
  */
5206
- DeviceTypeLinux?: DefaultImportClientBrandingAttributes;
5206
+ DeviceTypeLinux?: DefaultImportClientBrandingAttributes | undefined;
5207
5207
  /**
5208
5208
  * <p>The branding information to import for web access.</p>
5209
5209
  * @public
5210
5210
  */
5211
- DeviceTypeWeb?: DefaultImportClientBrandingAttributes;
5211
+ DeviceTypeWeb?: DefaultImportClientBrandingAttributes | undefined;
5212
5212
  }
5213
5213
  /**
5214
5214
  * @public
@@ -5218,32 +5218,32 @@ export interface ImportClientBrandingResult {
5218
5218
  * <p>The branding information configured for Windows devices.</p>
5219
5219
  * @public
5220
5220
  */
5221
- DeviceTypeWindows?: DefaultClientBrandingAttributes;
5221
+ DeviceTypeWindows?: DefaultClientBrandingAttributes | undefined;
5222
5222
  /**
5223
5223
  * <p>The branding information configured for macOS devices.</p>
5224
5224
  * @public
5225
5225
  */
5226
- DeviceTypeOsx?: DefaultClientBrandingAttributes;
5226
+ DeviceTypeOsx?: DefaultClientBrandingAttributes | undefined;
5227
5227
  /**
5228
5228
  * <p>The branding information configured for Android devices.</p>
5229
5229
  * @public
5230
5230
  */
5231
- DeviceTypeAndroid?: DefaultClientBrandingAttributes;
5231
+ DeviceTypeAndroid?: DefaultClientBrandingAttributes | undefined;
5232
5232
  /**
5233
5233
  * <p>The branding information configured for iOS devices.</p>
5234
5234
  * @public
5235
5235
  */
5236
- DeviceTypeIos?: IosClientBrandingAttributes;
5236
+ DeviceTypeIos?: IosClientBrandingAttributes | undefined;
5237
5237
  /**
5238
5238
  * <p>The branding information configured for Linux devices.</p>
5239
5239
  * @public
5240
5240
  */
5241
- DeviceTypeLinux?: DefaultClientBrandingAttributes;
5241
+ DeviceTypeLinux?: DefaultClientBrandingAttributes | undefined;
5242
5242
  /**
5243
5243
  * <p>The branding information configured for web access.</p>
5244
5244
  * @public
5245
5245
  */
5246
- DeviceTypeWeb?: DefaultClientBrandingAttributes;
5246
+ DeviceTypeWeb?: DefaultClientBrandingAttributes | undefined;
5247
5247
  }
5248
5248
  /**
5249
5249
  * @public
@@ -5303,7 +5303,7 @@ export interface ImportWorkspaceImageRequest {
5303
5303
  * <p>The tags. Each WorkSpaces resource can have a maximum of 50 tags.</p>
5304
5304
  * @public
5305
5305
  */
5306
- Tags?: Tag[];
5306
+ Tags?: Tag[] | undefined;
5307
5307
  /**
5308
5308
  * <p>If specified, the version of Microsoft Office to subscribe to. Valid only for Windows 10 and 11
5309
5309
  * BYOL images. For more information about subscribing to Office for BYOL images, see <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/byol-windows-images.html"> Bring
@@ -5323,7 +5323,7 @@ export interface ImportWorkspaceImageRequest {
5323
5323
  * </note>
5324
5324
  * @public
5325
5325
  */
5326
- Applications?: Application[];
5326
+ Applications?: Application[] | undefined;
5327
5327
  }
5328
5328
  /**
5329
5329
  * @public
@@ -5333,7 +5333,7 @@ export interface ImportWorkspaceImageResult {
5333
5333
  * <p>The identifier of the WorkSpace image.</p>
5334
5334
  * @public
5335
5335
  */
5336
- ImageId?: string;
5336
+ ImageId?: string | undefined;
5337
5337
  }
5338
5338
  /**
5339
5339
  * @public
@@ -5343,17 +5343,17 @@ export interface ListAccountLinksRequest {
5343
5343
  * <p>Filters the account based on their link status.</p>
5344
5344
  * @public
5345
5345
  */
5346
- LinkStatusFilter?: AccountLinkStatusEnum[];
5346
+ LinkStatusFilter?: AccountLinkStatusEnum[] | undefined;
5347
5347
  /**
5348
5348
  * <p>The token to use to retrieve the next page of results. This value is null when there are no more results to return.</p>
5349
5349
  * @public
5350
5350
  */
5351
- NextToken?: string;
5351
+ NextToken?: string | undefined;
5352
5352
  /**
5353
5353
  * <p>The maximum number of accounts to return.</p>
5354
5354
  * @public
5355
5355
  */
5356
- MaxResults?: number;
5356
+ MaxResults?: number | undefined;
5357
5357
  }
5358
5358
  /**
5359
5359
  * @public
@@ -5363,12 +5363,12 @@ export interface ListAccountLinksResult {
5363
5363
  * <p>Information about the account links.</p>
5364
5364
  * @public
5365
5365
  */
5366
- AccountLinks?: AccountLink[];
5366
+ AccountLinks?: AccountLink[] | undefined;
5367
5367
  /**
5368
5368
  * <p>The token to use to retrieve the next page of results. This value is null when there are no more results to return.</p>
5369
5369
  * @public
5370
5370
  */
5371
- NextToken?: string;
5371
+ NextToken?: string | undefined;
5372
5372
  }
5373
5373
  /**
5374
5374
  * @public
@@ -5384,13 +5384,13 @@ export interface ListAvailableManagementCidrRangesRequest {
5384
5384
  * <p>The maximum number of items to return.</p>
5385
5385
  * @public
5386
5386
  */
5387
- MaxResults?: number;
5387
+ MaxResults?: number | undefined;
5388
5388
  /**
5389
5389
  * <p>If you received a <code>NextToken</code> from a previous call that was paginated,
5390
5390
  * provide this token to receive the next set of results.</p>
5391
5391
  * @public
5392
5392
  */
5393
- NextToken?: string;
5393
+ NextToken?: string | undefined;
5394
5394
  }
5395
5395
  /**
5396
5396
  * @public
@@ -5400,13 +5400,13 @@ export interface ListAvailableManagementCidrRangesResult {
5400
5400
  * <p>The list of available IP address ranges, specified as IPv4 CIDR blocks.</p>
5401
5401
  * @public
5402
5402
  */
5403
- ManagementCidrRanges?: string[];
5403
+ ManagementCidrRanges?: string[] | undefined;
5404
5404
  /**
5405
5405
  * <p>The token to use to retrieve the next page of results. This value is null when there are
5406
5406
  * no more results to return. </p>
5407
5407
  * @public
5408
5408
  */
5409
- NextToken?: string;
5409
+ NextToken?: string | undefined;
5410
5410
  }
5411
5411
  /**
5412
5412
  * @public
@@ -5431,14 +5431,14 @@ export interface MigrateWorkspaceResult {
5431
5431
  * <p>The original identifier of the WorkSpace that is being migrated.</p>
5432
5432
  * @public
5433
5433
  */
5434
- SourceWorkspaceId?: string;
5434
+ SourceWorkspaceId?: string | undefined;
5435
5435
  /**
5436
5436
  * <p>The new identifier of the WorkSpace that is being migrated. If the migration does not
5437
5437
  * succeed, the target WorkSpace ID will not be used, and the WorkSpace will still have the
5438
5438
  * original WorkSpace ID.</p>
5439
5439
  * @public
5440
5440
  */
5441
- TargetWorkspaceId?: string;
5441
+ TargetWorkspaceId?: string | undefined;
5442
5442
  }
5443
5443
  /**
5444
5444
  * <p>The properties of this WorkSpace are currently being modified. Try again in a moment.</p>
@@ -5460,7 +5460,7 @@ export interface ModifyAccountRequest {
5460
5460
  * <p>The status of BYOL.</p>
5461
5461
  * @public
5462
5462
  */
5463
- DedicatedTenancySupport?: DedicatedTenancySupportEnum;
5463
+ DedicatedTenancySupport?: DedicatedTenancySupportEnum | undefined;
5464
5464
  /**
5465
5465
  * <p>The IP address range, specified as an IPv4 CIDR block, for the management network
5466
5466
  * interface. Specify an IP address range that is compatible with your network and in CIDR
@@ -5469,7 +5469,7 @@ export interface ModifyAccountRequest {
5469
5469
  * <code>ListAvailableManagementCidrRanges</code> operation.</p>
5470
5470
  * @public
5471
5471
  */
5472
- DedicatedTenancyManagementCidrRange?: string;
5472
+ DedicatedTenancyManagementCidrRange?: string | undefined;
5473
5473
  }
5474
5474
  /**
5475
5475
  * @public
@@ -5489,12 +5489,12 @@ export interface ModifyCertificateBasedAuthPropertiesRequest {
5489
5489
  * <p>The properties of the certificate-based authentication.</p>
5490
5490
  * @public
5491
5491
  */
5492
- CertificateBasedAuthProperties?: CertificateBasedAuthProperties;
5492
+ CertificateBasedAuthProperties?: CertificateBasedAuthProperties | undefined;
5493
5493
  /**
5494
5494
  * <p>The properties of the certificate-based authentication you want to delete.</p>
5495
5495
  * @public
5496
5496
  */
5497
- PropertiesToDelete?: DeletableCertificateBasedAuthProperty[];
5497
+ PropertiesToDelete?: DeletableCertificateBasedAuthProperty[] | undefined;
5498
5498
  }
5499
5499
  /**
5500
5500
  * @public
@@ -5534,7 +5534,7 @@ export interface ModifySamlPropertiesRequest {
5534
5534
  * <p>The properties for configuring SAML 2.0 authentication.</p>
5535
5535
  * @public
5536
5536
  */
5537
- SamlProperties?: SamlProperties;
5537
+ SamlProperties?: SamlProperties | undefined;
5538
5538
  /**
5539
5539
  * <p>The SAML properties to delete as part of your request.</p>
5540
5540
  * <p>Specify one of the following options:</p>
@@ -5551,7 +5551,7 @@ export interface ModifySamlPropertiesRequest {
5551
5551
  * </ul>
5552
5552
  * @public
5553
5553
  */
5554
- PropertiesToDelete?: DeletableSamlProperty[];
5554
+ PropertiesToDelete?: DeletableSamlProperty[] | undefined;
5555
5555
  }
5556
5556
  /**
5557
5557
  * @public
@@ -5591,7 +5591,7 @@ export interface ModifyStreamingPropertiesRequest {
5591
5591
  * <p>The streaming properties to configure.</p>
5592
5592
  * @public
5593
5593
  */
5594
- StreamingProperties?: StreamingProperties;
5594
+ StreamingProperties?: StreamingProperties | undefined;
5595
5595
  }
5596
5596
  /**
5597
5597
  * @public
@@ -5641,12 +5641,12 @@ export interface WorkspaceCreationProperties {
5641
5641
  * </note>
5642
5642
  * @public
5643
5643
  */
5644
- EnableWorkDocs?: boolean;
5644
+ EnableWorkDocs?: boolean | undefined;
5645
5645
  /**
5646
5646
  * <p>Indicates whether internet access is enabled for your WorkSpaces.</p>
5647
5647
  * @public
5648
5648
  */
5649
- EnableInternetAccess?: boolean;
5649
+ EnableInternetAccess?: boolean | undefined;
5650
5650
  /**
5651
5651
  * <p>The default organizational unit (OU) for your WorkSpaces directories. This string must
5652
5652
  * be the full Lightweight Directory Access Protocol (LDAP) distinguished name for the target
@@ -5668,29 +5668,29 @@ export interface WorkspaceCreationProperties {
5668
5668
  * </important>
5669
5669
  * @public
5670
5670
  */
5671
- DefaultOu?: string;
5671
+ DefaultOu?: string | undefined;
5672
5672
  /**
5673
5673
  * <p>The identifier of your custom security group.</p>
5674
5674
  * @public
5675
5675
  */
5676
- CustomSecurityGroupId?: string;
5676
+ CustomSecurityGroupId?: string | undefined;
5677
5677
  /**
5678
5678
  * <p>Indicates whether users are local administrators of their WorkSpaces.</p>
5679
5679
  * @public
5680
5680
  */
5681
- UserEnabledAsLocalAdministrator?: boolean;
5681
+ UserEnabledAsLocalAdministrator?: boolean | undefined;
5682
5682
  /**
5683
5683
  * <p>Indicates whether maintenance mode is enabled for your WorkSpaces. For more information,
5684
5684
  * see <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/workspace-maintenance.html">WorkSpace
5685
5685
  * Maintenance</a>. </p>
5686
5686
  * @public
5687
5687
  */
5688
- EnableMaintenanceMode?: boolean;
5688
+ EnableMaintenanceMode?: boolean | undefined;
5689
5689
  /**
5690
5690
  * <p>Indicates the IAM role ARN of the instance.</p>
5691
5691
  * @public
5692
5692
  */
5693
- InstanceIamRoleArn?: string;
5693
+ InstanceIamRoleArn?: string | undefined;
5694
5694
  }
5695
5695
  /**
5696
5696
  * @public
@@ -5725,12 +5725,12 @@ export interface ModifyWorkspacePropertiesRequest {
5725
5725
  * <p>The properties of the WorkSpace.</p>
5726
5726
  * @public
5727
5727
  */
5728
- WorkspaceProperties?: WorkspaceProperties;
5728
+ WorkspaceProperties?: WorkspaceProperties | undefined;
5729
5729
  /**
5730
5730
  * <p>Indicates the data replication status.</p>
5731
5731
  * @public
5732
5732
  */
5733
- DataReplication?: DataReplication;
5733
+ DataReplication?: DataReplication | undefined;
5734
5734
  }
5735
5735
  /**
5736
5736
  * @public
@@ -5812,7 +5812,7 @@ export interface RebootWorkspacesResult {
5812
5812
  * <p>Information about the WorkSpaces that could not be rebooted.</p>
5813
5813
  * @public
5814
5814
  */
5815
- FailedRequests?: FailedWorkspaceChangeRequest[];
5815
+ FailedRequests?: FailedWorkspaceChangeRequest[] | undefined;
5816
5816
  }
5817
5817
  /**
5818
5818
  * <p>Describes the information used to rebuild a WorkSpace.</p>
@@ -5843,7 +5843,7 @@ export interface RebuildWorkspacesResult {
5843
5843
  * <p>Information about the WorkSpace that could not be rebuilt.</p>
5844
5844
  * @public
5845
5845
  */
5846
- FailedRequests?: FailedWorkspaceChangeRequest[];
5846
+ FailedRequests?: FailedWorkspaceChangeRequest[] | undefined;
5847
5847
  }
5848
5848
  /**
5849
5849
  * @public
@@ -5858,7 +5858,7 @@ export interface RegisterWorkspaceDirectoryRequest {
5858
5858
  * WorkSpaces, and try again.</p>
5859
5859
  * @public
5860
5860
  */
5861
- DirectoryId?: string;
5861
+ DirectoryId?: string | undefined;
5862
5862
  /**
5863
5863
  * <p>The identifiers of the subnets for your virtual private cloud (VPC). Make sure that the
5864
5864
  * subnets are in supported Availability Zones. The subnets must also be in separate
@@ -5866,7 +5866,7 @@ export interface RegisterWorkspaceDirectoryRequest {
5866
5866
  * OperationNotSupportedException error.</p>
5867
5867
  * @public
5868
5868
  */
5869
- SubnetIds?: string[];
5869
+ SubnetIds?: string[] | undefined;
5870
5870
  /**
5871
5871
  * <p>Indicates whether Amazon WorkDocs is enabled or disabled. If you have enabled this
5872
5872
  * parameter and WorkDocs is not available in the Region, you will receive an
@@ -5874,12 +5874,12 @@ export interface RegisterWorkspaceDirectoryRequest {
5874
5874
  * again.</p>
5875
5875
  * @public
5876
5876
  */
5877
- EnableWorkDocs?: boolean;
5877
+ EnableWorkDocs?: boolean | undefined;
5878
5878
  /**
5879
5879
  * <p>Indicates whether self-service capabilities are enabled or disabled.</p>
5880
5880
  * @public
5881
5881
  */
5882
- EnableSelfService?: boolean;
5882
+ EnableSelfService?: boolean | undefined;
5883
5883
  /**
5884
5884
  * <p>Indicates whether your WorkSpace directory is dedicated or shared. To use Bring Your Own
5885
5885
  * License (BYOL) images, this value must be set to <code>DEDICATED</code> and your Amazon Web Services account must be enabled for BYOL. If your account has not been enabled for
@@ -5888,47 +5888,47 @@ export interface RegisterWorkspaceDirectoryRequest {
5888
5888
  * Desktop Images</a>.</p>
5889
5889
  * @public
5890
5890
  */
5891
- Tenancy?: Tenancy;
5891
+ Tenancy?: Tenancy | undefined;
5892
5892
  /**
5893
5893
  * <p>The tags associated with the directory.</p>
5894
5894
  * @public
5895
5895
  */
5896
- Tags?: Tag[];
5896
+ Tags?: Tag[] | undefined;
5897
5897
  /**
5898
5898
  * <p>The name of the directory to register.</p>
5899
5899
  * @public
5900
5900
  */
5901
- WorkspaceDirectoryName?: string;
5901
+ WorkspaceDirectoryName?: string | undefined;
5902
5902
  /**
5903
5903
  * <p>Description of the directory to register.</p>
5904
5904
  * @public
5905
5905
  */
5906
- WorkspaceDirectoryDescription?: string;
5906
+ WorkspaceDirectoryDescription?: string | undefined;
5907
5907
  /**
5908
5908
  * <p>The type of identity management the user is using.</p>
5909
5909
  * @public
5910
5910
  */
5911
- UserIdentityType?: UserIdentityType;
5911
+ UserIdentityType?: UserIdentityType | undefined;
5912
5912
  /**
5913
5913
  * <p>The Amazon Resource Name (ARN) of the identity center instance.</p>
5914
5914
  * @public
5915
5915
  */
5916
- IdcInstanceArn?: string;
5916
+ IdcInstanceArn?: string | undefined;
5917
5917
  /**
5918
5918
  * <p>The details about Microsoft Entra config.</p>
5919
5919
  * @public
5920
5920
  */
5921
- MicrosoftEntraConfig?: MicrosoftEntraConfig;
5921
+ MicrosoftEntraConfig?: MicrosoftEntraConfig | undefined;
5922
5922
  /**
5923
5923
  * <p>Indicates whether the directory's WorkSpace type is personal or pools.</p>
5924
5924
  * @public
5925
5925
  */
5926
- WorkspaceType?: WorkspaceType;
5926
+ WorkspaceType?: WorkspaceType | undefined;
5927
5927
  /**
5928
5928
  * <p>The active directory config of the directory.</p>
5929
5929
  * @public
5930
5930
  */
5931
- ActiveDirectoryConfig?: ActiveDirectoryConfig;
5931
+ ActiveDirectoryConfig?: ActiveDirectoryConfig | undefined;
5932
5932
  }
5933
5933
  /**
5934
5934
  * @public
@@ -5938,12 +5938,12 @@ export interface RegisterWorkspaceDirectoryResult {
5938
5938
  * <p>The identifier of the directory.</p>
5939
5939
  * @public
5940
5940
  */
5941
- DirectoryId?: string;
5941
+ DirectoryId?: string | undefined;
5942
5942
  /**
5943
5943
  * <p>The registration status of the WorkSpace directory.</p>
5944
5944
  * @public
5945
5945
  */
5946
- State?: WorkspaceDirectoryState;
5946
+ State?: WorkspaceDirectoryState | undefined;
5947
5947
  }
5948
5948
  /**
5949
5949
  * <p>The configuration of this network is not supported for this operation, or your network configuration
@@ -5986,7 +5986,7 @@ export interface RejectAccountLinkInvitationRequest {
5986
5986
  * <p>The client token of the account link invitation to reject.</p>
5987
5987
  * @public
5988
5988
  */
5989
- ClientToken?: string;
5989
+ ClientToken?: string | undefined;
5990
5990
  }
5991
5991
  /**
5992
5992
  * @public
@@ -5996,5 +5996,5 @@ export interface RejectAccountLinkInvitationResult {
5996
5996
  * <p>Information about the account link.</p>
5997
5997
  * @public
5998
5998
  */
5999
- AccountLink?: AccountLink;
5999
+ AccountLink?: AccountLink | undefined;
6000
6000
  }