@aws-sdk/client-omics 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.
@@ -186,7 +186,7 @@ export interface AcceptShareResponse {
186
186
  * <p>The status of the resource share.</p>
187
187
  * @public
188
188
  */
189
- status?: ShareStatus;
189
+ status?: ShareStatus | undefined;
190
190
  }
191
191
  /**
192
192
  * <p>The request cannot be applied to the target resource in its current state.</p>
@@ -226,17 +226,17 @@ export interface ActivateReadSetFilter {
226
226
  * <p>The filter's status.</p>
227
227
  * @public
228
228
  */
229
- status?: ReadSetActivationJobStatus;
229
+ status?: ReadSetActivationJobStatus | undefined;
230
230
  /**
231
231
  * <p>The filter's start date.</p>
232
232
  * @public
233
233
  */
234
- createdAfter?: Date;
234
+ createdAfter?: Date | undefined;
235
235
  /**
236
236
  * <p>The filter's end date.</p>
237
237
  * @public
238
238
  */
239
- createdBefore?: Date;
239
+ createdBefore?: Date | undefined;
240
240
  }
241
241
  /**
242
242
  * <p>A read set activation job.</p>
@@ -267,7 +267,7 @@ export interface ActivateReadSetJobItem {
267
267
  * <p>When the job completed.</p>
268
268
  * @public
269
269
  */
270
- completionTime?: Date;
270
+ completionTime?: Date | undefined;
271
271
  }
272
272
  /**
273
273
  * @public
@@ -302,7 +302,7 @@ export interface ActivateReadSetSourceItem {
302
302
  * <p>The source's status message.</p>
303
303
  * @public
304
304
  */
305
- statusMessage?: string;
305
+ statusMessage?: string | undefined;
306
306
  }
307
307
  /**
308
308
  * @public
@@ -399,47 +399,47 @@ export interface ReadOptions {
399
399
  * <p>The file's field separator.</p>
400
400
  * @public
401
401
  */
402
- sep?: string;
402
+ sep?: string | undefined;
403
403
  /**
404
404
  * <p>The file's encoding.</p>
405
405
  * @public
406
406
  */
407
- encoding?: string;
407
+ encoding?: string | undefined;
408
408
  /**
409
409
  * <p>The file's quote character.</p>
410
410
  * @public
411
411
  */
412
- quote?: string;
412
+ quote?: string | undefined;
413
413
  /**
414
414
  * <p>Whether all values need to be quoted, or just those that contain quotes.</p>
415
415
  * @public
416
416
  */
417
- quoteAll?: boolean;
417
+ quoteAll?: boolean | undefined;
418
418
  /**
419
419
  * <p>A character for escaping quotes in the file.</p>
420
420
  * @public
421
421
  */
422
- escape?: string;
422
+ escape?: string | undefined;
423
423
  /**
424
424
  * <p>Whether quotes need to be escaped in the file.</p>
425
425
  * @public
426
426
  */
427
- escapeQuotes?: boolean;
427
+ escapeQuotes?: boolean | undefined;
428
428
  /**
429
429
  * <p>The file's comment character.</p>
430
430
  * @public
431
431
  */
432
- comment?: string;
432
+ comment?: string | undefined;
433
433
  /**
434
434
  * <p>Whether the file has a header row.</p>
435
435
  * @public
436
436
  */
437
- header?: boolean;
437
+ header?: boolean | undefined;
438
438
  /**
439
439
  * <p>A line separator for the file.</p>
440
440
  * @public
441
441
  */
442
- lineSep?: string;
442
+ lineSep?: string | undefined;
443
443
  }
444
444
  /**
445
445
  * <p>Formatting options for a TSV file.</p>
@@ -450,7 +450,7 @@ export interface TsvOptions {
450
450
  * <p>The file's read options.</p>
451
451
  * @public
452
452
  */
453
- readOptions?: ReadOptions;
453
+ readOptions?: ReadOptions | undefined;
454
454
  }
455
455
  /**
456
456
  * <p>Formatting options for a VCF file.</p>
@@ -461,12 +461,12 @@ export interface VcfOptions {
461
461
  * <p>The file's ignore qual field setting.</p>
462
462
  * @public
463
463
  */
464
- ignoreQualField?: boolean;
464
+ ignoreQualField?: boolean | undefined;
465
465
  /**
466
466
  * <p>The file's ignore filter field setting.</p>
467
467
  * @public
468
468
  */
469
- ignoreFilterField?: boolean;
469
+ ignoreFilterField?: boolean | undefined;
470
470
  }
471
471
  /**
472
472
  * <p>Formatting options for a file.</p>
@@ -580,7 +580,7 @@ export interface GetAnnotationImportResponse {
580
580
  * <p>The annotation schema generated by the parsed annotation data.</p>
581
581
  * @public
582
582
  */
583
- annotationFields?: Record<string, string>;
583
+ annotationFields?: Record<string, string> | undefined;
584
584
  }
585
585
  /**
586
586
  * <p>A filter for annotation import jobs.</p>
@@ -591,12 +591,12 @@ export interface ListAnnotationImportJobsFilter {
591
591
  * <p>A status to filter on.</p>
592
592
  * @public
593
593
  */
594
- status?: JobStatus;
594
+ status?: JobStatus | undefined;
595
595
  /**
596
596
  * <p>A store name to filter on.</p>
597
597
  * @public
598
598
  */
599
- storeName?: string;
599
+ storeName?: string | undefined;
600
600
  }
601
601
  /**
602
602
  * @public
@@ -606,22 +606,22 @@ export interface ListAnnotationImportJobsRequest {
606
606
  * <p>The maximum number of jobs to return in one page of results.</p>
607
607
  * @public
608
608
  */
609
- maxResults?: number;
609
+ maxResults?: number | undefined;
610
610
  /**
611
611
  * <p>IDs of annotation import jobs to retrieve.</p>
612
612
  * @public
613
613
  */
614
- ids?: string[];
614
+ ids?: string[] | undefined;
615
615
  /**
616
616
  * <p>Specifies the pagination token from a previous request to retrieve the next page of results.</p>
617
617
  * @public
618
618
  */
619
- nextToken?: string;
619
+ nextToken?: string | undefined;
620
620
  /**
621
621
  * <p>A filter to apply to the list.</p>
622
622
  * @public
623
623
  */
624
- filter?: ListAnnotationImportJobsFilter;
624
+ filter?: ListAnnotationImportJobsFilter | undefined;
625
625
  }
626
626
  /**
627
627
  * <p>An annotation import job.</p>
@@ -669,19 +669,19 @@ export interface AnnotationImportJobItem {
669
669
  * <p>When the job completed.</p>
670
670
  * @public
671
671
  */
672
- completionTime?: Date;
672
+ completionTime?: Date | undefined;
673
673
  /**
674
674
  * <p>The job's left normalization setting.</p>
675
675
  * @public
676
676
  */
677
- runLeftNormalization?: boolean;
677
+ runLeftNormalization?: boolean | undefined;
678
678
  /**
679
679
  * <p>
680
680
  * The annotation schema generated by the parsed annotation data.
681
681
  * </p>
682
682
  * @public
683
683
  */
684
- annotationFields?: Record<string, string>;
684
+ annotationFields?: Record<string, string> | undefined;
685
685
  }
686
686
  /**
687
687
  * @public
@@ -691,12 +691,12 @@ export interface ListAnnotationImportJobsResponse {
691
691
  * <p>A list of jobs.</p>
692
692
  * @public
693
693
  */
694
- annotationImportJobs?: AnnotationImportJobItem[];
694
+ annotationImportJobs?: AnnotationImportJobItem[] | undefined;
695
695
  /**
696
696
  * <p>Specifies the pagination token from a previous request to retrieve the next page of results.</p>
697
697
  * @public
698
698
  */
699
- nextToken?: string;
699
+ nextToken?: string | undefined;
700
700
  }
701
701
  /**
702
702
  * @public
@@ -723,22 +723,22 @@ export interface StartAnnotationImportRequest {
723
723
  * </p>
724
724
  * @public
725
725
  */
726
- versionName?: string;
726
+ versionName?: string | undefined;
727
727
  /**
728
728
  * <p>Formatting options for the annotation file.</p>
729
729
  * @public
730
730
  */
731
- formatOptions?: FormatOptions;
731
+ formatOptions?: FormatOptions | undefined;
732
732
  /**
733
733
  * <p>The job's left normalization setting.</p>
734
734
  * @public
735
735
  */
736
- runLeftNormalization?: boolean;
736
+ runLeftNormalization?: boolean | undefined;
737
737
  /**
738
738
  * <p>The annotation schema generated by the parsed annotation data.</p>
739
739
  * @public
740
740
  */
741
- annotationFields?: Record<string, string>;
741
+ annotationFields?: Record<string, string> | undefined;
742
742
  }
743
743
  /**
744
744
  * @public
@@ -808,7 +808,7 @@ export interface SseConfig {
808
808
  * <p>An encryption key ARN.</p>
809
809
  * @public
810
810
  */
811
- keyArn?: string;
811
+ keyArn?: string | undefined;
812
812
  }
813
813
  /**
814
814
  * @public
@@ -929,17 +929,17 @@ export interface TsvStoreOptions {
929
929
  * <p>The store's annotation type.</p>
930
930
  * @public
931
931
  */
932
- annotationType?: AnnotationType;
932
+ annotationType?: AnnotationType | undefined;
933
933
  /**
934
934
  * <p>The store's header key to column name mapping.</p>
935
935
  * @public
936
936
  */
937
- formatToHeader?: Partial<Record<FormatToHeaderKey, string>>;
937
+ formatToHeader?: Partial<Record<FormatToHeaderKey, string>> | undefined;
938
938
  /**
939
939
  * <p>The store's schema.</p>
940
940
  * @public
941
941
  */
942
- schema?: Record<string, SchemaValueType>[];
942
+ schema?: Record<string, SchemaValueType>[] | undefined;
943
943
  }
944
944
  /**
945
945
  * <p>Settings for a store.</p>
@@ -979,34 +979,34 @@ export interface CreateAnnotationStoreRequest {
979
979
  * <p>The genome reference for the store's annotations.</p>
980
980
  * @public
981
981
  */
982
- reference?: ReferenceItem;
982
+ reference?: ReferenceItem | undefined;
983
983
  /**
984
984
  * <p>A name for the store.</p>
985
985
  * @public
986
986
  */
987
- name?: string;
987
+ name?: string | undefined;
988
988
  /**
989
989
  * <p>A description for the store.</p>
990
990
  * @public
991
991
  */
992
- description?: string;
992
+ description?: string | undefined;
993
993
  /**
994
994
  * <p>Tags for the store.</p>
995
995
  * @public
996
996
  */
997
- tags?: Record<string, string>;
997
+ tags?: Record<string, string> | undefined;
998
998
  /**
999
999
  * <p>
1000
1000
  * The name given to an annotation store version to distinguish it from other versions.
1001
1001
  * </p>
1002
1002
  * @public
1003
1003
  */
1004
- versionName?: string;
1004
+ versionName?: string | undefined;
1005
1005
  /**
1006
1006
  * <p>Server-side encryption (SSE) settings for the store.</p>
1007
1007
  * @public
1008
1008
  */
1009
- sseConfig?: SseConfig;
1009
+ sseConfig?: SseConfig | undefined;
1010
1010
  /**
1011
1011
  * <p>The annotation file format of the store.</p>
1012
1012
  * @public
@@ -1016,7 +1016,7 @@ export interface CreateAnnotationStoreRequest {
1016
1016
  * <p>File parsing options for the annotation store.</p>
1017
1017
  * @public
1018
1018
  */
1019
- storeOptions?: StoreOptions;
1019
+ storeOptions?: StoreOptions | undefined;
1020
1020
  }
1021
1021
  /**
1022
1022
  * @public
@@ -1061,17 +1061,17 @@ export interface CreateAnnotationStoreResponse {
1061
1061
  * <p>The store's genome reference. Required for all stores except TSV format with generic annotations.</p>
1062
1062
  * @public
1063
1063
  */
1064
- reference?: ReferenceItem;
1064
+ reference?: ReferenceItem | undefined;
1065
1065
  /**
1066
1066
  * <p>The annotation file format of the store.</p>
1067
1067
  * @public
1068
1068
  */
1069
- storeFormat?: StoreFormat;
1069
+ storeFormat?: StoreFormat | undefined;
1070
1070
  /**
1071
1071
  * <p>The store's file parsing options.</p>
1072
1072
  * @public
1073
1073
  */
1074
- storeOptions?: StoreOptions;
1074
+ storeOptions?: StoreOptions | undefined;
1075
1075
  /**
1076
1076
  * <p>The store's status.</p>
1077
1077
  * @public
@@ -1108,7 +1108,7 @@ export interface DeleteAnnotationStoreRequest {
1108
1108
  * <p>Whether to force deletion.</p>
1109
1109
  * @public
1110
1110
  */
1111
- force?: boolean;
1111
+ force?: boolean | undefined;
1112
1112
  }
1113
1113
  /**
1114
1114
  * @public
@@ -1188,12 +1188,12 @@ export interface GetAnnotationStoreResponse {
1188
1188
  * <p>The store's parsing options.</p>
1189
1189
  * @public
1190
1190
  */
1191
- storeOptions?: StoreOptions;
1191
+ storeOptions?: StoreOptions | undefined;
1192
1192
  /**
1193
1193
  * <p>The store's annotation file format.</p>
1194
1194
  * @public
1195
1195
  */
1196
- storeFormat?: StoreFormat;
1196
+ storeFormat?: StoreFormat | undefined;
1197
1197
  /**
1198
1198
  * <p>A status message.</p>
1199
1199
  * @public
@@ -1221,7 +1221,7 @@ export interface ListAnnotationStoresFilter {
1221
1221
  * <p>A status to filter on.</p>
1222
1222
  * @public
1223
1223
  */
1224
- status?: StoreStatus;
1224
+ status?: StoreStatus | undefined;
1225
1225
  }
1226
1226
  /**
1227
1227
  * @public
@@ -1231,22 +1231,22 @@ export interface ListAnnotationStoresRequest {
1231
1231
  * <p>IDs of stores to list.</p>
1232
1232
  * @public
1233
1233
  */
1234
- ids?: string[];
1234
+ ids?: string[] | undefined;
1235
1235
  /**
1236
1236
  * <p>The maximum number of stores to return in one page of results.</p>
1237
1237
  * @public
1238
1238
  */
1239
- maxResults?: number;
1239
+ maxResults?: number | undefined;
1240
1240
  /**
1241
1241
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
1242
1242
  * @public
1243
1243
  */
1244
- nextToken?: string;
1244
+ nextToken?: string | undefined;
1245
1245
  /**
1246
1246
  * <p>A filter to apply to the list.</p>
1247
1247
  * @public
1248
1248
  */
1249
- filter?: ListAnnotationStoresFilter;
1249
+ filter?: ListAnnotationStoresFilter | undefined;
1250
1250
  }
1251
1251
  /**
1252
1252
  * <p>An annotation store.</p>
@@ -1322,12 +1322,12 @@ export interface ListAnnotationStoresResponse {
1322
1322
  * <p>A list of stores.</p>
1323
1323
  * @public
1324
1324
  */
1325
- annotationStores?: AnnotationStoreItem[];
1325
+ annotationStores?: AnnotationStoreItem[] | undefined;
1326
1326
  /**
1327
1327
  * <p>A pagination token that's included if more results are available.</p>
1328
1328
  * @public
1329
1329
  */
1330
- nextToken?: string;
1330
+ nextToken?: string | undefined;
1331
1331
  }
1332
1332
  /**
1333
1333
  * @public
@@ -1342,7 +1342,7 @@ export interface UpdateAnnotationStoreRequest {
1342
1342
  * <p>A description for the store.</p>
1343
1343
  * @public
1344
1344
  */
1345
- description?: string;
1345
+ description?: string | undefined;
1346
1346
  }
1347
1347
  /**
1348
1348
  * @public
@@ -1387,12 +1387,12 @@ export interface UpdateAnnotationStoreResponse {
1387
1387
  * <p>Parsing options for the store.</p>
1388
1388
  * @public
1389
1389
  */
1390
- storeOptions?: StoreOptions;
1390
+ storeOptions?: StoreOptions | undefined;
1391
1391
  /**
1392
1392
  * <p>The annotation file format of the store.</p>
1393
1393
  * @public
1394
1394
  */
1395
- storeFormat?: StoreFormat;
1395
+ storeFormat?: StoreFormat | undefined;
1396
1396
  }
1397
1397
  /**
1398
1398
  * <p>
@@ -1407,21 +1407,21 @@ export interface TsvVersionOptions {
1407
1407
  * </p>
1408
1408
  * @public
1409
1409
  */
1410
- annotationType?: AnnotationType;
1410
+ annotationType?: AnnotationType | undefined;
1411
1411
  /**
1412
1412
  * <p>
1413
1413
  * The annotation store version's header key to column name mapping.
1414
1414
  * </p>
1415
1415
  * @public
1416
1416
  */
1417
- formatToHeader?: Partial<Record<FormatToHeaderKey, string>>;
1417
+ formatToHeader?: Partial<Record<FormatToHeaderKey, string>> | undefined;
1418
1418
  /**
1419
1419
  * <p>
1420
1420
  * The TSV schema for an annotation store version.
1421
1421
  * </p>
1422
1422
  * @public
1423
1423
  */
1424
- schema?: Record<string, SchemaValueType>[];
1424
+ schema?: Record<string, SchemaValueType>[] | undefined;
1425
1425
  }
1426
1426
  /**
1427
1427
  * <p>
@@ -1481,21 +1481,21 @@ export interface CreateAnnotationStoreVersionRequest {
1481
1481
  * </p>
1482
1482
  * @public
1483
1483
  */
1484
- description?: string;
1484
+ description?: string | undefined;
1485
1485
  /**
1486
1486
  * <p>
1487
1487
  * The options for an annotation store version.
1488
1488
  * </p>
1489
1489
  * @public
1490
1490
  */
1491
- versionOptions?: VersionOptions;
1491
+ versionOptions?: VersionOptions | undefined;
1492
1492
  /**
1493
1493
  * <p>
1494
1494
  * Any tags added to annotation store version.
1495
1495
  * </p>
1496
1496
  * @public
1497
1497
  */
1498
- tags?: Record<string, string>;
1498
+ tags?: Record<string, string> | undefined;
1499
1499
  }
1500
1500
  /**
1501
1501
  * @public
@@ -1558,7 +1558,7 @@ export interface CreateAnnotationStoreVersionResponse {
1558
1558
  * </p>
1559
1559
  * @public
1560
1560
  */
1561
- versionOptions?: VersionOptions;
1561
+ versionOptions?: VersionOptions | undefined;
1562
1562
  /**
1563
1563
  * <p>
1564
1564
  * The name given to an annotation store version to distinguish it from other versions.
@@ -1605,7 +1605,7 @@ export interface DeleteAnnotationStoreVersionsRequest {
1605
1605
  * </p>
1606
1606
  * @public
1607
1607
  */
1608
- force?: boolean;
1608
+ force?: boolean | undefined;
1609
1609
  }
1610
1610
  /**
1611
1611
  * <p>
@@ -1639,7 +1639,7 @@ export interface DeleteAnnotationStoreVersionsResponse {
1639
1639
  * </p>
1640
1640
  * @public
1641
1641
  */
1642
- errors?: VersionDeleteError[];
1642
+ errors?: VersionDeleteError[] | undefined;
1643
1643
  }
1644
1644
  /**
1645
1645
  * @public
@@ -1740,7 +1740,7 @@ export interface GetAnnotationStoreVersionResponse {
1740
1740
  * </p>
1741
1741
  * @public
1742
1742
  */
1743
- versionOptions?: VersionOptions;
1743
+ versionOptions?: VersionOptions | undefined;
1744
1744
  /**
1745
1745
  * <p>
1746
1746
  * The status of an annotation store version.
@@ -1766,7 +1766,7 @@ export interface ListAnnotationStoreVersionsFilter {
1766
1766
  * <p>The status of an annotation store version.</p>
1767
1767
  * @public
1768
1768
  */
1769
- status?: VersionStatus;
1769
+ status?: VersionStatus | undefined;
1770
1770
  }
1771
1771
  /**
1772
1772
  * @public
@@ -1785,21 +1785,21 @@ export interface ListAnnotationStoreVersionsRequest {
1785
1785
  * </p>
1786
1786
  * @public
1787
1787
  */
1788
- maxResults?: number;
1788
+ maxResults?: number | undefined;
1789
1789
  /**
1790
1790
  * <p>
1791
1791
  * Specifies the pagination token from a previous request to retrieve the next page of results.
1792
1792
  * </p>
1793
1793
  * @public
1794
1794
  */
1795
- nextToken?: string;
1795
+ nextToken?: string | undefined;
1796
1796
  /**
1797
1797
  * <p>
1798
1798
  * A filter to apply to the list of annotation store versions.
1799
1799
  * </p>
1800
1800
  * @public
1801
1801
  */
1802
- filter?: ListAnnotationStoreVersionsFilter;
1802
+ filter?: ListAnnotationStoreVersionsFilter | undefined;
1803
1803
  }
1804
1804
  /**
1805
1805
  * <p>
@@ -1896,14 +1896,14 @@ export interface ListAnnotationStoreVersionsResponse {
1896
1896
  * </p>
1897
1897
  * @public
1898
1898
  */
1899
- annotationStoreVersions?: AnnotationStoreVersionItem[];
1899
+ annotationStoreVersions?: AnnotationStoreVersionItem[] | undefined;
1900
1900
  /**
1901
1901
  * <p>
1902
1902
  * Specifies the pagination token from a previous request to retrieve the next page of results.
1903
1903
  * </p>
1904
1904
  * @public
1905
1905
  */
1906
- nextToken?: string;
1906
+ nextToken?: string | undefined;
1907
1907
  }
1908
1908
  /**
1909
1909
  * @public
@@ -1929,7 +1929,7 @@ export interface UpdateAnnotationStoreVersionRequest {
1929
1929
  * </p>
1930
1930
  * @public
1931
1931
  */
1932
- description?: string;
1932
+ description?: string | undefined;
1933
1933
  }
1934
1934
  /**
1935
1935
  * @public
@@ -2035,7 +2035,7 @@ export interface BatchDeleteReadSetResponse {
2035
2035
  * <p>Errors returned by individual delete operations.</p>
2036
2036
  * @public
2037
2037
  */
2038
- errors?: ReadSetBatchError[];
2038
+ errors?: ReadSetBatchError[] | undefined;
2039
2039
  }
2040
2040
  /**
2041
2041
  * @public
@@ -2160,7 +2160,7 @@ export interface CreateMultipartReadSetUploadRequest {
2160
2160
  * <p>An idempotency token that can be used to avoid triggering multiple multipart uploads.</p>
2161
2161
  * @public
2162
2162
  */
2163
- clientToken?: string;
2163
+ clientToken?: string | undefined;
2164
2164
  /**
2165
2165
  * <p>The type of file being uploaded.</p>
2166
2166
  * @public
@@ -2180,12 +2180,12 @@ export interface CreateMultipartReadSetUploadRequest {
2180
2180
  * <p>Where the source originated.</p>
2181
2181
  * @public
2182
2182
  */
2183
- generatedFrom?: string;
2183
+ generatedFrom?: string | undefined;
2184
2184
  /**
2185
2185
  * <p>The ARN of the reference.</p>
2186
2186
  * @public
2187
2187
  */
2188
- referenceArn?: string;
2188
+ referenceArn?: string | undefined;
2189
2189
  /**
2190
2190
  * <p>The name of the read set.</p>
2191
2191
  * @public
@@ -2195,12 +2195,12 @@ export interface CreateMultipartReadSetUploadRequest {
2195
2195
  * <p>The description of the read set.</p>
2196
2196
  * @public
2197
2197
  */
2198
- description?: string;
2198
+ description?: string | undefined;
2199
2199
  /**
2200
2200
  * <p>Any tags to add to the read set.</p>
2201
2201
  * @public
2202
2202
  */
2203
- tags?: Record<string, string>;
2203
+ tags?: Record<string, string> | undefined;
2204
2204
  }
2205
2205
  /**
2206
2206
  * @public
@@ -2235,7 +2235,7 @@ export interface CreateMultipartReadSetUploadResponse {
2235
2235
  * <p>The source of the read set.</p>
2236
2236
  * @public
2237
2237
  */
2238
- generatedFrom?: string;
2238
+ generatedFrom?: string | undefined;
2239
2239
  /**
2240
2240
  * <p>The read set source's reference ARN.</p>
2241
2241
  * @public
@@ -2245,17 +2245,17 @@ export interface CreateMultipartReadSetUploadResponse {
2245
2245
  * <p>The name of the read set.</p>
2246
2246
  * @public
2247
2247
  */
2248
- name?: string;
2248
+ name?: string | undefined;
2249
2249
  /**
2250
2250
  * <p>The description of the read set.</p>
2251
2251
  * @public
2252
2252
  */
2253
- description?: string;
2253
+ description?: string | undefined;
2254
2254
  /**
2255
2255
  * <p>The tags to add to the read set.</p>
2256
2256
  * @public
2257
2257
  */
2258
- tags?: Record<string, string>;
2258
+ tags?: Record<string, string> | undefined;
2259
2259
  /**
2260
2260
  * <p>The creation time of the multipart upload.</p>
2261
2261
  * @public
@@ -2275,22 +2275,22 @@ export interface CreateReferenceStoreRequest {
2275
2275
  * <p>A description for the store.</p>
2276
2276
  * @public
2277
2277
  */
2278
- description?: string;
2278
+ description?: string | undefined;
2279
2279
  /**
2280
2280
  * <p>Server-side encryption (SSE) settings for the store.</p>
2281
2281
  * @public
2282
2282
  */
2283
- sseConfig?: SseConfig;
2283
+ sseConfig?: SseConfig | undefined;
2284
2284
  /**
2285
2285
  * <p>Tags for the store.</p>
2286
2286
  * @public
2287
2287
  */
2288
- tags?: Record<string, string>;
2288
+ tags?: Record<string, string> | undefined;
2289
2289
  /**
2290
2290
  * <p>To ensure that requests don't run multiple times, specify a unique token for each request.</p>
2291
2291
  * @public
2292
2292
  */
2293
- clientToken?: string;
2293
+ clientToken?: string | undefined;
2294
2294
  }
2295
2295
  /**
2296
2296
  * @public
@@ -2310,17 +2310,17 @@ export interface CreateReferenceStoreResponse {
2310
2310
  * <p>The store's name.</p>
2311
2311
  * @public
2312
2312
  */
2313
- name?: string;
2313
+ name?: string | undefined;
2314
2314
  /**
2315
2315
  * <p>The store's description.</p>
2316
2316
  * @public
2317
2317
  */
2318
- description?: string;
2318
+ description?: string | undefined;
2319
2319
  /**
2320
2320
  * <p>The store's SSE settings.</p>
2321
2321
  * @public
2322
2322
  */
2323
- sseConfig?: SseConfig;
2323
+ sseConfig?: SseConfig | undefined;
2324
2324
  /**
2325
2325
  * <p>When the store was created.</p>
2326
2326
  * @public
@@ -2335,40 +2335,40 @@ export interface CreateRunGroupRequest {
2335
2335
  * <p>A name for the group.</p>
2336
2336
  * @public
2337
2337
  */
2338
- name?: string;
2338
+ name?: string | undefined;
2339
2339
  /**
2340
2340
  * <p>The maximum number of CPUs that can run
2341
2341
  * concurrently across all active runs in the run group.</p>
2342
2342
  * @public
2343
2343
  */
2344
- maxCpus?: number;
2344
+ maxCpus?: number | undefined;
2345
2345
  /**
2346
2346
  * <p>The maximum number of runs that can be running at the same time.</p>
2347
2347
  * @public
2348
2348
  */
2349
- maxRuns?: number;
2349
+ maxRuns?: number | undefined;
2350
2350
  /**
2351
2351
  * <p>The maximum time for each run (in minutes). If a run exceeds
2352
2352
  * the maximum run time, the run fails automatically.</p>
2353
2353
  * @public
2354
2354
  */
2355
- maxDuration?: number;
2355
+ maxDuration?: number | undefined;
2356
2356
  /**
2357
2357
  * <p>Tags for the group.</p>
2358
2358
  * @public
2359
2359
  */
2360
- tags?: Record<string, string>;
2360
+ tags?: Record<string, string> | undefined;
2361
2361
  /**
2362
2362
  * <p>To ensure that requests don't run multiple times, specify a unique ID for each request.</p>
2363
2363
  * @public
2364
2364
  */
2365
- requestId?: string;
2365
+ requestId?: string | undefined;
2366
2366
  /**
2367
2367
  * <p>The maximum number of GPUs that can run concurrently across all active
2368
2368
  * runs in the run group.</p>
2369
2369
  * @public
2370
2370
  */
2371
- maxGpus?: number;
2371
+ maxGpus?: number | undefined;
2372
2372
  }
2373
2373
  /**
2374
2374
  * @public
@@ -2378,17 +2378,17 @@ export interface CreateRunGroupResponse {
2378
2378
  * <p>The group's ARN.</p>
2379
2379
  * @public
2380
2380
  */
2381
- arn?: string;
2381
+ arn?: string | undefined;
2382
2382
  /**
2383
2383
  * <p>The group's ID.</p>
2384
2384
  * @public
2385
2385
  */
2386
- id?: string;
2386
+ id?: string | undefined;
2387
2387
  /**
2388
2388
  * <p>Tags for the run group.</p>
2389
2389
  * @public
2390
2390
  */
2391
- tags?: Record<string, string>;
2391
+ tags?: Record<string, string> | undefined;
2392
2392
  }
2393
2393
  /**
2394
2394
  * @public
@@ -2416,32 +2416,32 @@ export interface CreateSequenceStoreRequest {
2416
2416
  * <p>A description for the store.</p>
2417
2417
  * @public
2418
2418
  */
2419
- description?: string;
2419
+ description?: string | undefined;
2420
2420
  /**
2421
2421
  * <p>Server-side encryption (SSE) settings for the store.</p>
2422
2422
  * @public
2423
2423
  */
2424
- sseConfig?: SseConfig;
2424
+ sseConfig?: SseConfig | undefined;
2425
2425
  /**
2426
2426
  * <p>Tags for the store.</p>
2427
2427
  * @public
2428
2428
  */
2429
- tags?: Record<string, string>;
2429
+ tags?: Record<string, string> | undefined;
2430
2430
  /**
2431
2431
  * <p>To ensure that requests don't run multiple times, specify a unique token for each request.</p>
2432
2432
  * @public
2433
2433
  */
2434
- clientToken?: string;
2434
+ clientToken?: string | undefined;
2435
2435
  /**
2436
2436
  * <p>An S3 location that is used to store files that have failed a direct upload.</p>
2437
2437
  * @public
2438
2438
  */
2439
- fallbackLocation?: string;
2439
+ fallbackLocation?: string | undefined;
2440
2440
  /**
2441
2441
  * <p>The ETag algorithm family to use for ingested read sets.</p>
2442
2442
  * @public
2443
2443
  */
2444
- eTagAlgorithmFamily?: ETagAlgorithmFamily;
2444
+ eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
2445
2445
  }
2446
2446
  /**
2447
2447
  * @public
@@ -2461,17 +2461,17 @@ export interface CreateSequenceStoreResponse {
2461
2461
  * <p>The store's name.</p>
2462
2462
  * @public
2463
2463
  */
2464
- name?: string;
2464
+ name?: string | undefined;
2465
2465
  /**
2466
2466
  * <p>The store's description.</p>
2467
2467
  * @public
2468
2468
  */
2469
- description?: string;
2469
+ description?: string | undefined;
2470
2470
  /**
2471
2471
  * <p>The store's SSE settings.</p>
2472
2472
  * @public
2473
2473
  */
2474
- sseConfig?: SseConfig;
2474
+ sseConfig?: SseConfig | undefined;
2475
2475
  /**
2476
2476
  * <p>When the store was created.</p>
2477
2477
  * @public
@@ -2481,12 +2481,12 @@ export interface CreateSequenceStoreResponse {
2481
2481
  * <p>An S3 location that is used to store files that have failed a direct upload.</p>
2482
2482
  * @public
2483
2483
  */
2484
- fallbackLocation?: string;
2484
+ fallbackLocation?: string | undefined;
2485
2485
  /**
2486
2486
  * <p>The algorithm family of the ETag.</p>
2487
2487
  * @public
2488
2488
  */
2489
- eTagAlgorithmFamily?: ETagAlgorithmFamily;
2489
+ eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
2490
2490
  }
2491
2491
  /**
2492
2492
  * @public
@@ -2506,7 +2506,7 @@ export interface CreateShareRequest {
2506
2506
  * <p>A name that the owner defines for the share.</p>
2507
2507
  * @public
2508
2508
  */
2509
- shareName?: string;
2509
+ shareName?: string | undefined;
2510
2510
  }
2511
2511
  /**
2512
2512
  * @public
@@ -2516,17 +2516,17 @@ export interface CreateShareResponse {
2516
2516
  * <p>The ID that HealthOmics generates for the share.</p>
2517
2517
  * @public
2518
2518
  */
2519
- shareId?: string;
2519
+ shareId?: string | undefined;
2520
2520
  /**
2521
2521
  * <p>The status of the share.</p>
2522
2522
  * @public
2523
2523
  */
2524
- status?: ShareStatus;
2524
+ status?: ShareStatus | undefined;
2525
2525
  /**
2526
2526
  * <p>The name of the share.</p>
2527
2527
  * @public
2528
2528
  */
2529
- shareName?: string;
2529
+ shareName?: string | undefined;
2530
2530
  }
2531
2531
  /**
2532
2532
  * @public
@@ -2541,22 +2541,22 @@ export interface CreateVariantStoreRequest {
2541
2541
  * <p>A name for the store.</p>
2542
2542
  * @public
2543
2543
  */
2544
- name?: string;
2544
+ name?: string | undefined;
2545
2545
  /**
2546
2546
  * <p>A description for the store.</p>
2547
2547
  * @public
2548
2548
  */
2549
- description?: string;
2549
+ description?: string | undefined;
2550
2550
  /**
2551
2551
  * <p>Tags for the store.</p>
2552
2552
  * @public
2553
2553
  */
2554
- tags?: Record<string, string>;
2554
+ tags?: Record<string, string> | undefined;
2555
2555
  /**
2556
2556
  * <p>Server-side encryption (SSE) settings for the store.</p>
2557
2557
  * @public
2558
2558
  */
2559
- sseConfig?: SseConfig;
2559
+ sseConfig?: SseConfig | undefined;
2560
2560
  }
2561
2561
  /**
2562
2562
  * @public
@@ -2571,7 +2571,7 @@ export interface CreateVariantStoreResponse {
2571
2571
  * <p>The store's genome reference.</p>
2572
2572
  * @public
2573
2573
  */
2574
- reference?: ReferenceItem;
2574
+ reference?: ReferenceItem | undefined;
2575
2575
  /**
2576
2576
  * <p>The store's status.</p>
2577
2577
  * @public
@@ -2610,12 +2610,12 @@ export interface WorkflowParameter {
2610
2610
  * <p>The parameter's description.</p>
2611
2611
  * @public
2612
2612
  */
2613
- description?: string;
2613
+ description?: string | undefined;
2614
2614
  /**
2615
2615
  * <p>Whether the parameter is optional.</p>
2616
2616
  * @public
2617
2617
  */
2618
- optional?: boolean;
2618
+ optional?: boolean | undefined;
2619
2619
  }
2620
2620
  /**
2621
2621
  * @public
@@ -2625,57 +2625,57 @@ export interface CreateWorkflowRequest {
2625
2625
  * <p>A name for the workflow.</p>
2626
2626
  * @public
2627
2627
  */
2628
- name?: string;
2628
+ name?: string | undefined;
2629
2629
  /**
2630
2630
  * <p>A description for the workflow.</p>
2631
2631
  * @public
2632
2632
  */
2633
- description?: string;
2633
+ description?: string | undefined;
2634
2634
  /**
2635
2635
  * <p>An engine for the workflow.</p>
2636
2636
  * @public
2637
2637
  */
2638
- engine?: WorkflowEngine;
2638
+ engine?: WorkflowEngine | undefined;
2639
2639
  /**
2640
2640
  * <p>A ZIP archive for the workflow.</p>
2641
2641
  * @public
2642
2642
  */
2643
- definitionZip?: Uint8Array;
2643
+ definitionZip?: Uint8Array | undefined;
2644
2644
  /**
2645
2645
  * <p>The URI of a definition for the workflow.</p>
2646
2646
  * @public
2647
2647
  */
2648
- definitionUri?: string;
2648
+ definitionUri?: string | undefined;
2649
2649
  /**
2650
2650
  * <p>The path of the main definition file for the workflow.</p>
2651
2651
  * @public
2652
2652
  */
2653
- main?: string;
2653
+ main?: string | undefined;
2654
2654
  /**
2655
2655
  * <p>A parameter template for the workflow.</p>
2656
2656
  * @public
2657
2657
  */
2658
- parameterTemplate?: Record<string, WorkflowParameter>;
2658
+ parameterTemplate?: Record<string, WorkflowParameter> | undefined;
2659
2659
  /**
2660
2660
  * <p>The default storage capacity for the workflow runs, in gibibytes.</p>
2661
2661
  * @public
2662
2662
  */
2663
- storageCapacity?: number;
2663
+ storageCapacity?: number | undefined;
2664
2664
  /**
2665
2665
  * <p>Tags for the workflow.</p>
2666
2666
  * @public
2667
2667
  */
2668
- tags?: Record<string, string>;
2668
+ tags?: Record<string, string> | undefined;
2669
2669
  /**
2670
2670
  * <p>To ensure that requests don't run multiple times, specify a unique ID for each request.</p>
2671
2671
  * @public
2672
2672
  */
2673
- requestId?: string;
2673
+ requestId?: string | undefined;
2674
2674
  /**
2675
2675
  * <p>The computational accelerator specified to run the workflow.</p>
2676
2676
  * @public
2677
2677
  */
2678
- accelerators?: Accelerators;
2678
+ accelerators?: Accelerators | undefined;
2679
2679
  }
2680
2680
  /**
2681
2681
  * @public
@@ -2701,22 +2701,22 @@ export interface CreateWorkflowResponse {
2701
2701
  * <p>The workflow's ARN.</p>
2702
2702
  * @public
2703
2703
  */
2704
- arn?: string;
2704
+ arn?: string | undefined;
2705
2705
  /**
2706
2706
  * <p>The workflow's ID.</p>
2707
2707
  * @public
2708
2708
  */
2709
- id?: string;
2709
+ id?: string | undefined;
2710
2710
  /**
2711
2711
  * <p>The workflow's status.</p>
2712
2712
  * @public
2713
2713
  */
2714
- status?: WorkflowStatus;
2714
+ status?: WorkflowStatus | undefined;
2715
2715
  /**
2716
2716
  * <p>The workflow's tags.</p>
2717
2717
  * @public
2718
2718
  */
2719
- tags?: Record<string, string>;
2719
+ tags?: Record<string, string> | undefined;
2720
2720
  }
2721
2721
  /**
2722
2722
  * @public
@@ -2818,7 +2818,7 @@ export interface DeleteShareResponse {
2818
2818
  * <p>The status of the share being deleted.</p>
2819
2819
  * @public
2820
2820
  */
2821
- status?: ShareStatus;
2821
+ status?: ShareStatus | undefined;
2822
2822
  }
2823
2823
  /**
2824
2824
  * @public
@@ -2833,7 +2833,7 @@ export interface DeleteVariantStoreRequest {
2833
2833
  * <p>Whether to force deletion.</p>
2834
2834
  * @public
2835
2835
  */
2836
- force?: boolean;
2836
+ force?: boolean | undefined;
2837
2837
  }
2838
2838
  /**
2839
2839
  * @public
@@ -2883,17 +2883,17 @@ export interface ETag {
2883
2883
  * <p>The algorithm used to calculate the read set’s ETag(s).</p>
2884
2884
  * @public
2885
2885
  */
2886
- algorithm?: ETagAlgorithm;
2886
+ algorithm?: ETagAlgorithm | undefined;
2887
2887
  /**
2888
2888
  * <p>The ETag hash calculated on Source1 of the read set.</p>
2889
2889
  * @public
2890
2890
  */
2891
- source1?: string;
2891
+ source1?: string | undefined;
2892
2892
  /**
2893
2893
  * <p>The ETag hash calculated on Source2 of the read set.</p>
2894
2894
  * @public
2895
2895
  */
2896
- source2?: string;
2896
+ source2?: string | undefined;
2897
2897
  }
2898
2898
  /**
2899
2899
  * <p>A read set.</p>
@@ -2939,7 +2939,7 @@ export interface ExportReadSetDetail {
2939
2939
  * <p>The set's status message.</p>
2940
2940
  * @public
2941
2941
  */
2942
- statusMessage?: string;
2942
+ statusMessage?: string | undefined;
2943
2943
  }
2944
2944
  /**
2945
2945
  * @public
@@ -2967,17 +2967,17 @@ export interface ExportReadSetFilter {
2967
2967
  * <p>A status to filter on.</p>
2968
2968
  * @public
2969
2969
  */
2970
- status?: ReadSetExportJobStatus;
2970
+ status?: ReadSetExportJobStatus | undefined;
2971
2971
  /**
2972
2972
  * <p>The filter's start date.</p>
2973
2973
  * @public
2974
2974
  */
2975
- createdAfter?: Date;
2975
+ createdAfter?: Date | undefined;
2976
2976
  /**
2977
2977
  * <p>The filter's end date.</p>
2978
2978
  * @public
2979
2979
  */
2980
- createdBefore?: Date;
2980
+ createdBefore?: Date | undefined;
2981
2981
  }
2982
2982
  /**
2983
2983
  * <p>Details about a read set export job.</p>
@@ -3013,7 +3013,7 @@ export interface ExportReadSetJobDetail {
3013
3013
  * <p>When the job completed.</p>
3014
3014
  * @public
3015
3015
  */
3016
- completionTime?: Date;
3016
+ completionTime?: Date | undefined;
3017
3017
  }
3018
3018
  /**
3019
3019
  * <p>The S3 URI for each read set file.</p>
@@ -3024,7 +3024,7 @@ export interface ReadSetS3Access {
3024
3024
  * <p>The S3 URI for each read set file.</p>
3025
3025
  * @public
3026
3026
  */
3027
- s3Uri?: string;
3027
+ s3Uri?: string | undefined;
3028
3028
  }
3029
3029
  /**
3030
3030
  * <p>Details about a file.</p>
@@ -3035,22 +3035,22 @@ export interface FileInformation {
3035
3035
  * <p>The file's total parts.</p>
3036
3036
  * @public
3037
3037
  */
3038
- totalParts?: number;
3038
+ totalParts?: number | undefined;
3039
3039
  /**
3040
3040
  * <p>The file's part size.</p>
3041
3041
  * @public
3042
3042
  */
3043
- partSize?: number;
3043
+ partSize?: number | undefined;
3044
3044
  /**
3045
3045
  * <p>The file's content length.</p>
3046
3046
  * @public
3047
3047
  */
3048
- contentLength?: number;
3048
+ contentLength?: number | undefined;
3049
3049
  /**
3050
3050
  * <p>The S3 URI metadata of a sequence store.</p>
3051
3051
  * @public
3052
3052
  */
3053
- s3Access?: ReadSetS3Access;
3053
+ s3Access?: ReadSetS3Access | undefined;
3054
3054
  }
3055
3055
  /**
3056
3056
  * @public
@@ -3084,17 +3084,17 @@ export interface Filter {
3084
3084
  * <p>Filter based on the Amazon Resource Number (ARN) of the resource. You can specify up to 10 values.</p>
3085
3085
  * @public
3086
3086
  */
3087
- resourceArns?: string[];
3087
+ resourceArns?: string[] | undefined;
3088
3088
  /**
3089
3089
  * <p>Filter based on the resource status. You can specify up to 10 values.</p>
3090
3090
  * @public
3091
3091
  */
3092
- status?: ShareStatus[];
3092
+ status?: ShareStatus[] | undefined;
3093
3093
  /**
3094
3094
  * <p>The type of resources to be filtered. You can specify one or more of the resource types.</p>
3095
3095
  * @public
3096
3096
  */
3097
- type?: ShareResourceType[];
3097
+ type?: ShareResourceType[] | undefined;
3098
3098
  }
3099
3099
  /**
3100
3100
  * @public
@@ -3127,7 +3127,7 @@ export interface GetReadSetRequest {
3127
3127
  * <p>The file to retrieve.</p>
3128
3128
  * @public
3129
3129
  */
3130
- file?: ReadSetFile;
3130
+ file?: ReadSetFile | undefined;
3131
3131
  /**
3132
3132
  * <p>The part number to retrieve.</p>
3133
3133
  * @public
@@ -3142,7 +3142,7 @@ export interface GetReadSetResponse {
3142
3142
  * <p>The read set file payload.</p>
3143
3143
  * @public
3144
3144
  */
3145
- payload?: StreamingBlobTypes;
3145
+ payload?: StreamingBlobTypes | undefined;
3146
3146
  }
3147
3147
  /**
3148
3148
  * <p>The ranges specified in the request are not valid.</p>
@@ -3195,7 +3195,7 @@ export interface GetReadSetActivationJobResponse {
3195
3195
  * <p>The job's status message.</p>
3196
3196
  * @public
3197
3197
  */
3198
- statusMessage?: string;
3198
+ statusMessage?: string | undefined;
3199
3199
  /**
3200
3200
  * <p>When the job was created.</p>
3201
3201
  * @public
@@ -3205,12 +3205,12 @@ export interface GetReadSetActivationJobResponse {
3205
3205
  * <p>When the job completed.</p>
3206
3206
  * @public
3207
3207
  */
3208
- completionTime?: Date;
3208
+ completionTime?: Date | undefined;
3209
3209
  /**
3210
3210
  * <p>The job's source files.</p>
3211
3211
  * @public
3212
3212
  */
3213
- sources?: ActivateReadSetSourceItem[];
3213
+ sources?: ActivateReadSetSourceItem[] | undefined;
3214
3214
  }
3215
3215
  /**
3216
3216
  * @public
@@ -3255,7 +3255,7 @@ export interface GetReadSetExportJobResponse {
3255
3255
  * <p>The job's status message.</p>
3256
3256
  * @public
3257
3257
  */
3258
- statusMessage?: string;
3258
+ statusMessage?: string | undefined;
3259
3259
  /**
3260
3260
  * <p>When the job was created.</p>
3261
3261
  * @public
@@ -3265,12 +3265,12 @@ export interface GetReadSetExportJobResponse {
3265
3265
  * <p>When the job completed.</p>
3266
3266
  * @public
3267
3267
  */
3268
- completionTime?: Date;
3268
+ completionTime?: Date | undefined;
3269
3269
  /**
3270
3270
  * <p>The job's read sets.</p>
3271
3271
  * @public
3272
3272
  */
3273
- readSets?: ExportReadSetDetail[];
3273
+ readSets?: ExportReadSetDetail[] | undefined;
3274
3274
  }
3275
3275
  /**
3276
3276
  * @public
@@ -3301,7 +3301,7 @@ export interface SourceFiles {
3301
3301
  * <p>The location of the second file in Amazon S3.</p>
3302
3302
  * @public
3303
3303
  */
3304
- source2?: string;
3304
+ source2?: string | undefined;
3305
3305
  }
3306
3306
  /**
3307
3307
  * @public
@@ -3341,7 +3341,7 @@ export interface ImportReadSetSourceItem {
3341
3341
  * <p>The source's status message.</p>
3342
3342
  * @public
3343
3343
  */
3344
- statusMessage?: string;
3344
+ statusMessage?: string | undefined;
3345
3345
  /**
3346
3346
  * <p>The source's subject ID.</p>
3347
3347
  * @public
@@ -3356,32 +3356,32 @@ export interface ImportReadSetSourceItem {
3356
3356
  * <p>Where the source originated.</p>
3357
3357
  * @public
3358
3358
  */
3359
- generatedFrom?: string;
3359
+ generatedFrom?: string | undefined;
3360
3360
  /**
3361
3361
  * <p>The source's genome reference ARN.</p>
3362
3362
  * @public
3363
3363
  */
3364
- referenceArn?: string;
3364
+ referenceArn?: string | undefined;
3365
3365
  /**
3366
3366
  * <p>The source's name.</p>
3367
3367
  * @public
3368
3368
  */
3369
- name?: string;
3369
+ name?: string | undefined;
3370
3370
  /**
3371
3371
  * <p>The source's description.</p>
3372
3372
  * @public
3373
3373
  */
3374
- description?: string;
3374
+ description?: string | undefined;
3375
3375
  /**
3376
3376
  * <p>The source's tags.</p>
3377
3377
  * @public
3378
3378
  */
3379
- tags?: Record<string, string>;
3379
+ tags?: Record<string, string> | undefined;
3380
3380
  /**
3381
3381
  * <p>The source's read set ID.</p>
3382
3382
  * @public
3383
3383
  */
3384
- readSetId?: string;
3384
+ readSetId?: string | undefined;
3385
3385
  }
3386
3386
  /**
3387
3387
  * @public
@@ -3428,7 +3428,7 @@ export interface GetReadSetImportJobResponse {
3428
3428
  * <p>The job's status message.</p>
3429
3429
  * @public
3430
3430
  */
3431
- statusMessage?: string;
3431
+ statusMessage?: string | undefined;
3432
3432
  /**
3433
3433
  * <p>When the job was created.</p>
3434
3434
  * @public
@@ -3438,7 +3438,7 @@ export interface GetReadSetImportJobResponse {
3438
3438
  * <p>When the job completed.</p>
3439
3439
  * @public
3440
3440
  */
3441
- completionTime?: Date;
3441
+ completionTime?: Date | undefined;
3442
3442
  /**
3443
3443
  * <p>The job's source files.</p>
3444
3444
  * @public
@@ -3469,17 +3469,17 @@ export interface ReadSetFiles {
3469
3469
  * <p>The location of the first file in Amazon S3.</p>
3470
3470
  * @public
3471
3471
  */
3472
- source1?: FileInformation;
3472
+ source1?: FileInformation | undefined;
3473
3473
  /**
3474
3474
  * <p>The location of the second file in Amazon S3.</p>
3475
3475
  * @public
3476
3476
  */
3477
- source2?: FileInformation;
3477
+ source2?: FileInformation | undefined;
3478
3478
  /**
3479
3479
  * <p>The files' index.</p>
3480
3480
  * @public
3481
3481
  */
3482
- index?: FileInformation;
3482
+ index?: FileInformation | undefined;
3483
3483
  }
3484
3484
  /**
3485
3485
  * <p>Details about a sequence.</p>
@@ -3490,22 +3490,22 @@ export interface SequenceInformation {
3490
3490
  * <p>The sequence's total read count.</p>
3491
3491
  * @public
3492
3492
  */
3493
- totalReadCount?: number;
3493
+ totalReadCount?: number | undefined;
3494
3494
  /**
3495
3495
  * <p>The sequence's total base count.</p>
3496
3496
  * @public
3497
3497
  */
3498
- totalBaseCount?: number;
3498
+ totalBaseCount?: number | undefined;
3499
3499
  /**
3500
3500
  * <p>Where the sequence originated.</p>
3501
3501
  * @public
3502
3502
  */
3503
- generatedFrom?: string;
3503
+ generatedFrom?: string | undefined;
3504
3504
  /**
3505
3505
  * <p>The sequence's alignment setting.</p>
3506
3506
  * @public
3507
3507
  */
3508
- alignment?: string;
3508
+ alignment?: string | undefined;
3509
3509
  }
3510
3510
  /**
3511
3511
  * @public
@@ -3547,12 +3547,12 @@ export interface GetReadSetMetadataResponse {
3547
3547
  * <p>The read set's subject ID.</p>
3548
3548
  * @public
3549
3549
  */
3550
- subjectId?: string;
3550
+ subjectId?: string | undefined;
3551
3551
  /**
3552
3552
  * <p>The read set's sample ID.</p>
3553
3553
  * @public
3554
3554
  */
3555
- sampleId?: string;
3555
+ sampleId?: string | undefined;
3556
3556
  /**
3557
3557
  * <p>The read set's status.</p>
3558
3558
  * @public
@@ -3562,12 +3562,12 @@ export interface GetReadSetMetadataResponse {
3562
3562
  * <p>The read set's name.</p>
3563
3563
  * @public
3564
3564
  */
3565
- name?: string;
3565
+ name?: string | undefined;
3566
3566
  /**
3567
3567
  * <p>The read set's description.</p>
3568
3568
  * @public
3569
3569
  */
3570
- description?: string;
3570
+ description?: string | undefined;
3571
3571
  /**
3572
3572
  * <p>The read set's file type.</p>
3573
3573
  * @public
@@ -3582,39 +3582,39 @@ export interface GetReadSetMetadataResponse {
3582
3582
  * <p>The read set's sequence information.</p>
3583
3583
  * @public
3584
3584
  */
3585
- sequenceInformation?: SequenceInformation;
3585
+ sequenceInformation?: SequenceInformation | undefined;
3586
3586
  /**
3587
3587
  * <p>The read set's genome reference ARN.</p>
3588
3588
  * @public
3589
3589
  */
3590
- referenceArn?: string;
3590
+ referenceArn?: string | undefined;
3591
3591
  /**
3592
3592
  * <p>The read set's files.</p>
3593
3593
  * @public
3594
3594
  */
3595
- files?: ReadSetFiles;
3595
+ files?: ReadSetFiles | undefined;
3596
3596
  /**
3597
3597
  * <p>The status message for a read set. It provides more detail as to why the read set has a status. </p>
3598
3598
  * @public
3599
3599
  */
3600
- statusMessage?: string;
3600
+ statusMessage?: string | undefined;
3601
3601
  /**
3602
3602
  * <p>
3603
3603
  * The creation type of the read set.
3604
3604
  * </p>
3605
3605
  * @public
3606
3606
  */
3607
- creationType?: CreationType;
3607
+ creationType?: CreationType | undefined;
3608
3608
  /**
3609
3609
  * <p>The entity tag (ETag) is a hash of the object meant to represent its semantic content.</p>
3610
3610
  * @public
3611
3611
  */
3612
- etag?: ETag;
3612
+ etag?: ETag | undefined;
3613
3613
  /**
3614
3614
  * <p>The read set's creation job ID.</p>
3615
3615
  * @public
3616
3616
  */
3617
- creationJobId?: string;
3617
+ creationJobId?: string | undefined;
3618
3618
  }
3619
3619
  /**
3620
3620
  * @public
@@ -3646,7 +3646,7 @@ export interface GetReferenceRequest {
3646
3646
  * <p>The range to retrieve.</p>
3647
3647
  * @public
3648
3648
  */
3649
- range?: string;
3649
+ range?: string | undefined;
3650
3650
  /**
3651
3651
  * <p>The part number to retrieve.</p>
3652
3652
  * @public
@@ -3656,7 +3656,7 @@ export interface GetReferenceRequest {
3656
3656
  * <p>The file to retrieve.</p>
3657
3657
  * @public
3658
3658
  */
3659
- file?: ReferenceFile;
3659
+ file?: ReferenceFile | undefined;
3660
3660
  }
3661
3661
  /**
3662
3662
  * @public
@@ -3666,7 +3666,7 @@ export interface GetReferenceResponse {
3666
3666
  * <p>The reference file payload.</p>
3667
3667
  * @public
3668
3668
  */
3669
- payload?: StreamingBlobTypes;
3669
+ payload?: StreamingBlobTypes | undefined;
3670
3670
  }
3671
3671
  /**
3672
3672
  * @public
@@ -3706,7 +3706,7 @@ export interface ImportReferenceSourceItem {
3706
3706
  * <p>The source file's location in Amazon S3.</p>
3707
3707
  * @public
3708
3708
  */
3709
- sourceFile?: string;
3709
+ sourceFile?: string | undefined;
3710
3710
  /**
3711
3711
  * <p>The source's status.</p>
3712
3712
  * @public
@@ -3716,27 +3716,27 @@ export interface ImportReferenceSourceItem {
3716
3716
  * <p>The source's status message.</p>
3717
3717
  * @public
3718
3718
  */
3719
- statusMessage?: string;
3719
+ statusMessage?: string | undefined;
3720
3720
  /**
3721
3721
  * <p>The source's name.</p>
3722
3722
  * @public
3723
3723
  */
3724
- name?: string;
3724
+ name?: string | undefined;
3725
3725
  /**
3726
3726
  * <p>The source's description.</p>
3727
3727
  * @public
3728
3728
  */
3729
- description?: string;
3729
+ description?: string | undefined;
3730
3730
  /**
3731
3731
  * <p>The source's tags.</p>
3732
3732
  * @public
3733
3733
  */
3734
- tags?: Record<string, string>;
3734
+ tags?: Record<string, string> | undefined;
3735
3735
  /**
3736
3736
  * <p>The source's reference ID.</p>
3737
3737
  * @public
3738
3738
  */
3739
- referenceId?: string;
3739
+ referenceId?: string | undefined;
3740
3740
  }
3741
3741
  /**
3742
3742
  * @public
@@ -3783,7 +3783,7 @@ export interface GetReferenceImportJobResponse {
3783
3783
  * <p>The job's status message.</p>
3784
3784
  * @public
3785
3785
  */
3786
- statusMessage?: string;
3786
+ statusMessage?: string | undefined;
3787
3787
  /**
3788
3788
  * <p>When the job was created.</p>
3789
3789
  * @public
@@ -3793,7 +3793,7 @@ export interface GetReferenceImportJobResponse {
3793
3793
  * <p>When the job completed.</p>
3794
3794
  * @public
3795
3795
  */
3796
- completionTime?: Date;
3796
+ completionTime?: Date | undefined;
3797
3797
  /**
3798
3798
  * <p>The job's source files.</p>
3799
3799
  * @public
@@ -3835,12 +3835,12 @@ export interface ReferenceFiles {
3835
3835
  * <p>The source file's location in Amazon S3.</p>
3836
3836
  * @public
3837
3837
  */
3838
- source?: FileInformation;
3838
+ source?: FileInformation | undefined;
3839
3839
  /**
3840
3840
  * <p>The files' index.</p>
3841
3841
  * @public
3842
3842
  */
3843
- index?: FileInformation;
3843
+ index?: FileInformation | undefined;
3844
3844
  }
3845
3845
  /**
3846
3846
  * @public
@@ -3883,17 +3883,17 @@ export interface GetReferenceMetadataResponse {
3883
3883
  * <p>The reference's status.</p>
3884
3884
  * @public
3885
3885
  */
3886
- status?: ReferenceStatus;
3886
+ status?: ReferenceStatus | undefined;
3887
3887
  /**
3888
3888
  * <p>The reference's name.</p>
3889
3889
  * @public
3890
3890
  */
3891
- name?: string;
3891
+ name?: string | undefined;
3892
3892
  /**
3893
3893
  * <p>The reference's description.</p>
3894
3894
  * @public
3895
3895
  */
3896
- description?: string;
3896
+ description?: string | undefined;
3897
3897
  /**
3898
3898
  * <p>When the reference was created.</p>
3899
3899
  * @public
@@ -3908,17 +3908,17 @@ export interface GetReferenceMetadataResponse {
3908
3908
  * <p>The reference's files.</p>
3909
3909
  * @public
3910
3910
  */
3911
- files?: ReferenceFiles;
3911
+ files?: ReferenceFiles | undefined;
3912
3912
  /**
3913
3913
  * <p>The reference's creation type.</p>
3914
3914
  * @public
3915
3915
  */
3916
- creationType?: ReferenceCreationType;
3916
+ creationType?: ReferenceCreationType | undefined;
3917
3917
  /**
3918
3918
  * <p>The reference's creation job ID.</p>
3919
3919
  * @public
3920
3920
  */
3921
- creationJobId?: string;
3921
+ creationJobId?: string | undefined;
3922
3922
  }
3923
3923
  /**
3924
3924
  * @public
@@ -3948,17 +3948,17 @@ export interface GetReferenceStoreResponse {
3948
3948
  * <p>The store's name.</p>
3949
3949
  * @public
3950
3950
  */
3951
- name?: string;
3951
+ name?: string | undefined;
3952
3952
  /**
3953
3953
  * <p>The store's description.</p>
3954
3954
  * @public
3955
3955
  */
3956
- description?: string;
3956
+ description?: string | undefined;
3957
3957
  /**
3958
3958
  * <p>The store's server-side encryption (SSE) settings.</p>
3959
3959
  * @public
3960
3960
  */
3961
- sseConfig?: SseConfig;
3961
+ sseConfig?: SseConfig | undefined;
3962
3962
  /**
3963
3963
  * <p>When the store was created.</p>
3964
3964
  * @public
@@ -3989,7 +3989,7 @@ export interface GetRunRequest {
3989
3989
  * <p>The run's export format.</p>
3990
3990
  * @public
3991
3991
  */
3992
- export?: RunExport[];
3992
+ export?: RunExport[] | undefined;
3993
3993
  }
3994
3994
  /**
3995
3995
  * @public
@@ -4014,12 +4014,12 @@ export interface RunLogLocation {
4014
4014
  * <p>The log stream ARN for the engine log.</p>
4015
4015
  * @public
4016
4016
  */
4017
- engineLogStream?: string;
4017
+ engineLogStream?: string | undefined;
4018
4018
  /**
4019
4019
  * <p>The log stream ARN for the run log.</p>
4020
4020
  * @public
4021
4021
  */
4022
- runLogStream?: string;
4022
+ runLogStream?: string | undefined;
4023
4023
  }
4024
4024
  /**
4025
4025
  * @public
@@ -4083,159 +4083,159 @@ export interface GetRunResponse {
4083
4083
  * <p>The run's ARN.</p>
4084
4084
  * @public
4085
4085
  */
4086
- arn?: string;
4086
+ arn?: string | undefined;
4087
4087
  /**
4088
4088
  * <p>The run's ID.</p>
4089
4089
  * @public
4090
4090
  */
4091
- id?: string;
4091
+ id?: string | undefined;
4092
4092
  /**
4093
4093
  * <p>The run's status.</p>
4094
4094
  * @public
4095
4095
  */
4096
- status?: RunStatus;
4096
+ status?: RunStatus | undefined;
4097
4097
  /**
4098
4098
  * <p>The run's workflow ID.</p>
4099
4099
  * @public
4100
4100
  */
4101
- workflowId?: string;
4101
+ workflowId?: string | undefined;
4102
4102
  /**
4103
4103
  * <p>The run's workflow type.</p>
4104
4104
  * @public
4105
4105
  */
4106
- workflowType?: WorkflowType;
4106
+ workflowType?: WorkflowType | undefined;
4107
4107
  /**
4108
4108
  * <p>The run's ID.</p>
4109
4109
  * @public
4110
4110
  */
4111
- runId?: string;
4111
+ runId?: string | undefined;
4112
4112
  /**
4113
4113
  * <p>The run's service role ARN.</p>
4114
4114
  * @public
4115
4115
  */
4116
- roleArn?: string;
4116
+ roleArn?: string | undefined;
4117
4117
  /**
4118
4118
  * <p>The run's name.</p>
4119
4119
  * @public
4120
4120
  */
4121
- name?: string;
4121
+ name?: string | undefined;
4122
4122
  /**
4123
4123
  * <p>The run's group ID.</p>
4124
4124
  * @public
4125
4125
  */
4126
- runGroupId?: string;
4126
+ runGroupId?: string | undefined;
4127
4127
  /**
4128
4128
  * <p>The run's priority.</p>
4129
4129
  * @public
4130
4130
  */
4131
- priority?: number;
4131
+ priority?: number | undefined;
4132
4132
  /**
4133
4133
  * <p>The run's definition.</p>
4134
4134
  * @public
4135
4135
  */
4136
- definition?: string;
4136
+ definition?: string | undefined;
4137
4137
  /**
4138
4138
  * <p>The run's digest.</p>
4139
4139
  * @public
4140
4140
  */
4141
- digest?: string;
4141
+ digest?: string | undefined;
4142
4142
  /**
4143
4143
  * <p>The run's parameters.</p>
4144
4144
  * @public
4145
4145
  */
4146
- parameters?: __DocumentType;
4146
+ parameters?: __DocumentType | undefined;
4147
4147
  /**
4148
4148
  * <p>The run's storage capacity in gibibytes. For dynamic storage,
4149
4149
  * after the run has completed, this value is the maximum amount of storage
4150
4150
  * used during the run.</p>
4151
4151
  * @public
4152
4152
  */
4153
- storageCapacity?: number;
4153
+ storageCapacity?: number | undefined;
4154
4154
  /**
4155
4155
  * <p>The run's output URI.</p>
4156
4156
  * @public
4157
4157
  */
4158
- outputUri?: string;
4158
+ outputUri?: string | undefined;
4159
4159
  /**
4160
4160
  * <p>The run's log level.</p>
4161
4161
  * @public
4162
4162
  */
4163
- logLevel?: RunLogLevel;
4163
+ logLevel?: RunLogLevel | undefined;
4164
4164
  /**
4165
4165
  * <p>The run's resource digests.</p>
4166
4166
  * @public
4167
4167
  */
4168
- resourceDigests?: Record<string, string>;
4168
+ resourceDigests?: Record<string, string> | undefined;
4169
4169
  /**
4170
4170
  * <p>Who started the run.</p>
4171
4171
  * @public
4172
4172
  */
4173
- startedBy?: string;
4173
+ startedBy?: string | undefined;
4174
4174
  /**
4175
4175
  * <p>When the run was created.</p>
4176
4176
  * @public
4177
4177
  */
4178
- creationTime?: Date;
4178
+ creationTime?: Date | undefined;
4179
4179
  /**
4180
4180
  * <p>When the run started.</p>
4181
4181
  * @public
4182
4182
  */
4183
- startTime?: Date;
4183
+ startTime?: Date | undefined;
4184
4184
  /**
4185
4185
  * <p>The run's stop time.</p>
4186
4186
  * @public
4187
4187
  */
4188
- stopTime?: Date;
4188
+ stopTime?: Date | undefined;
4189
4189
  /**
4190
4190
  * <p>The run's status message.</p>
4191
4191
  * @public
4192
4192
  */
4193
- statusMessage?: string;
4193
+ statusMessage?: string | undefined;
4194
4194
  /**
4195
4195
  * <p>The run's tags.</p>
4196
4196
  * @public
4197
4197
  */
4198
- tags?: Record<string, string>;
4198
+ tags?: Record<string, string> | undefined;
4199
4199
  /**
4200
4200
  * <p>The computational accelerator used to run the workflow.</p>
4201
4201
  * @public
4202
4202
  */
4203
- accelerators?: Accelerators;
4203
+ accelerators?: Accelerators | undefined;
4204
4204
  /**
4205
4205
  * <p>The run's retention mode.</p>
4206
4206
  * @public
4207
4207
  */
4208
- retentionMode?: RunRetentionMode;
4208
+ retentionMode?: RunRetentionMode | undefined;
4209
4209
  /**
4210
4210
  * <p>The reason a run has failed.</p>
4211
4211
  * @public
4212
4212
  */
4213
- failureReason?: string;
4213
+ failureReason?: string | undefined;
4214
4214
  /**
4215
4215
  * <p>The location of the run log.</p>
4216
4216
  * @public
4217
4217
  */
4218
- logLocation?: RunLogLocation;
4218
+ logLocation?: RunLogLocation | undefined;
4219
4219
  /**
4220
4220
  * <p>The universally unique identifier for a run.</p>
4221
4221
  * @public
4222
4222
  */
4223
- uuid?: string;
4223
+ uuid?: string | undefined;
4224
4224
  /**
4225
4225
  * <p>The destination for workflow outputs.</p>
4226
4226
  * @public
4227
4227
  */
4228
- runOutputUri?: string;
4228
+ runOutputUri?: string | undefined;
4229
4229
  /**
4230
4230
  * <p>The run's storage type.</p>
4231
4231
  * @public
4232
4232
  */
4233
- storageType?: StorageType;
4233
+ storageType?: StorageType | undefined;
4234
4234
  /**
4235
4235
  * <p>The ID of the workflow owner.</p>
4236
4236
  * @public
4237
4237
  */
4238
- workflowOwnerId?: string;
4238
+ workflowOwnerId?: string | undefined;
4239
4239
  }
4240
4240
  /**
4241
4241
  * @public
@@ -4255,47 +4255,47 @@ export interface GetRunGroupResponse {
4255
4255
  * <p>The group's ARN.</p>
4256
4256
  * @public
4257
4257
  */
4258
- arn?: string;
4258
+ arn?: string | undefined;
4259
4259
  /**
4260
4260
  * <p>The group's ID.</p>
4261
4261
  * @public
4262
4262
  */
4263
- id?: string;
4263
+ id?: string | undefined;
4264
4264
  /**
4265
4265
  * <p>The group's name.</p>
4266
4266
  * @public
4267
4267
  */
4268
- name?: string;
4268
+ name?: string | undefined;
4269
4269
  /**
4270
4270
  * <p>The group's maximum number of CPUs to use.</p>
4271
4271
  * @public
4272
4272
  */
4273
- maxCpus?: number;
4273
+ maxCpus?: number | undefined;
4274
4274
  /**
4275
4275
  * <p>The maximum number of concurrent runs for the group.</p>
4276
4276
  * @public
4277
4277
  */
4278
- maxRuns?: number;
4278
+ maxRuns?: number | undefined;
4279
4279
  /**
4280
4280
  * <p>The group's maximum run time in minutes.</p>
4281
4281
  * @public
4282
4282
  */
4283
- maxDuration?: number;
4283
+ maxDuration?: number | undefined;
4284
4284
  /**
4285
4285
  * <p>When the group was created.</p>
4286
4286
  * @public
4287
4287
  */
4288
- creationTime?: Date;
4288
+ creationTime?: Date | undefined;
4289
4289
  /**
4290
4290
  * <p>The group's tags.</p>
4291
4291
  * @public
4292
4292
  */
4293
- tags?: Record<string, string>;
4293
+ tags?: Record<string, string> | undefined;
4294
4294
  /**
4295
4295
  * <p>The maximum GPUs that can be used by a run group.</p>
4296
4296
  * @public
4297
4297
  */
4298
- maxGpus?: number;
4298
+ maxGpus?: number | undefined;
4299
4299
  }
4300
4300
  /**
4301
4301
  * @public
@@ -4337,67 +4337,67 @@ export interface GetRunTaskResponse {
4337
4337
  * <p>The task's ID.</p>
4338
4338
  * @public
4339
4339
  */
4340
- taskId?: string;
4340
+ taskId?: string | undefined;
4341
4341
  /**
4342
4342
  * <p>The task's status.</p>
4343
4343
  * @public
4344
4344
  */
4345
- status?: TaskStatus;
4345
+ status?: TaskStatus | undefined;
4346
4346
  /**
4347
4347
  * <p>The task's name.</p>
4348
4348
  * @public
4349
4349
  */
4350
- name?: string;
4350
+ name?: string | undefined;
4351
4351
  /**
4352
4352
  * <p>The task's CPU usage.</p>
4353
4353
  * @public
4354
4354
  */
4355
- cpus?: number;
4355
+ cpus?: number | undefined;
4356
4356
  /**
4357
4357
  * <p>The task's memory use in gigabytes.</p>
4358
4358
  * @public
4359
4359
  */
4360
- memory?: number;
4360
+ memory?: number | undefined;
4361
4361
  /**
4362
4362
  * <p>When the task was created.</p>
4363
4363
  * @public
4364
4364
  */
4365
- creationTime?: Date;
4365
+ creationTime?: Date | undefined;
4366
4366
  /**
4367
4367
  * <p>The task's start time.</p>
4368
4368
  * @public
4369
4369
  */
4370
- startTime?: Date;
4370
+ startTime?: Date | undefined;
4371
4371
  /**
4372
4372
  * <p>The task's stop time.</p>
4373
4373
  * @public
4374
4374
  */
4375
- stopTime?: Date;
4375
+ stopTime?: Date | undefined;
4376
4376
  /**
4377
4377
  * <p>The task's status message.</p>
4378
4378
  * @public
4379
4379
  */
4380
- statusMessage?: string;
4380
+ statusMessage?: string | undefined;
4381
4381
  /**
4382
4382
  * <p>The task's log stream.</p>
4383
4383
  * @public
4384
4384
  */
4385
- logStream?: string;
4385
+ logStream?: string | undefined;
4386
4386
  /**
4387
4387
  * <p>The number of Graphics Processing Units (GPU) specified in the task.</p>
4388
4388
  * @public
4389
4389
  */
4390
- gpus?: number;
4390
+ gpus?: number | undefined;
4391
4391
  /**
4392
4392
  * <p>The instance type for a task.</p>
4393
4393
  * @public
4394
4394
  */
4395
- instanceType?: string;
4395
+ instanceType?: string | undefined;
4396
4396
  /**
4397
4397
  * <p>The reason a task has failed.</p>
4398
4398
  * @public
4399
4399
  */
4400
- failureReason?: string;
4400
+ failureReason?: string | undefined;
4401
4401
  }
4402
4402
  /**
4403
4403
  * @public
@@ -4418,12 +4418,12 @@ export interface SequenceStoreS3Access {
4418
4418
  * <p>The S3 URI of the sequence store.</p>
4419
4419
  * @public
4420
4420
  */
4421
- s3Uri?: string;
4421
+ s3Uri?: string | undefined;
4422
4422
  /**
4423
4423
  * <p>This is ARN of the access point associated with the S3 bucket storing read sets.</p>
4424
4424
  * @public
4425
4425
  */
4426
- s3AccessPointArn?: string;
4426
+ s3AccessPointArn?: string | undefined;
4427
4427
  }
4428
4428
  /**
4429
4429
  * @public
@@ -4443,17 +4443,17 @@ export interface GetSequenceStoreResponse {
4443
4443
  * <p>The store's name.</p>
4444
4444
  * @public
4445
4445
  */
4446
- name?: string;
4446
+ name?: string | undefined;
4447
4447
  /**
4448
4448
  * <p>The store's description.</p>
4449
4449
  * @public
4450
4450
  */
4451
- description?: string;
4451
+ description?: string | undefined;
4452
4452
  /**
4453
4453
  * <p>The store's server-side encryption (SSE) settings.</p>
4454
4454
  * @public
4455
4455
  */
4456
- sseConfig?: SseConfig;
4456
+ sseConfig?: SseConfig | undefined;
4457
4457
  /**
4458
4458
  * <p>When the store was created.</p>
4459
4459
  * @public
@@ -4463,17 +4463,17 @@ export interface GetSequenceStoreResponse {
4463
4463
  * <p>An S3 location that is used to store files that have failed a direct upload.</p>
4464
4464
  * @public
4465
4465
  */
4466
- fallbackLocation?: string;
4466
+ fallbackLocation?: string | undefined;
4467
4467
  /**
4468
4468
  * <p>The S3 metadata of a sequence store, including the ARN and S3 URI of the S3 bucket.</p>
4469
4469
  * @public
4470
4470
  */
4471
- s3Access?: SequenceStoreS3Access;
4471
+ s3Access?: SequenceStoreS3Access | undefined;
4472
4472
  /**
4473
4473
  * <p>The algorithm family of the ETag.</p>
4474
4474
  * @public
4475
4475
  */
4476
- eTagAlgorithmFamily?: ETagAlgorithmFamily;
4476
+ eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
4477
4477
  }
4478
4478
  /**
4479
4479
  * @public
@@ -4494,52 +4494,52 @@ export interface ShareDetails {
4494
4494
  * <p>The ID of the resource share.</p>
4495
4495
  * @public
4496
4496
  */
4497
- shareId?: string;
4497
+ shareId?: string | undefined;
4498
4498
  /**
4499
4499
  * <p>The Arn of the shared resource. </p>
4500
4500
  * @public
4501
4501
  */
4502
- resourceArn?: string;
4502
+ resourceArn?: string | undefined;
4503
4503
  /**
4504
4504
  * <p>The ID of the shared resource. </p>
4505
4505
  * @public
4506
4506
  */
4507
- resourceId?: string;
4507
+ resourceId?: string | undefined;
4508
4508
  /**
4509
4509
  * <p>The principal subscriber is the account that is sharing the resource.</p>
4510
4510
  * @public
4511
4511
  */
4512
- principalSubscriber?: string;
4512
+ principalSubscriber?: string | undefined;
4513
4513
  /**
4514
4514
  * <p>The account ID for the data owner. The owner creates the resource share.</p>
4515
4515
  * @public
4516
4516
  */
4517
- ownerId?: string;
4517
+ ownerId?: string | undefined;
4518
4518
  /**
4519
4519
  * <p>The status of the share.</p>
4520
4520
  * @public
4521
4521
  */
4522
- status?: ShareStatus;
4522
+ status?: ShareStatus | undefined;
4523
4523
  /**
4524
4524
  * <p>The status message for a resource share. It provides additional details about the share status.</p>
4525
4525
  * @public
4526
4526
  */
4527
- statusMessage?: string;
4527
+ statusMessage?: string | undefined;
4528
4528
  /**
4529
4529
  * <p>The name of the resource share.</p>
4530
4530
  * @public
4531
4531
  */
4532
- shareName?: string;
4532
+ shareName?: string | undefined;
4533
4533
  /**
4534
4534
  * <p>The timestamp of when the resource share was created.</p>
4535
4535
  * @public
4536
4536
  */
4537
- creationTime?: Date;
4537
+ creationTime?: Date | undefined;
4538
4538
  /**
4539
4539
  * <p>The timestamp of the resource share update.</p>
4540
4540
  * @public
4541
4541
  */
4542
- updateTime?: Date;
4542
+ updateTime?: Date | undefined;
4543
4543
  }
4544
4544
  /**
4545
4545
  * @public
@@ -4549,7 +4549,7 @@ export interface GetShareResponse {
4549
4549
  * <p>A resource share details object. The object includes the status, the resourceArn, and ownerId.</p>
4550
4550
  * @public
4551
4551
  */
4552
- share?: ShareDetails;
4552
+ share?: ShareDetails | undefined;
4553
4553
  }
4554
4554
  /**
4555
4555
  * @public
@@ -4580,7 +4580,7 @@ export interface VariantImportItemDetail {
4580
4580
  * <p> A message that provides additional context about a job </p>
4581
4581
  * @public
4582
4582
  */
4583
- statusMessage?: string;
4583
+ statusMessage?: string | undefined;
4584
4584
  }
4585
4585
  /**
4586
4586
  * @public
@@ -4625,7 +4625,7 @@ export interface GetVariantImportResponse {
4625
4625
  * <p>When the job completed.</p>
4626
4626
  * @public
4627
4627
  */
4628
- completionTime?: Date;
4628
+ completionTime?: Date | undefined;
4629
4629
  /**
4630
4630
  * <p>The job's items.</p>
4631
4631
  * @public
@@ -4640,7 +4640,7 @@ export interface GetVariantImportResponse {
4640
4640
  * <p>The annotation schema generated by the parsed annotation data.</p>
4641
4641
  * @public
4642
4642
  */
4643
- annotationFields?: Record<string, string>;
4643
+ annotationFields?: Record<string, string> | undefined;
4644
4644
  }
4645
4645
  /**
4646
4646
  * @public
@@ -4741,17 +4741,17 @@ export interface GetWorkflowRequest {
4741
4741
  * <p>The workflow's type.</p>
4742
4742
  * @public
4743
4743
  */
4744
- type?: WorkflowType;
4744
+ type?: WorkflowType | undefined;
4745
4745
  /**
4746
4746
  * <p>The export format for the workflow.</p>
4747
4747
  * @public
4748
4748
  */
4749
- export?: WorkflowExport[];
4749
+ export?: WorkflowExport[] | undefined;
4750
4750
  /**
4751
4751
  * <p>The ID of the workflow owner.</p>
4752
4752
  * @public
4753
4753
  */
4754
- workflowOwnerId?: string;
4754
+ workflowOwnerId?: string | undefined;
4755
4755
  }
4756
4756
  /**
4757
4757
  * @public
@@ -4761,87 +4761,87 @@ export interface GetWorkflowResponse {
4761
4761
  * <p>The workflow's ARN.</p>
4762
4762
  * @public
4763
4763
  */
4764
- arn?: string;
4764
+ arn?: string | undefined;
4765
4765
  /**
4766
4766
  * <p>The workflow's ID.</p>
4767
4767
  * @public
4768
4768
  */
4769
- id?: string;
4769
+ id?: string | undefined;
4770
4770
  /**
4771
4771
  * <p>The workflow's status.</p>
4772
4772
  * @public
4773
4773
  */
4774
- status?: WorkflowStatus;
4774
+ status?: WorkflowStatus | undefined;
4775
4775
  /**
4776
4776
  * <p>The workflow's type.</p>
4777
4777
  * @public
4778
4778
  */
4779
- type?: WorkflowType;
4779
+ type?: WorkflowType | undefined;
4780
4780
  /**
4781
4781
  * <p>The workflow's name.</p>
4782
4782
  * @public
4783
4783
  */
4784
- name?: string;
4784
+ name?: string | undefined;
4785
4785
  /**
4786
4786
  * <p>The workflow's description.</p>
4787
4787
  * @public
4788
4788
  */
4789
- description?: string;
4789
+ description?: string | undefined;
4790
4790
  /**
4791
4791
  * <p>The workflow's engine.</p>
4792
4792
  * @public
4793
4793
  */
4794
- engine?: WorkflowEngine;
4794
+ engine?: WorkflowEngine | undefined;
4795
4795
  /**
4796
4796
  * <p>The workflow's definition.</p>
4797
4797
  * @public
4798
4798
  */
4799
- definition?: string;
4799
+ definition?: string | undefined;
4800
4800
  /**
4801
4801
  * <p>The path of the main definition file for the workflow.</p>
4802
4802
  * @public
4803
4803
  */
4804
- main?: string;
4804
+ main?: string | undefined;
4805
4805
  /**
4806
4806
  * <p>The workflow's digest.</p>
4807
4807
  * @public
4808
4808
  */
4809
- digest?: string;
4809
+ digest?: string | undefined;
4810
4810
  /**
4811
4811
  * <p>The workflow's parameter template.</p>
4812
4812
  * @public
4813
4813
  */
4814
- parameterTemplate?: Record<string, WorkflowParameter>;
4814
+ parameterTemplate?: Record<string, WorkflowParameter> | undefined;
4815
4815
  /**
4816
4816
  * <p>The workflow's default run storage capacity in gibibytes.</p>
4817
4817
  * @public
4818
4818
  */
4819
- storageCapacity?: number;
4819
+ storageCapacity?: number | undefined;
4820
4820
  /**
4821
4821
  * <p>When the workflow was created.</p>
4822
4822
  * @public
4823
4823
  */
4824
- creationTime?: Date;
4824
+ creationTime?: Date | undefined;
4825
4825
  /**
4826
4826
  * <p>The workflow's status message.</p>
4827
4827
  * @public
4828
4828
  */
4829
- statusMessage?: string;
4829
+ statusMessage?: string | undefined;
4830
4830
  /**
4831
4831
  * <p>The workflow's tags.</p>
4832
4832
  * @public
4833
4833
  */
4834
- tags?: Record<string, string>;
4834
+ tags?: Record<string, string> | undefined;
4835
4835
  /**
4836
4836
  * <p>Gets metadata for workflow.</p>
4837
4837
  * @public
4838
4838
  */
4839
- metadata?: Record<string, string>;
4839
+ metadata?: Record<string, string> | undefined;
4840
4840
  /**
4841
4841
  * <p>The computational accelerator specified to run the workflow. </p>
4842
4842
  * @public
4843
4843
  */
4844
- accelerators?: Accelerators;
4844
+ accelerators?: Accelerators | undefined;
4845
4845
  }
4846
4846
  /**
4847
4847
  * <p>A filter for import read set jobs.</p>
@@ -4852,17 +4852,17 @@ export interface ImportReadSetFilter {
4852
4852
  * <p>A status to filter on.</p>
4853
4853
  * @public
4854
4854
  */
4855
- status?: ReadSetImportJobStatus;
4855
+ status?: ReadSetImportJobStatus | undefined;
4856
4856
  /**
4857
4857
  * <p>The filter's start date.</p>
4858
4858
  * @public
4859
4859
  */
4860
- createdAfter?: Date;
4860
+ createdAfter?: Date | undefined;
4861
4861
  /**
4862
4862
  * <p>The filter's end date.</p>
4863
4863
  * @public
4864
4864
  */
4865
- createdBefore?: Date;
4865
+ createdBefore?: Date | undefined;
4866
4866
  }
4867
4867
  /**
4868
4868
  * <p>An import read set job.</p>
@@ -4898,7 +4898,7 @@ export interface ImportReadSetJobItem {
4898
4898
  * <p>When the job completed.</p>
4899
4899
  * @public
4900
4900
  */
4901
- completionTime?: Date;
4901
+ completionTime?: Date | undefined;
4902
4902
  }
4903
4903
  /**
4904
4904
  * <p>A filter for import references.</p>
@@ -4909,17 +4909,17 @@ export interface ImportReferenceFilter {
4909
4909
  * <p>A status to filter on.</p>
4910
4910
  * @public
4911
4911
  */
4912
- status?: ReferenceImportJobStatus;
4912
+ status?: ReferenceImportJobStatus | undefined;
4913
4913
  /**
4914
4914
  * <p>The filter's start date.</p>
4915
4915
  * @public
4916
4916
  */
4917
- createdAfter?: Date;
4917
+ createdAfter?: Date | undefined;
4918
4918
  /**
4919
4919
  * <p>The filter's end date.</p>
4920
4920
  * @public
4921
4921
  */
4922
- createdBefore?: Date;
4922
+ createdBefore?: Date | undefined;
4923
4923
  }
4924
4924
  /**
4925
4925
  * <p>An import reference job.</p>
@@ -4955,7 +4955,7 @@ export interface ImportReferenceJobItem {
4955
4955
  * <p>When the job completed.</p>
4956
4956
  * @public
4957
4957
  */
4958
- completionTime?: Date;
4958
+ completionTime?: Date | undefined;
4959
4959
  }
4960
4960
  /**
4961
4961
  * @public
@@ -4970,13 +4970,13 @@ export interface ListMultipartReadSetUploadsRequest {
4970
4970
  * <p>The maximum number of multipart uploads returned in a page.</p>
4971
4971
  * @public
4972
4972
  */
4973
- maxResults?: number;
4973
+ maxResults?: number | undefined;
4974
4974
  /**
4975
4975
  * <p>Next token returned in the response of a previous ListMultipartReadSetUploads call.
4976
4976
  * Used to get the next page of results.</p>
4977
4977
  * @public
4978
4978
  */
4979
- nextToken?: string;
4979
+ nextToken?: string | undefined;
4980
4980
  }
4981
4981
  /**
4982
4982
  * <p>
@@ -5040,21 +5040,21 @@ export interface MultipartReadSetUploadListItem {
5040
5040
  * </p>
5041
5041
  * @public
5042
5042
  */
5043
- name?: string;
5043
+ name?: string | undefined;
5044
5044
  /**
5045
5045
  * <p>
5046
5046
  * The description of a read set.
5047
5047
  * </p>
5048
5048
  * @public
5049
5049
  */
5050
- description?: string;
5050
+ description?: string | undefined;
5051
5051
  /**
5052
5052
  * <p>
5053
5053
  * Any tags you wish to add to a read set.
5054
5054
  * </p>
5055
5055
  * @public
5056
5056
  */
5057
- tags?: Record<string, string>;
5057
+ tags?: Record<string, string> | undefined;
5058
5058
  /**
5059
5059
  * <p>
5060
5060
  * The time stamp for when a direct upload was created.
@@ -5072,12 +5072,12 @@ export interface ListMultipartReadSetUploadsResponse {
5072
5072
  * Used to get the next page of results.</p>
5073
5073
  * @public
5074
5074
  */
5075
- nextToken?: string;
5075
+ nextToken?: string | undefined;
5076
5076
  /**
5077
5077
  * <p>An array of multipart uploads.</p>
5078
5078
  * @public
5079
5079
  */
5080
- uploads?: MultipartReadSetUploadListItem[];
5080
+ uploads?: MultipartReadSetUploadListItem[] | undefined;
5081
5081
  }
5082
5082
  /**
5083
5083
  * @public
@@ -5092,17 +5092,17 @@ export interface ListReadSetActivationJobsRequest {
5092
5092
  * <p>The maximum number of read set activation jobs to return in one page of results.</p>
5093
5093
  * @public
5094
5094
  */
5095
- maxResults?: number;
5095
+ maxResults?: number | undefined;
5096
5096
  /**
5097
5097
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
5098
5098
  * @public
5099
5099
  */
5100
- nextToken?: string;
5100
+ nextToken?: string | undefined;
5101
5101
  /**
5102
5102
  * <p>A filter to apply to the list.</p>
5103
5103
  * @public
5104
5104
  */
5105
- filter?: ActivateReadSetFilter;
5105
+ filter?: ActivateReadSetFilter | undefined;
5106
5106
  }
5107
5107
  /**
5108
5108
  * @public
@@ -5112,12 +5112,12 @@ export interface ListReadSetActivationJobsResponse {
5112
5112
  * <p>A pagination token that's included if more results are available.</p>
5113
5113
  * @public
5114
5114
  */
5115
- nextToken?: string;
5115
+ nextToken?: string | undefined;
5116
5116
  /**
5117
5117
  * <p>A list of jobs.</p>
5118
5118
  * @public
5119
5119
  */
5120
- activationJobs?: ActivateReadSetJobItem[];
5120
+ activationJobs?: ActivateReadSetJobItem[] | undefined;
5121
5121
  }
5122
5122
  /**
5123
5123
  * @public
@@ -5132,17 +5132,17 @@ export interface ListReadSetExportJobsRequest {
5132
5132
  * <p>The maximum number of jobs to return in one page of results.</p>
5133
5133
  * @public
5134
5134
  */
5135
- maxResults?: number;
5135
+ maxResults?: number | undefined;
5136
5136
  /**
5137
5137
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
5138
5138
  * @public
5139
5139
  */
5140
- nextToken?: string;
5140
+ nextToken?: string | undefined;
5141
5141
  /**
5142
5142
  * <p>A filter to apply to the list.</p>
5143
5143
  * @public
5144
5144
  */
5145
- filter?: ExportReadSetFilter;
5145
+ filter?: ExportReadSetFilter | undefined;
5146
5146
  }
5147
5147
  /**
5148
5148
  * @public
@@ -5152,12 +5152,12 @@ export interface ListReadSetExportJobsResponse {
5152
5152
  * <p>A pagination token that's included if more results are available.</p>
5153
5153
  * @public
5154
5154
  */
5155
- nextToken?: string;
5155
+ nextToken?: string | undefined;
5156
5156
  /**
5157
5157
  * <p>A list of jobs.</p>
5158
5158
  * @public
5159
5159
  */
5160
- exportJobs?: ExportReadSetJobDetail[];
5160
+ exportJobs?: ExportReadSetJobDetail[] | undefined;
5161
5161
  }
5162
5162
  /**
5163
5163
  * @public
@@ -5167,12 +5167,12 @@ export interface ListReadSetImportJobsRequest {
5167
5167
  * <p>The maximum number of jobs to return in one page of results.</p>
5168
5168
  * @public
5169
5169
  */
5170
- maxResults?: number;
5170
+ maxResults?: number | undefined;
5171
5171
  /**
5172
5172
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
5173
5173
  * @public
5174
5174
  */
5175
- nextToken?: string;
5175
+ nextToken?: string | undefined;
5176
5176
  /**
5177
5177
  * <p>The jobs' sequence store ID.</p>
5178
5178
  * @public
@@ -5182,7 +5182,7 @@ export interface ListReadSetImportJobsRequest {
5182
5182
  * <p>A filter to apply to the list.</p>
5183
5183
  * @public
5184
5184
  */
5185
- filter?: ImportReadSetFilter;
5185
+ filter?: ImportReadSetFilter | undefined;
5186
5186
  }
5187
5187
  /**
5188
5188
  * @public
@@ -5192,12 +5192,12 @@ export interface ListReadSetImportJobsResponse {
5192
5192
  * <p>A pagination token that's included if more results are available.</p>
5193
5193
  * @public
5194
5194
  */
5195
- nextToken?: string;
5195
+ nextToken?: string | undefined;
5196
5196
  /**
5197
5197
  * <p>A list of jobs.</p>
5198
5198
  * @public
5199
5199
  */
5200
- importJobs?: ImportReadSetJobItem[];
5200
+ importJobs?: ImportReadSetJobItem[] | undefined;
5201
5201
  }
5202
5202
  /**
5203
5203
  * <p>A filter for read sets.</p>
@@ -5208,55 +5208,55 @@ export interface ReadSetFilter {
5208
5208
  * <p>A name to filter on.</p>
5209
5209
  * @public
5210
5210
  */
5211
- name?: string;
5211
+ name?: string | undefined;
5212
5212
  /**
5213
5213
  * <p>A status to filter on.</p>
5214
5214
  * @public
5215
5215
  */
5216
- status?: ReadSetStatus;
5216
+ status?: ReadSetStatus | undefined;
5217
5217
  /**
5218
5218
  * <p>A genome reference ARN to filter on.</p>
5219
5219
  * @public
5220
5220
  */
5221
- referenceArn?: string;
5221
+ referenceArn?: string | undefined;
5222
5222
  /**
5223
5223
  * <p>The filter's start date.</p>
5224
5224
  * @public
5225
5225
  */
5226
- createdAfter?: Date;
5226
+ createdAfter?: Date | undefined;
5227
5227
  /**
5228
5228
  * <p>The filter's end date.</p>
5229
5229
  * @public
5230
5230
  */
5231
- createdBefore?: Date;
5231
+ createdBefore?: Date | undefined;
5232
5232
  /**
5233
5233
  * <p>
5234
5234
  * The read set source's sample ID.
5235
5235
  * </p>
5236
5236
  * @public
5237
5237
  */
5238
- sampleId?: string;
5238
+ sampleId?: string | undefined;
5239
5239
  /**
5240
5240
  * <p>
5241
5241
  * The read set source's subject ID.
5242
5242
  * </p>
5243
5243
  * @public
5244
5244
  */
5245
- subjectId?: string;
5245
+ subjectId?: string | undefined;
5246
5246
  /**
5247
5247
  * <p>
5248
5248
  * Where the source originated.
5249
5249
  * </p>
5250
5250
  * @public
5251
5251
  */
5252
- generatedFrom?: string;
5252
+ generatedFrom?: string | undefined;
5253
5253
  /**
5254
5254
  * <p>
5255
5255
  * The creation type of the read set.
5256
5256
  * </p>
5257
5257
  * @public
5258
5258
  */
5259
- creationType?: CreationType;
5259
+ creationType?: CreationType | undefined;
5260
5260
  }
5261
5261
  /**
5262
5262
  * @public
@@ -5271,17 +5271,17 @@ export interface ListReadSetsRequest {
5271
5271
  * <p>The maximum number of read sets to return in one page of results.</p>
5272
5272
  * @public
5273
5273
  */
5274
- maxResults?: number;
5274
+ maxResults?: number | undefined;
5275
5275
  /**
5276
5276
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
5277
5277
  * @public
5278
5278
  */
5279
- nextToken?: string;
5279
+ nextToken?: string | undefined;
5280
5280
  /**
5281
5281
  * <p>A filter to apply to the list.</p>
5282
5282
  * @public
5283
5283
  */
5284
- filter?: ReadSetFilter;
5284
+ filter?: ReadSetFilter | undefined;
5285
5285
  }
5286
5286
  /**
5287
5287
  * <p>A read set.</p>
@@ -5307,12 +5307,12 @@ export interface ReadSetListItem {
5307
5307
  * <p>The read set's subject ID.</p>
5308
5308
  * @public
5309
5309
  */
5310
- subjectId?: string;
5310
+ subjectId?: string | undefined;
5311
5311
  /**
5312
5312
  * <p>The read set's sample ID.</p>
5313
5313
  * @public
5314
5314
  */
5315
- sampleId?: string;
5315
+ sampleId?: string | undefined;
5316
5316
  /**
5317
5317
  * <p>The read set's status.</p>
5318
5318
  * @public
@@ -5322,17 +5322,17 @@ export interface ReadSetListItem {
5322
5322
  * <p>The read set's name.</p>
5323
5323
  * @public
5324
5324
  */
5325
- name?: string;
5325
+ name?: string | undefined;
5326
5326
  /**
5327
5327
  * <p>The read set's description.</p>
5328
5328
  * @public
5329
5329
  */
5330
- description?: string;
5330
+ description?: string | undefined;
5331
5331
  /**
5332
5332
  * <p>The read set's genome reference ARN.</p>
5333
5333
  * @public
5334
5334
  */
5335
- referenceArn?: string;
5335
+ referenceArn?: string | undefined;
5336
5336
  /**
5337
5337
  * <p>The read set's file type.</p>
5338
5338
  * @public
@@ -5342,7 +5342,7 @@ export interface ReadSetListItem {
5342
5342
  * <p>Details about a sequence.</p>
5343
5343
  * @public
5344
5344
  */
5345
- sequenceInformation?: SequenceInformation;
5345
+ sequenceInformation?: SequenceInformation | undefined;
5346
5346
  /**
5347
5347
  * <p>When the read set was created.</p>
5348
5348
  * @public
@@ -5354,19 +5354,19 @@ export interface ReadSetListItem {
5354
5354
  * </p>
5355
5355
  * @public
5356
5356
  */
5357
- statusMessage?: string;
5357
+ statusMessage?: string | undefined;
5358
5358
  /**
5359
5359
  * <p>
5360
5360
  * The creation type of the read set.
5361
5361
  * </p>
5362
5362
  * @public
5363
5363
  */
5364
- creationType?: CreationType;
5364
+ creationType?: CreationType | undefined;
5365
5365
  /**
5366
5366
  * <p>The entity tag (ETag) is a hash of the object representing its semantic content.</p>
5367
5367
  * @public
5368
5368
  */
5369
- etag?: ETag;
5369
+ etag?: ETag | undefined;
5370
5370
  }
5371
5371
  /**
5372
5372
  * @public
@@ -5376,7 +5376,7 @@ export interface ListReadSetsResponse {
5376
5376
  * <p>A pagination token that's included if more results are available.</p>
5377
5377
  * @public
5378
5378
  */
5379
- nextToken?: string;
5379
+ nextToken?: string | undefined;
5380
5380
  /**
5381
5381
  * <p>A list of read sets.</p>
5382
5382
  * @public
@@ -5396,14 +5396,14 @@ export interface ReadSetUploadPartListFilter {
5396
5396
  * </p>
5397
5397
  * @public
5398
5398
  */
5399
- createdAfter?: Date;
5399
+ createdAfter?: Date | undefined;
5400
5400
  /**
5401
5401
  * <p>
5402
5402
  * Filters for read set part uploads before a specified time.
5403
5403
  * </p>
5404
5404
  * @public
5405
5405
  */
5406
- createdBefore?: Date;
5406
+ createdBefore?: Date | undefined;
5407
5407
  }
5408
5408
  /**
5409
5409
  * @public
@@ -5428,18 +5428,18 @@ export interface ListReadSetUploadPartsRequest {
5428
5428
  * <p>The maximum number of read set upload parts returned in a page.</p>
5429
5429
  * @public
5430
5430
  */
5431
- maxResults?: number;
5431
+ maxResults?: number | undefined;
5432
5432
  /**
5433
5433
  * <p>Next token returned in the response of a previous ListReadSetUploadPartsRequest call.
5434
5434
  * Used to get the next page of results.</p>
5435
5435
  * @public
5436
5436
  */
5437
- nextToken?: string;
5437
+ nextToken?: string | undefined;
5438
5438
  /**
5439
5439
  * <p>Attributes used to filter for a specific subset of read set part uploads.</p>
5440
5440
  * @public
5441
5441
  */
5442
- filter?: ReadSetUploadPartListFilter;
5442
+ filter?: ReadSetUploadPartListFilter | undefined;
5443
5443
  }
5444
5444
  /**
5445
5445
  * <p>
@@ -5482,14 +5482,14 @@ export interface ReadSetUploadPartListItem {
5482
5482
  * </p>
5483
5483
  * @public
5484
5484
  */
5485
- creationTime?: Date;
5485
+ creationTime?: Date | undefined;
5486
5486
  /**
5487
5487
  * <p>
5488
5488
  * The time stamp for the most recent update to an uploaded part.
5489
5489
  * </p>
5490
5490
  * @public
5491
5491
  */
5492
- lastUpdatedTime?: Date;
5492
+ lastUpdatedTime?: Date | undefined;
5493
5493
  }
5494
5494
  /**
5495
5495
  * @public
@@ -5500,12 +5500,12 @@ export interface ListReadSetUploadPartsResponse {
5500
5500
  * Used to get the next page of results.</p>
5501
5501
  * @public
5502
5502
  */
5503
- nextToken?: string;
5503
+ nextToken?: string | undefined;
5504
5504
  /**
5505
5505
  * <p>An array of upload parts.</p>
5506
5506
  * @public
5507
5507
  */
5508
- parts?: ReadSetUploadPartListItem[];
5508
+ parts?: ReadSetUploadPartListItem[] | undefined;
5509
5509
  }
5510
5510
  /**
5511
5511
  * @public
@@ -5515,12 +5515,12 @@ export interface ListReferenceImportJobsRequest {
5515
5515
  * <p>The maximum number of jobs to return in one page of results.</p>
5516
5516
  * @public
5517
5517
  */
5518
- maxResults?: number;
5518
+ maxResults?: number | undefined;
5519
5519
  /**
5520
5520
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
5521
5521
  * @public
5522
5522
  */
5523
- nextToken?: string;
5523
+ nextToken?: string | undefined;
5524
5524
  /**
5525
5525
  * <p>The job's reference store ID.</p>
5526
5526
  * @public
@@ -5530,7 +5530,7 @@ export interface ListReferenceImportJobsRequest {
5530
5530
  * <p>A filter to apply to the list.</p>
5531
5531
  * @public
5532
5532
  */
5533
- filter?: ImportReferenceFilter;
5533
+ filter?: ImportReferenceFilter | undefined;
5534
5534
  }
5535
5535
  /**
5536
5536
  * @public
@@ -5540,12 +5540,12 @@ export interface ListReferenceImportJobsResponse {
5540
5540
  * <p>A pagination token that's included if more results are available.</p>
5541
5541
  * @public
5542
5542
  */
5543
- nextToken?: string;
5543
+ nextToken?: string | undefined;
5544
5544
  /**
5545
5545
  * <p>A lis of jobs.</p>
5546
5546
  * @public
5547
5547
  */
5548
- importJobs?: ImportReferenceJobItem[];
5548
+ importJobs?: ImportReferenceJobItem[] | undefined;
5549
5549
  }
5550
5550
  /**
5551
5551
  * <p>A filter for references.</p>
@@ -5556,22 +5556,22 @@ export interface ReferenceFilter {
5556
5556
  * <p>A name to filter on.</p>
5557
5557
  * @public
5558
5558
  */
5559
- name?: string;
5559
+ name?: string | undefined;
5560
5560
  /**
5561
5561
  * <p>An MD5 checksum to filter on.</p>
5562
5562
  * @public
5563
5563
  */
5564
- md5?: string;
5564
+ md5?: string | undefined;
5565
5565
  /**
5566
5566
  * <p>The filter's start date.</p>
5567
5567
  * @public
5568
5568
  */
5569
- createdAfter?: Date;
5569
+ createdAfter?: Date | undefined;
5570
5570
  /**
5571
5571
  * <p>The filter's end date.</p>
5572
5572
  * @public
5573
5573
  */
5574
- createdBefore?: Date;
5574
+ createdBefore?: Date | undefined;
5575
5575
  }
5576
5576
  /**
5577
5577
  * @public
@@ -5586,17 +5586,17 @@ export interface ListReferencesRequest {
5586
5586
  * <p>The maximum number of references to return in one page of results.</p>
5587
5587
  * @public
5588
5588
  */
5589
- maxResults?: number;
5589
+ maxResults?: number | undefined;
5590
5590
  /**
5591
5591
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
5592
5592
  * @public
5593
5593
  */
5594
- nextToken?: string;
5594
+ nextToken?: string | undefined;
5595
5595
  /**
5596
5596
  * <p>A filter to apply to the list.</p>
5597
5597
  * @public
5598
5598
  */
5599
- filter?: ReferenceFilter;
5599
+ filter?: ReferenceFilter | undefined;
5600
5600
  }
5601
5601
  /**
5602
5602
  * <p>A genome reference.</p>
@@ -5627,17 +5627,17 @@ export interface ReferenceListItem {
5627
5627
  * <p>The reference's status.</p>
5628
5628
  * @public
5629
5629
  */
5630
- status?: ReferenceStatus;
5630
+ status?: ReferenceStatus | undefined;
5631
5631
  /**
5632
5632
  * <p>The reference's name.</p>
5633
5633
  * @public
5634
5634
  */
5635
- name?: string;
5635
+ name?: string | undefined;
5636
5636
  /**
5637
5637
  * <p>The reference's description.</p>
5638
5638
  * @public
5639
5639
  */
5640
- description?: string;
5640
+ description?: string | undefined;
5641
5641
  /**
5642
5642
  * <p>When the reference was created.</p>
5643
5643
  * @public
@@ -5657,7 +5657,7 @@ export interface ListReferencesResponse {
5657
5657
  * <p>A pagination token that's included if more results are available.</p>
5658
5658
  * @public
5659
5659
  */
5660
- nextToken?: string;
5660
+ nextToken?: string | undefined;
5661
5661
  /**
5662
5662
  * <p>A list of references.</p>
5663
5663
  * @public
@@ -5673,17 +5673,17 @@ export interface ReferenceStoreFilter {
5673
5673
  * <p>The name to filter on.</p>
5674
5674
  * @public
5675
5675
  */
5676
- name?: string;
5676
+ name?: string | undefined;
5677
5677
  /**
5678
5678
  * <p>The filter's start date.</p>
5679
5679
  * @public
5680
5680
  */
5681
- createdAfter?: Date;
5681
+ createdAfter?: Date | undefined;
5682
5682
  /**
5683
5683
  * <p>The filter's end date.</p>
5684
5684
  * @public
5685
5685
  */
5686
- createdBefore?: Date;
5686
+ createdBefore?: Date | undefined;
5687
5687
  }
5688
5688
  /**
5689
5689
  * @public
@@ -5693,17 +5693,17 @@ export interface ListReferenceStoresRequest {
5693
5693
  * <p>The maximum number of stores to return in one page of results.</p>
5694
5694
  * @public
5695
5695
  */
5696
- maxResults?: number;
5696
+ maxResults?: number | undefined;
5697
5697
  /**
5698
5698
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
5699
5699
  * @public
5700
5700
  */
5701
- nextToken?: string;
5701
+ nextToken?: string | undefined;
5702
5702
  /**
5703
5703
  * <p>A filter to apply to the list.</p>
5704
5704
  * @public
5705
5705
  */
5706
- filter?: ReferenceStoreFilter;
5706
+ filter?: ReferenceStoreFilter | undefined;
5707
5707
  }
5708
5708
  /**
5709
5709
  * <p>Details about a reference store.</p>
@@ -5724,17 +5724,17 @@ export interface ReferenceStoreDetail {
5724
5724
  * <p>The store's name.</p>
5725
5725
  * @public
5726
5726
  */
5727
- name?: string;
5727
+ name?: string | undefined;
5728
5728
  /**
5729
5729
  * <p>The store's description.</p>
5730
5730
  * @public
5731
5731
  */
5732
- description?: string;
5732
+ description?: string | undefined;
5733
5733
  /**
5734
5734
  * <p>The store's server-side encryption (SSE) settings.</p>
5735
5735
  * @public
5736
5736
  */
5737
- sseConfig?: SseConfig;
5737
+ sseConfig?: SseConfig | undefined;
5738
5738
  /**
5739
5739
  * <p>When the store was created.</p>
5740
5740
  * @public
@@ -5749,7 +5749,7 @@ export interface ListReferenceStoresResponse {
5749
5749
  * <p>A pagination token that's included if more results are available.</p>
5750
5750
  * @public
5751
5751
  */
5752
- nextToken?: string;
5752
+ nextToken?: string | undefined;
5753
5753
  /**
5754
5754
  * <p>A list of reference stores.</p>
5755
5755
  * @public
@@ -5764,17 +5764,17 @@ export interface ListRunGroupsRequest {
5764
5764
  * <p>The run groups' name.</p>
5765
5765
  * @public
5766
5766
  */
5767
- name?: string;
5767
+ name?: string | undefined;
5768
5768
  /**
5769
5769
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
5770
5770
  * @public
5771
5771
  */
5772
- startingToken?: string;
5772
+ startingToken?: string | undefined;
5773
5773
  /**
5774
5774
  * <p>The maximum number of run groups to return in one page of results.</p>
5775
5775
  * @public
5776
5776
  */
5777
- maxResults?: number;
5777
+ maxResults?: number | undefined;
5778
5778
  }
5779
5779
  /**
5780
5780
  * <p>A run group.</p>
@@ -5785,44 +5785,44 @@ export interface RunGroupListItem {
5785
5785
  * <p>The group's ARN.</p>
5786
5786
  * @public
5787
5787
  */
5788
- arn?: string;
5788
+ arn?: string | undefined;
5789
5789
  /**
5790
5790
  * <p>The group's ID.</p>
5791
5791
  * @public
5792
5792
  */
5793
- id?: string;
5793
+ id?: string | undefined;
5794
5794
  /**
5795
5795
  * <p>The group's name.</p>
5796
5796
  * @public
5797
5797
  */
5798
- name?: string;
5798
+ name?: string | undefined;
5799
5799
  /**
5800
5800
  * <p>The group's maximum CPU count setting.</p>
5801
5801
  * @public
5802
5802
  */
5803
- maxCpus?: number;
5803
+ maxCpus?: number | undefined;
5804
5804
  /**
5805
5805
  * <p>The group's maximum concurrent run setting.</p>
5806
5806
  * @public
5807
5807
  */
5808
- maxRuns?: number;
5808
+ maxRuns?: number | undefined;
5809
5809
  /**
5810
5810
  * <p>The group's maximum duration setting in minutes.</p>
5811
5811
  * @public
5812
5812
  */
5813
- maxDuration?: number;
5813
+ maxDuration?: number | undefined;
5814
5814
  /**
5815
5815
  * <p>When the group was created.</p>
5816
5816
  * @public
5817
5817
  */
5818
- creationTime?: Date;
5818
+ creationTime?: Date | undefined;
5819
5819
  /**
5820
5820
  * <p>
5821
5821
  * The maximum GPUs that can be used by a run group.
5822
5822
  * </p>
5823
5823
  * @public
5824
5824
  */
5825
- maxGpus?: number;
5825
+ maxGpus?: number | undefined;
5826
5826
  }
5827
5827
  /**
5828
5828
  * @public
@@ -5832,12 +5832,12 @@ export interface ListRunGroupsResponse {
5832
5832
  * <p>A list of groups.</p>
5833
5833
  * @public
5834
5834
  */
5835
- items?: RunGroupListItem[];
5835
+ items?: RunGroupListItem[] | undefined;
5836
5836
  /**
5837
5837
  * <p>A pagination token that's included if more results are available.</p>
5838
5838
  * @public
5839
5839
  */
5840
- nextToken?: string;
5840
+ nextToken?: string | undefined;
5841
5841
  }
5842
5842
  /**
5843
5843
  * @public
@@ -5847,27 +5847,27 @@ export interface ListRunsRequest {
5847
5847
  * <p>Filter the list by run name.</p>
5848
5848
  * @public
5849
5849
  */
5850
- name?: string;
5850
+ name?: string | undefined;
5851
5851
  /**
5852
5852
  * <p>Filter the list by run group ID.</p>
5853
5853
  * @public
5854
5854
  */
5855
- runGroupId?: string;
5855
+ runGroupId?: string | undefined;
5856
5856
  /**
5857
5857
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
5858
5858
  * @public
5859
5859
  */
5860
- startingToken?: string;
5860
+ startingToken?: string | undefined;
5861
5861
  /**
5862
5862
  * <p>The maximum number of runs to return in one page of results.</p>
5863
5863
  * @public
5864
5864
  */
5865
- maxResults?: number;
5865
+ maxResults?: number | undefined;
5866
5866
  /**
5867
5867
  * <p>The status of a run.</p>
5868
5868
  * @public
5869
5869
  */
5870
- status?: RunStatus;
5870
+ status?: RunStatus | undefined;
5871
5871
  }
5872
5872
  /**
5873
5873
  * <p>A workflow run.</p>
@@ -5878,59 +5878,59 @@ export interface RunListItem {
5878
5878
  * <p>The run's ARN.</p>
5879
5879
  * @public
5880
5880
  */
5881
- arn?: string;
5881
+ arn?: string | undefined;
5882
5882
  /**
5883
5883
  * <p>The run's ID.</p>
5884
5884
  * @public
5885
5885
  */
5886
- id?: string;
5886
+ id?: string | undefined;
5887
5887
  /**
5888
5888
  * <p>The run's status.</p>
5889
5889
  * @public
5890
5890
  */
5891
- status?: RunStatus;
5891
+ status?: RunStatus | undefined;
5892
5892
  /**
5893
5893
  * <p>The run's workflow ID.</p>
5894
5894
  * @public
5895
5895
  */
5896
- workflowId?: string;
5896
+ workflowId?: string | undefined;
5897
5897
  /**
5898
5898
  * <p>The run's name.</p>
5899
5899
  * @public
5900
5900
  */
5901
- name?: string;
5901
+ name?: string | undefined;
5902
5902
  /**
5903
5903
  * <p>The run's priority.</p>
5904
5904
  * @public
5905
5905
  */
5906
- priority?: number;
5906
+ priority?: number | undefined;
5907
5907
  /**
5908
5908
  * <p>The run's storage capacity in gibibytes. For dynamic storage,
5909
5909
  * after the run has completed, this value is the maximum amount of storage
5910
5910
  * used during the run.</p>
5911
5911
  * @public
5912
5912
  */
5913
- storageCapacity?: number;
5913
+ storageCapacity?: number | undefined;
5914
5914
  /**
5915
5915
  * <p>When the run was created.</p>
5916
5916
  * @public
5917
5917
  */
5918
- creationTime?: Date;
5918
+ creationTime?: Date | undefined;
5919
5919
  /**
5920
5920
  * <p>When the run started.</p>
5921
5921
  * @public
5922
5922
  */
5923
- startTime?: Date;
5923
+ startTime?: Date | undefined;
5924
5924
  /**
5925
5925
  * <p>When the run stopped.</p>
5926
5926
  * @public
5927
5927
  */
5928
- stopTime?: Date;
5928
+ stopTime?: Date | undefined;
5929
5929
  /**
5930
5930
  * <p>The run's storage type.</p>
5931
5931
  * @public
5932
5932
  */
5933
- storageType?: StorageType;
5933
+ storageType?: StorageType | undefined;
5934
5934
  }
5935
5935
  /**
5936
5936
  * @public
@@ -5940,12 +5940,12 @@ export interface ListRunsResponse {
5940
5940
  * <p>A list of runs.</p>
5941
5941
  * @public
5942
5942
  */
5943
- items?: RunListItem[];
5943
+ items?: RunListItem[] | undefined;
5944
5944
  /**
5945
5945
  * <p>A pagination token that's included if more results are available.</p>
5946
5946
  * @public
5947
5947
  */
5948
- nextToken?: string;
5948
+ nextToken?: string | undefined;
5949
5949
  }
5950
5950
  /**
5951
5951
  * @public
@@ -5960,17 +5960,17 @@ export interface ListRunTasksRequest {
5960
5960
  * <p>Filter the list by status.</p>
5961
5961
  * @public
5962
5962
  */
5963
- status?: TaskStatus;
5963
+ status?: TaskStatus | undefined;
5964
5964
  /**
5965
5965
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
5966
5966
  * @public
5967
5967
  */
5968
- startingToken?: string;
5968
+ startingToken?: string | undefined;
5969
5969
  /**
5970
5970
  * <p>The maximum number of run tasks to return in one page of results.</p>
5971
5971
  * @public
5972
5972
  */
5973
- maxResults?: number;
5973
+ maxResults?: number | undefined;
5974
5974
  }
5975
5975
  /**
5976
5976
  * <p>A workflow run task.</p>
@@ -5981,54 +5981,54 @@ export interface TaskListItem {
5981
5981
  * <p>The task's ID.</p>
5982
5982
  * @public
5983
5983
  */
5984
- taskId?: string;
5984
+ taskId?: string | undefined;
5985
5985
  /**
5986
5986
  * <p>The task's status.</p>
5987
5987
  * @public
5988
5988
  */
5989
- status?: TaskStatus;
5989
+ status?: TaskStatus | undefined;
5990
5990
  /**
5991
5991
  * <p>The task's name.</p>
5992
5992
  * @public
5993
5993
  */
5994
- name?: string;
5994
+ name?: string | undefined;
5995
5995
  /**
5996
5996
  * <p>The task's CPU count.</p>
5997
5997
  * @public
5998
5998
  */
5999
- cpus?: number;
5999
+ cpus?: number | undefined;
6000
6000
  /**
6001
6001
  * <p>The task's memory use in gigabyes.</p>
6002
6002
  * @public
6003
6003
  */
6004
- memory?: number;
6004
+ memory?: number | undefined;
6005
6005
  /**
6006
6006
  * <p>When the task was created.</p>
6007
6007
  * @public
6008
6008
  */
6009
- creationTime?: Date;
6009
+ creationTime?: Date | undefined;
6010
6010
  /**
6011
6011
  * <p>When the task started.</p>
6012
6012
  * @public
6013
6013
  */
6014
- startTime?: Date;
6014
+ startTime?: Date | undefined;
6015
6015
  /**
6016
6016
  * <p>When the task stopped.</p>
6017
6017
  * @public
6018
6018
  */
6019
- stopTime?: Date;
6019
+ stopTime?: Date | undefined;
6020
6020
  /**
6021
6021
  * <p>
6022
6022
  * The number of Graphics Processing Units (GPU) specified for the task.
6023
6023
  * </p>
6024
6024
  * @public
6025
6025
  */
6026
- gpus?: number;
6026
+ gpus?: number | undefined;
6027
6027
  /**
6028
6028
  * <p> The instance type for a task.</p>
6029
6029
  * @public
6030
6030
  */
6031
- instanceType?: string;
6031
+ instanceType?: string | undefined;
6032
6032
  }
6033
6033
  /**
6034
6034
  * @public
@@ -6038,12 +6038,12 @@ export interface ListRunTasksResponse {
6038
6038
  * <p>A list of tasks.</p>
6039
6039
  * @public
6040
6040
  */
6041
- items?: TaskListItem[];
6041
+ items?: TaskListItem[] | undefined;
6042
6042
  /**
6043
6043
  * <p>A pagination token that's included if more results are available.</p>
6044
6044
  * @public
6045
6045
  */
6046
- nextToken?: string;
6046
+ nextToken?: string | undefined;
6047
6047
  }
6048
6048
  /**
6049
6049
  * <p>A filter for a sequence store.</p>
@@ -6054,17 +6054,17 @@ export interface SequenceStoreFilter {
6054
6054
  * <p>A name to filter on.</p>
6055
6055
  * @public
6056
6056
  */
6057
- name?: string;
6057
+ name?: string | undefined;
6058
6058
  /**
6059
6059
  * <p>The filter's start date.</p>
6060
6060
  * @public
6061
6061
  */
6062
- createdAfter?: Date;
6062
+ createdAfter?: Date | undefined;
6063
6063
  /**
6064
6064
  * <p>The filter's end date.</p>
6065
6065
  * @public
6066
6066
  */
6067
- createdBefore?: Date;
6067
+ createdBefore?: Date | undefined;
6068
6068
  }
6069
6069
  /**
6070
6070
  * @public
@@ -6074,17 +6074,17 @@ export interface ListSequenceStoresRequest {
6074
6074
  * <p>The maximum number of stores to return in one page of results.</p>
6075
6075
  * @public
6076
6076
  */
6077
- maxResults?: number;
6077
+ maxResults?: number | undefined;
6078
6078
  /**
6079
6079
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
6080
6080
  * @public
6081
6081
  */
6082
- nextToken?: string;
6082
+ nextToken?: string | undefined;
6083
6083
  /**
6084
6084
  * <p>A filter to apply to the list.</p>
6085
6085
  * @public
6086
6086
  */
6087
- filter?: SequenceStoreFilter;
6087
+ filter?: SequenceStoreFilter | undefined;
6088
6088
  }
6089
6089
  /**
6090
6090
  * <p>Details about a sequence store.</p>
@@ -6105,17 +6105,17 @@ export interface SequenceStoreDetail {
6105
6105
  * <p>The store's name.</p>
6106
6106
  * @public
6107
6107
  */
6108
- name?: string;
6108
+ name?: string | undefined;
6109
6109
  /**
6110
6110
  * <p>The store's description.</p>
6111
6111
  * @public
6112
6112
  */
6113
- description?: string;
6113
+ description?: string | undefined;
6114
6114
  /**
6115
6115
  * <p>The store's server-side encryption (SSE) settings.</p>
6116
6116
  * @public
6117
6117
  */
6118
- sseConfig?: SseConfig;
6118
+ sseConfig?: SseConfig | undefined;
6119
6119
  /**
6120
6120
  * <p>When the store was created.</p>
6121
6121
  * @public
@@ -6127,12 +6127,12 @@ export interface SequenceStoreDetail {
6127
6127
  * </p>
6128
6128
  * @public
6129
6129
  */
6130
- fallbackLocation?: string;
6130
+ fallbackLocation?: string | undefined;
6131
6131
  /**
6132
6132
  * <p>The algorithm family of the ETag.</p>
6133
6133
  * @public
6134
6134
  */
6135
- eTagAlgorithmFamily?: ETagAlgorithmFamily;
6135
+ eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
6136
6136
  }
6137
6137
  /**
6138
6138
  * @public
@@ -6142,7 +6142,7 @@ export interface ListSequenceStoresResponse {
6142
6142
  * <p>A pagination token that's included if more results are available.</p>
6143
6143
  * @public
6144
6144
  */
6145
- nextToken?: string;
6145
+ nextToken?: string | undefined;
6146
6146
  /**
6147
6147
  * <p>A list of sequence stores.</p>
6148
6148
  * @public
@@ -6180,18 +6180,18 @@ export interface ListSharesRequest {
6180
6180
  * <p>Attributes that you use to filter for a specific subset of resource shares.</p>
6181
6181
  * @public
6182
6182
  */
6183
- filter?: Filter;
6183
+ filter?: Filter | undefined;
6184
6184
  /**
6185
6185
  * <p>Next token returned in the response of a previous ListReadSetUploadPartsRequest call.
6186
6186
  * Used to get the next page of results.</p>
6187
6187
  * @public
6188
6188
  */
6189
- nextToken?: string;
6189
+ nextToken?: string | undefined;
6190
6190
  /**
6191
6191
  * <p>The maximum number of shares to return in one page of results.</p>
6192
6192
  * @public
6193
6193
  */
6194
- maxResults?: number;
6194
+ maxResults?: number | undefined;
6195
6195
  }
6196
6196
  /**
6197
6197
  * @public
@@ -6208,7 +6208,7 @@ export interface ListSharesResponse {
6208
6208
  * </p>
6209
6209
  * @public
6210
6210
  */
6211
- nextToken?: string;
6211
+ nextToken?: string | undefined;
6212
6212
  }
6213
6213
  /**
6214
6214
  * @public
@@ -6239,12 +6239,12 @@ export interface ListVariantImportJobsFilter {
6239
6239
  * <p>A status to filter on.</p>
6240
6240
  * @public
6241
6241
  */
6242
- status?: JobStatus;
6242
+ status?: JobStatus | undefined;
6243
6243
  /**
6244
6244
  * <p>A store name to filter on.</p>
6245
6245
  * @public
6246
6246
  */
6247
- storeName?: string;
6247
+ storeName?: string | undefined;
6248
6248
  }
6249
6249
  /**
6250
6250
  * @public
@@ -6254,22 +6254,22 @@ export interface ListVariantImportJobsRequest {
6254
6254
  * <p>The maximum number of import jobs to return in one page of results.</p>
6255
6255
  * @public
6256
6256
  */
6257
- maxResults?: number;
6257
+ maxResults?: number | undefined;
6258
6258
  /**
6259
6259
  * <p>A list of job IDs.</p>
6260
6260
  * @public
6261
6261
  */
6262
- ids?: string[];
6262
+ ids?: string[] | undefined;
6263
6263
  /**
6264
6264
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
6265
6265
  * @public
6266
6266
  */
6267
- nextToken?: string;
6267
+ nextToken?: string | undefined;
6268
6268
  /**
6269
6269
  * <p>A filter to apply to the list.</p>
6270
6270
  * @public
6271
6271
  */
6272
- filter?: ListVariantImportJobsFilter;
6272
+ filter?: ListVariantImportJobsFilter | undefined;
6273
6273
  }
6274
6274
  /**
6275
6275
  * <p>A variant import job.</p>
@@ -6310,19 +6310,19 @@ export interface VariantImportJobItem {
6310
6310
  * <p>When the job completed.</p>
6311
6311
  * @public
6312
6312
  */
6313
- completionTime?: Date;
6313
+ completionTime?: Date | undefined;
6314
6314
  /**
6315
6315
  * <p>The job's left normalization setting.</p>
6316
6316
  * @public
6317
6317
  */
6318
- runLeftNormalization?: boolean;
6318
+ runLeftNormalization?: boolean | undefined;
6319
6319
  /**
6320
6320
  * <p>
6321
6321
  * The annotation schema generated by the parsed annotation data.
6322
6322
  * </p>
6323
6323
  * @public
6324
6324
  */
6325
- annotationFields?: Record<string, string>;
6325
+ annotationFields?: Record<string, string> | undefined;
6326
6326
  }
6327
6327
  /**
6328
6328
  * @public
@@ -6332,12 +6332,12 @@ export interface ListVariantImportJobsResponse {
6332
6332
  * <p>A list of jobs.</p>
6333
6333
  * @public
6334
6334
  */
6335
- variantImportJobs?: VariantImportJobItem[];
6335
+ variantImportJobs?: VariantImportJobItem[] | undefined;
6336
6336
  /**
6337
6337
  * <p>A pagination token that's included if more results are available.</p>
6338
6338
  * @public
6339
6339
  */
6340
- nextToken?: string;
6340
+ nextToken?: string | undefined;
6341
6341
  }
6342
6342
  /**
6343
6343
  * <p>A filter for variant stores.</p>
@@ -6348,7 +6348,7 @@ export interface ListVariantStoresFilter {
6348
6348
  * <p>A status to filter on.</p>
6349
6349
  * @public
6350
6350
  */
6351
- status?: StoreStatus;
6351
+ status?: StoreStatus | undefined;
6352
6352
  }
6353
6353
  /**
6354
6354
  * @public
@@ -6358,22 +6358,22 @@ export interface ListVariantStoresRequest {
6358
6358
  * <p>The maximum number of stores to return in one page of results.</p>
6359
6359
  * @public
6360
6360
  */
6361
- maxResults?: number;
6361
+ maxResults?: number | undefined;
6362
6362
  /**
6363
6363
  * <p>A list of store IDs.</p>
6364
6364
  * @public
6365
6365
  */
6366
- ids?: string[];
6366
+ ids?: string[] | undefined;
6367
6367
  /**
6368
6368
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
6369
6369
  * @public
6370
6370
  */
6371
- nextToken?: string;
6371
+ nextToken?: string | undefined;
6372
6372
  /**
6373
6373
  * <p>A filter to apply to the list.</p>
6374
6374
  * @public
6375
6375
  */
6376
- filter?: ListVariantStoresFilter;
6376
+ filter?: ListVariantStoresFilter | undefined;
6377
6377
  }
6378
6378
  /**
6379
6379
  * <p>A variant store.</p>
@@ -6444,12 +6444,12 @@ export interface ListVariantStoresResponse {
6444
6444
  * <p>A list of variant stores.</p>
6445
6445
  * @public
6446
6446
  */
6447
- variantStores?: VariantStoreItem[];
6447
+ variantStores?: VariantStoreItem[] | undefined;
6448
6448
  /**
6449
6449
  * <p>A pagination token that's included if more results are available.</p>
6450
6450
  * @public
6451
6451
  */
6452
- nextToken?: string;
6452
+ nextToken?: string | undefined;
6453
6453
  }
6454
6454
  /**
6455
6455
  * @public
@@ -6459,22 +6459,22 @@ export interface ListWorkflowsRequest {
6459
6459
  * <p>Filter the list by workflow type.</p>
6460
6460
  * @public
6461
6461
  */
6462
- type?: WorkflowType;
6462
+ type?: WorkflowType | undefined;
6463
6463
  /**
6464
6464
  * <p>Filter the list by workflow name.</p>
6465
6465
  * @public
6466
6466
  */
6467
- name?: string;
6467
+ name?: string | undefined;
6468
6468
  /**
6469
6469
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
6470
6470
  * @public
6471
6471
  */
6472
- startingToken?: string;
6472
+ startingToken?: string | undefined;
6473
6473
  /**
6474
6474
  * <p>The maximum number of workflows to return in one page of results.</p>
6475
6475
  * @public
6476
6476
  */
6477
- maxResults?: number;
6477
+ maxResults?: number | undefined;
6478
6478
  }
6479
6479
  /**
6480
6480
  * <p>A workflow.</p>
@@ -6485,44 +6485,44 @@ export interface WorkflowListItem {
6485
6485
  * <p>The workflow's ARN.</p>
6486
6486
  * @public
6487
6487
  */
6488
- arn?: string;
6488
+ arn?: string | undefined;
6489
6489
  /**
6490
6490
  * <p>The workflow's ID.</p>
6491
6491
  * @public
6492
6492
  */
6493
- id?: string;
6493
+ id?: string | undefined;
6494
6494
  /**
6495
6495
  * <p>The workflow's name.</p>
6496
6496
  * @public
6497
6497
  */
6498
- name?: string;
6498
+ name?: string | undefined;
6499
6499
  /**
6500
6500
  * <p>The workflow's status.</p>
6501
6501
  * @public
6502
6502
  */
6503
- status?: WorkflowStatus;
6503
+ status?: WorkflowStatus | undefined;
6504
6504
  /**
6505
6505
  * <p>The workflow's type.</p>
6506
6506
  * @public
6507
6507
  */
6508
- type?: WorkflowType;
6508
+ type?: WorkflowType | undefined;
6509
6509
  /**
6510
6510
  * <p>The workflow's digest.</p>
6511
6511
  * @public
6512
6512
  */
6513
- digest?: string;
6513
+ digest?: string | undefined;
6514
6514
  /**
6515
6515
  * <p>When the workflow was created.</p>
6516
6516
  * @public
6517
6517
  */
6518
- creationTime?: Date;
6518
+ creationTime?: Date | undefined;
6519
6519
  /**
6520
6520
  * <p>
6521
6521
  * Any metadata available for workflow. The information listed may vary depending on the workflow, and there may also be no metadata to return.
6522
6522
  * </p>
6523
6523
  * @public
6524
6524
  */
6525
- metadata?: Record<string, string>;
6525
+ metadata?: Record<string, string> | undefined;
6526
6526
  }
6527
6527
  /**
6528
6528
  * @public
@@ -6532,12 +6532,12 @@ export interface ListWorkflowsResponse {
6532
6532
  * <p>A list of workflow items.</p>
6533
6533
  * @public
6534
6534
  */
6535
- items?: WorkflowListItem[];
6535
+ items?: WorkflowListItem[] | undefined;
6536
6536
  /**
6537
6537
  * <p>A pagination token that's included if more results are available.</p>
6538
6538
  * @public
6539
6539
  */
6540
- nextToken?: string;
6540
+ nextToken?: string | undefined;
6541
6541
  }
6542
6542
  /**
6543
6543
  * <p>A source for a reference import job.</p>
@@ -6558,12 +6558,12 @@ export interface StartReferenceImportJobSourceItem {
6558
6558
  * <p>The source's description.</p>
6559
6559
  * @public
6560
6560
  */
6561
- description?: string;
6561
+ description?: string | undefined;
6562
6562
  /**
6563
6563
  * <p>The source's tags.</p>
6564
6564
  * @public
6565
6565
  */
6566
- tags?: Record<string, string>;
6566
+ tags?: Record<string, string> | undefined;
6567
6567
  }
6568
6568
  /**
6569
6569
  * @public
@@ -6583,7 +6583,7 @@ export interface StartReferenceImportJobRequest {
6583
6583
  * <p>To ensure that jobs don't run multiple times, specify a unique token for each job.</p>
6584
6584
  * @public
6585
6585
  */
6586
- clientToken?: string;
6586
+ clientToken?: string | undefined;
6587
6587
  /**
6588
6588
  * <p>The job's source files.</p>
6589
6589
  * @public
@@ -6633,27 +6633,27 @@ export interface UpdateRunGroupRequest {
6633
6633
  * <p>A name for the group.</p>
6634
6634
  * @public
6635
6635
  */
6636
- name?: string;
6636
+ name?: string | undefined;
6637
6637
  /**
6638
6638
  * <p>The maximum number of CPUs to use.</p>
6639
6639
  * @public
6640
6640
  */
6641
- maxCpus?: number;
6641
+ maxCpus?: number | undefined;
6642
6642
  /**
6643
6643
  * <p>The maximum number of concurrent runs for the group.</p>
6644
6644
  * @public
6645
6645
  */
6646
- maxRuns?: number;
6646
+ maxRuns?: number | undefined;
6647
6647
  /**
6648
6648
  * <p>A maximum run time for the group in minutes.</p>
6649
6649
  * @public
6650
6650
  */
6651
- maxDuration?: number;
6651
+ maxDuration?: number | undefined;
6652
6652
  /**
6653
6653
  * <p>The maximum GPUs that can be used by a run group.</p>
6654
6654
  * @public
6655
6655
  */
6656
- maxGpus?: number;
6656
+ maxGpus?: number | undefined;
6657
6657
  }
6658
6658
  /**
6659
6659
  * @public
@@ -6663,17 +6663,17 @@ export interface StartRunRequest {
6663
6663
  * <p>The run's workflow ID.</p>
6664
6664
  * @public
6665
6665
  */
6666
- workflowId?: string;
6666
+ workflowId?: string | undefined;
6667
6667
  /**
6668
6668
  * <p>The run's workflow type.</p>
6669
6669
  * @public
6670
6670
  */
6671
- workflowType?: WorkflowType;
6671
+ workflowType?: WorkflowType | undefined;
6672
6672
  /**
6673
6673
  * <p>The ID of a run to duplicate.</p>
6674
6674
  * @public
6675
6675
  */
6676
- runId?: string;
6676
+ runId?: string | undefined;
6677
6677
  /**
6678
6678
  * <p>A service role for the run.</p>
6679
6679
  * @public
@@ -6683,65 +6683,65 @@ export interface StartRunRequest {
6683
6683
  * <p>A name for the run.</p>
6684
6684
  * @public
6685
6685
  */
6686
- name?: string;
6686
+ name?: string | undefined;
6687
6687
  /**
6688
6688
  * <p>The run's group ID.</p>
6689
6689
  * @public
6690
6690
  */
6691
- runGroupId?: string;
6691
+ runGroupId?: string | undefined;
6692
6692
  /**
6693
6693
  * <p>A priority for the run.</p>
6694
6694
  * @public
6695
6695
  */
6696
- priority?: number;
6696
+ priority?: number | undefined;
6697
6697
  /**
6698
6698
  * <p>Parameters for the run.</p>
6699
6699
  * @public
6700
6700
  */
6701
- parameters?: __DocumentType;
6701
+ parameters?: __DocumentType | undefined;
6702
6702
  /**
6703
6703
  * <p>A storage capacity for the run in gibibytes. This field is not required if the storage type is dynamic
6704
6704
  * (the system ignores any value that you enter).</p>
6705
6705
  * @public
6706
6706
  */
6707
- storageCapacity?: number;
6707
+ storageCapacity?: number | undefined;
6708
6708
  /**
6709
6709
  * <p>An output URI for the run.</p>
6710
6710
  * @public
6711
6711
  */
6712
- outputUri?: string;
6712
+ outputUri?: string | undefined;
6713
6713
  /**
6714
6714
  * <p>A log level for the run.</p>
6715
6715
  * @public
6716
6716
  */
6717
- logLevel?: RunLogLevel;
6717
+ logLevel?: RunLogLevel | undefined;
6718
6718
  /**
6719
6719
  * <p>Tags for the run.</p>
6720
6720
  * @public
6721
6721
  */
6722
- tags?: Record<string, string>;
6722
+ tags?: Record<string, string> | undefined;
6723
6723
  /**
6724
6724
  * <p>To ensure that requests don't run multiple times, specify a unique ID for each request.</p>
6725
6725
  * @public
6726
6726
  */
6727
- requestId?: string;
6727
+ requestId?: string | undefined;
6728
6728
  /**
6729
6729
  * <p>The retention mode for the run.</p>
6730
6730
  * @public
6731
6731
  */
6732
- retentionMode?: RunRetentionMode;
6732
+ retentionMode?: RunRetentionMode | undefined;
6733
6733
  /**
6734
6734
  * <p>The run's storage type. By default, the run uses STATIC storage type, which allocates a fixed amount of storage.
6735
6735
  * If you set the storage type to DYNAMIC, HealthOmics dynamically scales the storage up
6736
6736
  * or down, based on file system utilization.</p>
6737
6737
  * @public
6738
6738
  */
6739
- storageType?: StorageType;
6739
+ storageType?: StorageType | undefined;
6740
6740
  /**
6741
6741
  * <p>The ID of the workflow owner. </p>
6742
6742
  * @public
6743
6743
  */
6744
- workflowOwnerId?: string;
6744
+ workflowOwnerId?: string | undefined;
6745
6745
  }
6746
6746
  /**
6747
6747
  * @public
@@ -6751,32 +6751,32 @@ export interface StartRunResponse {
6751
6751
  * <p>The run's ARN.</p>
6752
6752
  * @public
6753
6753
  */
6754
- arn?: string;
6754
+ arn?: string | undefined;
6755
6755
  /**
6756
6756
  * <p>The run's ID.</p>
6757
6757
  * @public
6758
6758
  */
6759
- id?: string;
6759
+ id?: string | undefined;
6760
6760
  /**
6761
6761
  * <p>The run's status.</p>
6762
6762
  * @public
6763
6763
  */
6764
- status?: RunStatus;
6764
+ status?: RunStatus | undefined;
6765
6765
  /**
6766
6766
  * <p>The run's tags.</p>
6767
6767
  * @public
6768
6768
  */
6769
- tags?: Record<string, string>;
6769
+ tags?: Record<string, string> | undefined;
6770
6770
  /**
6771
6771
  * <p>The universally unique identifier for a run.</p>
6772
6772
  * @public
6773
6773
  */
6774
- uuid?: string;
6774
+ uuid?: string | undefined;
6775
6775
  /**
6776
6776
  * <p>The destination for workflow outputs.</p>
6777
6777
  * @public
6778
6778
  */
6779
- runOutputUri?: string;
6779
+ runOutputUri?: string | undefined;
6780
6780
  }
6781
6781
  /**
6782
6782
  * <p>A source for a read set activation job.</p>
@@ -6802,7 +6802,7 @@ export interface StartReadSetActivationJobRequest {
6802
6802
  * <p>To ensure that jobs don't run multiple times, specify a unique token for each job.</p>
6803
6803
  * @public
6804
6804
  */
6805
- clientToken?: string;
6805
+ clientToken?: string | undefined;
6806
6806
  /**
6807
6807
  * <p>The job's source files.</p>
6808
6808
  * @public
@@ -6857,7 +6857,7 @@ export interface StartReadSetExportJobRequest {
6857
6857
  * <p>To ensure that jobs don't run multiple times, specify a unique token for each job.</p>
6858
6858
  * @public
6859
6859
  */
6860
- clientToken?: string;
6860
+ clientToken?: string | undefined;
6861
6861
  /**
6862
6862
  * <p>The job's source files.</p>
6863
6863
  * @public
@@ -6923,27 +6923,27 @@ export interface StartReadSetImportJobSourceItem {
6923
6923
  * <p>Where the source originated.</p>
6924
6924
  * @public
6925
6925
  */
6926
- generatedFrom?: string;
6926
+ generatedFrom?: string | undefined;
6927
6927
  /**
6928
6928
  * <p>The source's reference ARN.</p>
6929
6929
  * @public
6930
6930
  */
6931
- referenceArn?: string;
6931
+ referenceArn?: string | undefined;
6932
6932
  /**
6933
6933
  * <p>The source's name.</p>
6934
6934
  * @public
6935
6935
  */
6936
- name?: string;
6936
+ name?: string | undefined;
6937
6937
  /**
6938
6938
  * <p>The source's description.</p>
6939
6939
  * @public
6940
6940
  */
6941
- description?: string;
6941
+ description?: string | undefined;
6942
6942
  /**
6943
6943
  * <p>The source's tags.</p>
6944
6944
  * @public
6945
6945
  */
6946
- tags?: Record<string, string>;
6946
+ tags?: Record<string, string> | undefined;
6947
6947
  }
6948
6948
  /**
6949
6949
  * @public
@@ -6963,7 +6963,7 @@ export interface StartReadSetImportJobRequest {
6963
6963
  * <p>To ensure that jobs don't run multiple times, specify a unique token for each job.</p>
6964
6964
  * @public
6965
6965
  */
6966
- clientToken?: string;
6966
+ clientToken?: string | undefined;
6967
6967
  /**
6968
6968
  * <p>The job's source files.</p>
6969
6969
  * @public
@@ -7114,12 +7114,12 @@ export interface StartVariantImportRequest {
7114
7114
  * <p>The job's left normalization setting.</p>
7115
7115
  * @public
7116
7116
  */
7117
- runLeftNormalization?: boolean;
7117
+ runLeftNormalization?: boolean | undefined;
7118
7118
  /**
7119
7119
  * <p>The annotation schema generated by the parsed annotation data.</p>
7120
7120
  * @public
7121
7121
  */
7122
- annotationFields?: Record<string, string>;
7122
+ annotationFields?: Record<string, string> | undefined;
7123
7123
  }
7124
7124
  /**
7125
7125
  * @public
@@ -7144,7 +7144,7 @@ export interface UpdateVariantStoreRequest {
7144
7144
  * <p>A description for the store.</p>
7145
7145
  * @public
7146
7146
  */
7147
- description?: string;
7147
+ description?: string | undefined;
7148
7148
  }
7149
7149
  /**
7150
7150
  * @public
@@ -7199,12 +7199,12 @@ export interface UpdateWorkflowRequest {
7199
7199
  * <p>A name for the workflow.</p>
7200
7200
  * @public
7201
7201
  */
7202
- name?: string;
7202
+ name?: string | undefined;
7203
7203
  /**
7204
7204
  * <p>A description for the workflow.</p>
7205
7205
  * @public
7206
7206
  */
7207
- description?: string;
7207
+ description?: string | undefined;
7208
7208
  }
7209
7209
  /**
7210
7210
  * @internal