@aws-sdk/client-forecast 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.
@@ -296,7 +296,7 @@ export interface AdditionalDataset {
296
296
  * </ul>
297
297
  * @public
298
298
  */
299
- Configuration?: Record<string, string[]>;
299
+ Configuration?: Record<string, string[]> | undefined;
300
300
  }
301
301
  /**
302
302
  * <p>Provides information about the method used to transform attributes.</p>
@@ -406,12 +406,12 @@ export interface DataConfig {
406
406
  * <p>Aggregation and filling options for attributes in your dataset group.</p>
407
407
  * @public
408
408
  */
409
- AttributeConfigs?: AttributeConfig[];
409
+ AttributeConfigs?: AttributeConfig[] | undefined;
410
410
  /**
411
411
  * <p>Additional built-in datasets like Holidays and the Weather Index.</p>
412
412
  * @public
413
413
  */
414
- AdditionalDatasets?: AdditionalDataset[];
414
+ AdditionalDatasets?: AdditionalDataset[] | undefined;
415
415
  }
416
416
  /**
417
417
  * <p>An Key Management Service (KMS) key and an Identity and Access Management (IAM) role that Amazon Forecast can assume to
@@ -567,22 +567,22 @@ export interface TimeAlignmentBoundary {
567
567
  * <p>The month to use for time alignment during aggregation. The month must be in uppercase.</p>
568
568
  * @public
569
569
  */
570
- Month?: Month;
570
+ Month?: Month | undefined;
571
571
  /**
572
572
  * <p>The day of the month to use for time alignment during aggregation.</p>
573
573
  * @public
574
574
  */
575
- DayOfMonth?: number;
575
+ DayOfMonth?: number | undefined;
576
576
  /**
577
577
  * <p>The day of week to use for time alignment during aggregation. The day must be in uppercase.</p>
578
578
  * @public
579
579
  */
580
- DayOfWeek?: DayOfWeek;
580
+ DayOfWeek?: DayOfWeek | undefined;
581
581
  /**
582
582
  * <p>The hour of day to use for time alignment during aggregation.</p>
583
583
  * @public
584
584
  */
585
- Hour?: number;
585
+ Hour?: number | undefined;
586
586
  }
587
587
  /**
588
588
  * @public
@@ -605,14 +605,14 @@ export interface CreateAutoPredictorRequest {
605
605
  * longer time-series in the dataset.</p>
606
606
  * @public
607
607
  */
608
- ForecastHorizon?: number;
608
+ ForecastHorizon?: number | undefined;
609
609
  /**
610
610
  * <p>The forecast types used to train a predictor. You can specify up to five forecast
611
611
  * types. Forecast types can be quantiles from 0.01 to 0.99, by increments of 0.01 or
612
612
  * higher. You can also specify the mean forecast with <code>mean</code>.</p>
613
613
  * @public
614
614
  */
615
- ForecastTypes?: string[];
615
+ ForecastTypes?: string[] | undefined;
616
616
  /**
617
617
  * <p>An array of dimension (field) names that specify how to group the generated
618
618
  * forecast.</p>
@@ -621,7 +621,7 @@ export interface CreateAutoPredictorRequest {
621
621
  * <code>store_id</code> as a dimension to group sales forecasts for each store.</p>
622
622
  * @public
623
623
  */
624
- ForecastDimensions?: string[];
624
+ ForecastDimensions?: string[] | undefined;
625
625
  /**
626
626
  * <p>The frequency of predictions in a forecast.</p>
627
627
  * <p>Valid intervals are an integer followed by Y (Year), M (Month), W (Week), D (Day), H (Hour), and min (Minute). For example,
@@ -653,19 +653,19 @@ export interface CreateAutoPredictorRequest {
653
653
  * RELATED_TIME_SERIES dataset frequency.</p>
654
654
  * @public
655
655
  */
656
- ForecastFrequency?: string;
656
+ ForecastFrequency?: string | undefined;
657
657
  /**
658
658
  * <p>The data configuration for your dataset group and any additional datasets.</p>
659
659
  * @public
660
660
  */
661
- DataConfig?: DataConfig;
661
+ DataConfig?: DataConfig | undefined;
662
662
  /**
663
663
  * <p>An Key Management Service (KMS) key and an Identity and Access Management (IAM) role that Amazon Forecast can assume to
664
664
  * access the key. You can specify this optional object in the
665
665
  * <a>CreateDataset</a> and <a>CreatePredictor</a> requests.</p>
666
666
  * @public
667
667
  */
668
- EncryptionConfig?: EncryptionConfig;
668
+ EncryptionConfig?: EncryptionConfig | undefined;
669
669
  /**
670
670
  * <p>The ARN of the predictor to retrain or upgrade. This parameter is only used when
671
671
  * retraining or upgrading a predictor. When creating a new predictor, do not specify a
@@ -675,17 +675,17 @@ export interface CreateAutoPredictorRequest {
675
675
  * <code>PredictorName</code> must be a unique predictor name.</p>
676
676
  * @public
677
677
  */
678
- ReferencePredictorArn?: string;
678
+ ReferencePredictorArn?: string | undefined;
679
679
  /**
680
680
  * <p>The accuracy metric used to optimize the predictor.</p>
681
681
  * @public
682
682
  */
683
- OptimizationMetric?: OptimizationMetric;
683
+ OptimizationMetric?: OptimizationMetric | undefined;
684
684
  /**
685
685
  * <p>Create an Explainability resource for the predictor.</p>
686
686
  * @public
687
687
  */
688
- ExplainPredictor?: boolean;
688
+ ExplainPredictor?: boolean | undefined;
689
689
  /**
690
690
  * <p>Optional metadata to help you categorize and organize your predictors. Each tag
691
691
  * consists of a key and an optional value, both of which you define. Tag keys and values
@@ -721,14 +721,14 @@ export interface CreateAutoPredictorRequest {
721
721
  * </ul>
722
722
  * @public
723
723
  */
724
- Tags?: Tag[];
724
+ Tags?: Tag[] | undefined;
725
725
  /**
726
726
  * <p>The configuration details for predictor monitoring. Provide a name for the monitor resource to enable predictor monitoring.</p>
727
727
  * <p>Predictor monitoring allows you to see how your predictor's performance changes over time.
728
728
  * For more information, see <a href="https://docs.aws.amazon.com/forecast/latest/dg/predictor-monitoring.html">Predictor Monitoring</a>.</p>
729
729
  * @public
730
730
  */
731
- MonitorConfig?: MonitorConfig;
731
+ MonitorConfig?: MonitorConfig | undefined;
732
732
  /**
733
733
  * <p>The time boundary Forecast uses to align and aggregate any data that doesn't align with your forecast frequency. Provide the unit of time and the time boundary as a key value pair.
734
734
  * For more information on specifying a time boundary, see <a href="https://docs.aws.amazon.com/forecast/latest/dg/data-aggregation.html#specifying-time-boundary">Specifying a Time Boundary</a>.
@@ -736,7 +736,7 @@ export interface CreateAutoPredictorRequest {
736
736
  * don't provide a time boundary, Forecast uses a set of <a href="https://docs.aws.amazon.com/forecast/latest/dg/data-aggregation.html#default-time-boundaries">Default Time Boundaries</a>.</p>
737
737
  * @public
738
738
  */
739
- TimeAlignmentBoundary?: TimeAlignmentBoundary;
739
+ TimeAlignmentBoundary?: TimeAlignmentBoundary | undefined;
740
740
  }
741
741
  /**
742
742
  * @public
@@ -746,7 +746,7 @@ export interface CreateAutoPredictorResponse {
746
746
  * <p>The Amazon Resource Name (ARN) of the predictor.</p>
747
747
  * @public
748
748
  */
749
- PredictorArn?: string;
749
+ PredictorArn?: string | undefined;
750
750
  }
751
751
  /**
752
752
  * <p>We can't process the request because it includes an invalid value or a value that exceeds
@@ -756,7 +756,7 @@ export interface CreateAutoPredictorResponse {
756
756
  export declare class InvalidInputException extends __BaseException {
757
757
  readonly name: "InvalidInputException";
758
758
  readonly $fault: "client";
759
- Message?: string;
759
+ Message?: string | undefined;
760
760
  /**
761
761
  * @internal
762
762
  */
@@ -769,7 +769,7 @@ export declare class InvalidInputException extends __BaseException {
769
769
  export declare class LimitExceededException extends __BaseException {
770
770
  readonly name: "LimitExceededException";
771
771
  readonly $fault: "client";
772
- Message?: string;
772
+ Message?: string | undefined;
773
773
  /**
774
774
  * @internal
775
775
  */
@@ -782,7 +782,7 @@ export declare class LimitExceededException extends __BaseException {
782
782
  export declare class ResourceAlreadyExistsException extends __BaseException {
783
783
  readonly name: "ResourceAlreadyExistsException";
784
784
  readonly $fault: "client";
785
- Message?: string;
785
+ Message?: string | undefined;
786
786
  /**
787
787
  * @internal
788
788
  */
@@ -795,7 +795,7 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
795
795
  export declare class ResourceInUseException extends __BaseException {
796
796
  readonly name: "ResourceInUseException";
797
797
  readonly $fault: "client";
798
- Message?: string;
798
+ Message?: string | undefined;
799
799
  /**
800
800
  * @internal
801
801
  */
@@ -809,7 +809,7 @@ export declare class ResourceInUseException extends __BaseException {
809
809
  export declare class ResourceNotFoundException extends __BaseException {
810
810
  readonly name: "ResourceNotFoundException";
811
811
  readonly $fault: "client";
812
- Message?: string;
812
+ Message?: string | undefined;
813
813
  /**
814
814
  * @internal
815
815
  */
@@ -871,13 +871,13 @@ export interface SchemaAttribute {
871
871
  * <p>The name of the dataset field.</p>
872
872
  * @public
873
873
  */
874
- AttributeName?: string;
874
+ AttributeName?: string | undefined;
875
875
  /**
876
876
  * <p>The data type of the field.</p>
877
877
  * <p>For a related time series dataset, other than date, item_id, and forecast dimensions attributes, all attributes should be of numerical type (integer/float).</p>
878
878
  * @public
879
879
  */
880
- AttributeType?: AttributeType;
880
+ AttributeType?: AttributeType | undefined;
881
881
  }
882
882
  /**
883
883
  * <p>Defines the fields of a dataset.</p>
@@ -888,7 +888,7 @@ export interface Schema {
888
888
  * <p>An array of attributes specifying the name and type of each field in a dataset.</p>
889
889
  * @public
890
890
  */
891
- Attributes?: SchemaAttribute[];
891
+ Attributes?: SchemaAttribute[] | undefined;
892
892
  }
893
893
  /**
894
894
  * @public
@@ -944,7 +944,7 @@ export interface CreateDatasetRequest {
944
944
  * <p>Thus, if you want every other week forecasts, specify "2W". Or, if you want quarterly forecasts, you specify "3M".</p>
945
945
  * @public
946
946
  */
947
- DataFrequency?: string;
947
+ DataFrequency?: string | undefined;
948
948
  /**
949
949
  * <p>The schema for the dataset. The schema attributes and their order must match the fields in
950
950
  * your data. The dataset <code>Domain</code> and <code>DatasetType</code> that you choose
@@ -959,7 +959,7 @@ export interface CreateDatasetRequest {
959
959
  * the key.</p>
960
960
  * @public
961
961
  */
962
- EncryptionConfig?: EncryptionConfig;
962
+ EncryptionConfig?: EncryptionConfig | undefined;
963
963
  /**
964
964
  * <p>The optional metadata that you apply to the dataset to help you categorize and organize
965
965
  * them. Each tag consists of a key and an optional value, both of which you define.</p>
@@ -998,7 +998,7 @@ export interface CreateDatasetRequest {
998
998
  * </ul>
999
999
  * @public
1000
1000
  */
1001
- Tags?: Tag[];
1001
+ Tags?: Tag[] | undefined;
1002
1002
  }
1003
1003
  /**
1004
1004
  * @public
@@ -1008,7 +1008,7 @@ export interface CreateDatasetResponse {
1008
1008
  * <p>The Amazon Resource Name (ARN) of the dataset.</p>
1009
1009
  * @public
1010
1010
  */
1011
- DatasetArn?: string;
1011
+ DatasetArn?: string | undefined;
1012
1012
  }
1013
1013
  /**
1014
1014
  * @public
@@ -1037,7 +1037,7 @@ export interface CreateDatasetGroupRequest {
1037
1037
  * dataset group.</p>
1038
1038
  * @public
1039
1039
  */
1040
- DatasetArns?: string[];
1040
+ DatasetArns?: string[] | undefined;
1041
1041
  /**
1042
1042
  * <p>The optional metadata that you apply to the dataset group to help you categorize and
1043
1043
  * organize them. Each tag consists of a key and an optional value, both of which you
@@ -1077,7 +1077,7 @@ export interface CreateDatasetGroupRequest {
1077
1077
  * </ul>
1078
1078
  * @public
1079
1079
  */
1080
- Tags?: Tag[];
1080
+ Tags?: Tag[] | undefined;
1081
1081
  }
1082
1082
  /**
1083
1083
  * @public
@@ -1087,7 +1087,7 @@ export interface CreateDatasetGroupResponse {
1087
1087
  * <p>The Amazon Resource Name (ARN) of the dataset group.</p>
1088
1088
  * @public
1089
1089
  */
1090
- DatasetGroupArn?: string;
1090
+ DatasetGroupArn?: string | undefined;
1091
1091
  }
1092
1092
  /**
1093
1093
  * <p>The path to the file(s) in an Amazon Simple Storage Service (Amazon S3) bucket, and an Identity and Access Management (IAM) role that
@@ -1114,7 +1114,7 @@ export interface S3Config {
1114
1114
  * <p>The Amazon Resource Name (ARN) of an Key Management Service (KMS) key.</p>
1115
1115
  * @public
1116
1116
  */
1117
- KMSKeyArn?: string;
1117
+ KMSKeyArn?: string | undefined;
1118
1118
  }
1119
1119
  /**
1120
1120
  * <p>The source of your data, an Identity and Access Management (IAM) role that allows Amazon Forecast to
@@ -1187,7 +1187,7 @@ export interface CreateDatasetImportJobRequest {
1187
1187
  * HH:mm:ss".</p>
1188
1188
  * @public
1189
1189
  */
1190
- TimestampFormat?: string;
1190
+ TimestampFormat?: string | undefined;
1191
1191
  /**
1192
1192
  * <p>A single time zone for every item in your dataset. This option is ideal for datasets
1193
1193
  * with all timestamps within a single time zone, or if all timestamps are normalized to a
@@ -1196,14 +1196,14 @@ export interface CreateDatasetImportJobRequest {
1196
1196
  * API</a> for a complete list of valid time zone names.</p>
1197
1197
  * @public
1198
1198
  */
1199
- TimeZone?: string;
1199
+ TimeZone?: string | undefined;
1200
1200
  /**
1201
1201
  * <p>Automatically derive time zone information from the geolocation attribute. This option
1202
1202
  * is ideal for datasets that contain timestamps in multiple time zones and those
1203
1203
  * timestamps are expressed in local time.</p>
1204
1204
  * @public
1205
1205
  */
1206
- UseGeolocationForTimeZone?: boolean;
1206
+ UseGeolocationForTimeZone?: boolean | undefined;
1207
1207
  /**
1208
1208
  * <p>The format of the geolocation attribute. The geolocation attribute can be formatted in
1209
1209
  * one of two ways:</p>
@@ -1219,7 +1219,7 @@ export interface CreateDatasetImportJobRequest {
1219
1219
  * </ul>
1220
1220
  * @public
1221
1221
  */
1222
- GeolocationFormat?: string;
1222
+ GeolocationFormat?: string | undefined;
1223
1223
  /**
1224
1224
  * <p>The optional metadata that you apply to the dataset import job to help you categorize and
1225
1225
  * organize them. Each tag consists of a key and an optional value, both of which you
@@ -1259,17 +1259,17 @@ export interface CreateDatasetImportJobRequest {
1259
1259
  * </ul>
1260
1260
  * @public
1261
1261
  */
1262
- Tags?: Tag[];
1262
+ Tags?: Tag[] | undefined;
1263
1263
  /**
1264
1264
  * <p>The format of the imported data, CSV or PARQUET. The default value is CSV.</p>
1265
1265
  * @public
1266
1266
  */
1267
- Format?: string;
1267
+ Format?: string | undefined;
1268
1268
  /**
1269
1269
  * <p>Specifies whether the dataset import job is a <code>FULL</code> or <code>INCREMENTAL</code> import. A <code>FULL</code> dataset import replaces all of the existing data with the newly imported data. An <code>INCREMENTAL</code> import appends the imported data to the existing data.</p>
1270
1270
  * @public
1271
1271
  */
1272
- ImportMode?: ImportMode;
1272
+ ImportMode?: ImportMode | undefined;
1273
1273
  }
1274
1274
  /**
1275
1275
  * @public
@@ -1279,7 +1279,7 @@ export interface CreateDatasetImportJobResponse {
1279
1279
  * <p>The Amazon Resource Name (ARN) of the dataset import job.</p>
1280
1280
  * @public
1281
1281
  */
1282
- DatasetImportJobArn?: string;
1282
+ DatasetImportJobArn?: string | undefined;
1283
1283
  }
1284
1284
  /**
1285
1285
  * @public
@@ -1363,17 +1363,17 @@ export interface CreateExplainabilityRequest {
1363
1363
  * access the data and, optionally, an Key Management Service (KMS) key.</p>
1364
1364
  * @public
1365
1365
  */
1366
- DataSource?: DataSource;
1366
+ DataSource?: DataSource | undefined;
1367
1367
  /**
1368
1368
  * <p>Defines the fields of a dataset.</p>
1369
1369
  * @public
1370
1370
  */
1371
- Schema?: Schema;
1371
+ Schema?: Schema | undefined;
1372
1372
  /**
1373
1373
  * <p>Create an Explainability visualization that is viewable within the Amazon Web Services console.</p>
1374
1374
  * @public
1375
1375
  */
1376
- EnableVisualization?: boolean;
1376
+ EnableVisualization?: boolean | undefined;
1377
1377
  /**
1378
1378
  * <p>If <code>TimePointGranularity</code> is set to <code>SPECIFIC</code>, define the first
1379
1379
  * point for the Explainability.</p>
@@ -1381,7 +1381,7 @@ export interface CreateExplainabilityRequest {
1381
1381
  * 2015-01-01T20:00:00)</p>
1382
1382
  * @public
1383
1383
  */
1384
- StartDateTime?: string;
1384
+ StartDateTime?: string | undefined;
1385
1385
  /**
1386
1386
  * <p>If <code>TimePointGranularity</code> is set to <code>SPECIFIC</code>, define the last
1387
1387
  * time point for the Explainability.</p>
@@ -1389,7 +1389,7 @@ export interface CreateExplainabilityRequest {
1389
1389
  * 2015-01-01T20:00:00)</p>
1390
1390
  * @public
1391
1391
  */
1392
- EndDateTime?: string;
1392
+ EndDateTime?: string | undefined;
1393
1393
  /**
1394
1394
  * <p>Optional metadata to help you categorize and organize your resources. Each tag
1395
1395
  * consists of a key and an optional value, both of which you define. Tag keys and values
@@ -1425,7 +1425,7 @@ export interface CreateExplainabilityRequest {
1425
1425
  * </ul>
1426
1426
  * @public
1427
1427
  */
1428
- Tags?: Tag[];
1428
+ Tags?: Tag[] | undefined;
1429
1429
  }
1430
1430
  /**
1431
1431
  * @public
@@ -1435,7 +1435,7 @@ export interface CreateExplainabilityResponse {
1435
1435
  * <p>The Amazon Resource Name (ARN) of the Explainability.</p>
1436
1436
  * @public
1437
1437
  */
1438
- ExplainabilityArn?: string;
1438
+ ExplainabilityArn?: string | undefined;
1439
1439
  }
1440
1440
  /**
1441
1441
  * <p>The destination for an export job. Provide an S3 path, an Identity and Access Management (IAM) role that allows Amazon Forecast
@@ -1505,12 +1505,12 @@ export interface CreateExplainabilityExportRequest {
1505
1505
  * </ul>
1506
1506
  * @public
1507
1507
  */
1508
- Tags?: Tag[];
1508
+ Tags?: Tag[] | undefined;
1509
1509
  /**
1510
1510
  * <p>The format of the exported data, CSV or PARQUET.</p>
1511
1511
  * @public
1512
1512
  */
1513
- Format?: string;
1513
+ Format?: string | undefined;
1514
1514
  }
1515
1515
  /**
1516
1516
  * @public
@@ -1520,7 +1520,7 @@ export interface CreateExplainabilityExportResponse {
1520
1520
  * <p>The Amazon Resource Name (ARN) of the export.</p>
1521
1521
  * @public
1522
1522
  */
1523
- ExplainabilityExportArn?: string;
1523
+ ExplainabilityExportArn?: string | undefined;
1524
1524
  }
1525
1525
  /**
1526
1526
  * <p>Details about the import file that contains the time series for which you want to create forecasts.</p>
@@ -1532,17 +1532,17 @@ export interface TimeSeriesIdentifiers {
1532
1532
  * access the data and, optionally, an Key Management Service (KMS) key.</p>
1533
1533
  * @public
1534
1534
  */
1535
- DataSource?: DataSource;
1535
+ DataSource?: DataSource | undefined;
1536
1536
  /**
1537
1537
  * <p>Defines the fields of a dataset.</p>
1538
1538
  * @public
1539
1539
  */
1540
- Schema?: Schema;
1540
+ Schema?: Schema | undefined;
1541
1541
  /**
1542
1542
  * <p>The format of the data, either CSV or PARQUET.</p>
1543
1543
  * @public
1544
1544
  */
1545
- Format?: string;
1545
+ Format?: string | undefined;
1546
1546
  }
1547
1547
  /**
1548
1548
  * <p>Defines the set of time series that are used to create the forecasts in a <code>TimeSeriesIdentifiers</code> object.</p>
@@ -1571,7 +1571,7 @@ export interface TimeSeriesSelector {
1571
1571
  * <p>Details about the import file that contains the time series for which you want to create forecasts.</p>
1572
1572
  * @public
1573
1573
  */
1574
- TimeSeriesIdentifiers?: TimeSeriesIdentifiers;
1574
+ TimeSeriesIdentifiers?: TimeSeriesIdentifiers | undefined;
1575
1575
  }
1576
1576
  /**
1577
1577
  * @public
@@ -1599,7 +1599,7 @@ export interface CreateForecastRequest {
1599
1599
  * </p>
1600
1600
  * @public
1601
1601
  */
1602
- ForecastTypes?: string[];
1602
+ ForecastTypes?: string[] | undefined;
1603
1603
  /**
1604
1604
  * <p>The optional metadata that you apply to the forecast to help you categorize and organize
1605
1605
  * them. Each tag consists of a key and an optional value, both of which you define.</p>
@@ -1638,7 +1638,7 @@ export interface CreateForecastRequest {
1638
1638
  * </ul>
1639
1639
  * @public
1640
1640
  */
1641
- Tags?: Tag[];
1641
+ Tags?: Tag[] | undefined;
1642
1642
  /**
1643
1643
  * <p>Defines the set of time series that are used to create the forecasts in a <code>TimeSeriesIdentifiers</code> object.</p>
1644
1644
  * <p>The <code>TimeSeriesIdentifiers</code> object needs the following information:</p>
@@ -1661,7 +1661,7 @@ export interface CreateForecastRequest {
1661
1661
  * </ul>
1662
1662
  * @public
1663
1663
  */
1664
- TimeSeriesSelector?: TimeSeriesSelector;
1664
+ TimeSeriesSelector?: TimeSeriesSelector | undefined;
1665
1665
  }
1666
1666
  /**
1667
1667
  * @public
@@ -1671,7 +1671,7 @@ export interface CreateForecastResponse {
1671
1671
  * <p>The Amazon Resource Name (ARN) of the forecast.</p>
1672
1672
  * @public
1673
1673
  */
1674
- ForecastArn?: string;
1674
+ ForecastArn?: string | undefined;
1675
1675
  }
1676
1676
  /**
1677
1677
  * @public
@@ -1735,12 +1735,12 @@ export interface CreateForecastExportJobRequest {
1735
1735
  * </ul>
1736
1736
  * @public
1737
1737
  */
1738
- Tags?: Tag[];
1738
+ Tags?: Tag[] | undefined;
1739
1739
  /**
1740
1740
  * <p>The format of the exported data, CSV or PARQUET. The default value is CSV.</p>
1741
1741
  * @public
1742
1742
  */
1743
- Format?: string;
1743
+ Format?: string | undefined;
1744
1744
  }
1745
1745
  /**
1746
1746
  * @public
@@ -1750,7 +1750,7 @@ export interface CreateForecastExportJobResponse {
1750
1750
  * <p>The Amazon Resource Name (ARN) of the export job.</p>
1751
1751
  * @public
1752
1752
  */
1753
- ForecastExportJobArn?: string;
1753
+ ForecastExportJobArn?: string | undefined;
1754
1754
  }
1755
1755
  /**
1756
1756
  * @public
@@ -1770,7 +1770,7 @@ export interface CreateMonitorRequest {
1770
1770
  * <p>A list of <a href="https://docs.aws.amazon.com/forecast/latest/dg/tagging-forecast-resources.html">tags</a> to apply to the monitor resource.</p>
1771
1771
  * @public
1772
1772
  */
1773
- Tags?: Tag[];
1773
+ Tags?: Tag[] | undefined;
1774
1774
  }
1775
1775
  /**
1776
1776
  * @public
@@ -1780,7 +1780,7 @@ export interface CreateMonitorResponse {
1780
1780
  * <p>The Amazon Resource Name (ARN) of the monitor resource.</p>
1781
1781
  * @public
1782
1782
  */
1783
- MonitorArn?: string;
1783
+ MonitorArn?: string | undefined;
1784
1784
  }
1785
1785
  /**
1786
1786
  * @public
@@ -1806,7 +1806,7 @@ export interface EvaluationParameters {
1806
1806
  * 5.</p>
1807
1807
  * @public
1808
1808
  */
1809
- NumberOfBacktestWindows?: number;
1809
+ NumberOfBacktestWindows?: number | undefined;
1810
1810
  /**
1811
1811
  * <p>The point from the end of the dataset where you want to split the data for model training
1812
1812
  * and testing (evaluation). Specify the value as the number of data points. The default is the
@@ -1818,7 +1818,7 @@ export interface EvaluationParameters {
1818
1818
  * TARGET_TIME_SERIES dataset length</p>
1819
1819
  * @public
1820
1820
  */
1821
- BackTestWindowOffset?: number;
1821
+ BackTestWindowOffset?: number | undefined;
1822
1822
  }
1823
1823
  /**
1824
1824
  * @public
@@ -1918,7 +1918,7 @@ export interface FeaturizationMethod {
1918
1918
  * <code>"backfill_value":"2"</code>. </p>
1919
1919
  * @public
1920
1920
  */
1921
- FeaturizationMethodParameters?: Record<string, string>;
1921
+ FeaturizationMethodParameters?: Record<string, string> | undefined;
1922
1922
  }
1923
1923
  /**
1924
1924
  * <note>
@@ -1967,7 +1967,7 @@ export interface Featurization {
1967
1967
  * transformation method.</p>
1968
1968
  * @public
1969
1969
  */
1970
- FeaturizationPipeline?: FeaturizationMethod[];
1970
+ FeaturizationPipeline?: FeaturizationMethod[] | undefined;
1971
1971
  }
1972
1972
  /**
1973
1973
  * <note>
@@ -2034,12 +2034,12 @@ export interface FeaturizationConfig {
2034
2034
  * <code>CreatePredictor</code> request.</p>
2035
2035
  * @public
2036
2036
  */
2037
- ForecastDimensions?: string[];
2037
+ ForecastDimensions?: string[] | undefined;
2038
2038
  /**
2039
2039
  * <p>An array of featurization (transformation) information for the fields of a dataset.</p>
2040
2040
  * @public
2041
2041
  */
2042
- Featurizations?: Featurization[];
2042
+ Featurizations?: Featurization[] | undefined;
2043
2043
  }
2044
2044
  /**
2045
2045
  * <p>Specifies a categorical hyperparameter and it's range of tunable values.
@@ -2125,7 +2125,7 @@ export interface ContinuousParameterRange {
2125
2125
  * One of the following values:</p>
2126
2126
  * @public
2127
2127
  */
2128
- ScalingType?: ScalingType;
2128
+ ScalingType?: ScalingType | undefined;
2129
2129
  }
2130
2130
  /**
2131
2131
  * <p>Specifies an integer hyperparameter and it's range of tunable values.
@@ -2179,7 +2179,7 @@ export interface IntegerParameterRange {
2179
2179
  * One of the following values:</p>
2180
2180
  * @public
2181
2181
  */
2182
- ScalingType?: ScalingType;
2182
+ ScalingType?: ScalingType | undefined;
2183
2183
  }
2184
2184
  /**
2185
2185
  * <p>Specifies the categorical, continuous, and integer hyperparameters, and their ranges of
@@ -2193,17 +2193,17 @@ export interface ParameterRanges {
2193
2193
  * <p>Specifies the tunable range for each categorical hyperparameter.</p>
2194
2194
  * @public
2195
2195
  */
2196
- CategoricalParameterRanges?: CategoricalParameterRange[];
2196
+ CategoricalParameterRanges?: CategoricalParameterRange[] | undefined;
2197
2197
  /**
2198
2198
  * <p>Specifies the tunable range for each continuous hyperparameter.</p>
2199
2199
  * @public
2200
2200
  */
2201
- ContinuousParameterRanges?: ContinuousParameterRange[];
2201
+ ContinuousParameterRanges?: ContinuousParameterRange[] | undefined;
2202
2202
  /**
2203
2203
  * <p>Specifies the tunable range for each integer hyperparameter.</p>
2204
2204
  * @public
2205
2205
  */
2206
- IntegerParameterRanges?: IntegerParameterRange[];
2206
+ IntegerParameterRanges?: IntegerParameterRange[] | undefined;
2207
2207
  }
2208
2208
  /**
2209
2209
  * <p>Configuration information for a hyperparameter tuning job. You specify this object in
@@ -2222,7 +2222,7 @@ export interface HyperParameterTuningJobConfig {
2222
2222
  * <p>Specifies the ranges of valid values for the hyperparameters.</p>
2223
2223
  * @public
2224
2224
  */
2225
- ParameterRanges?: ParameterRanges;
2225
+ ParameterRanges?: ParameterRanges | undefined;
2226
2226
  }
2227
2227
  /**
2228
2228
  * <note>
@@ -2491,7 +2491,7 @@ export interface InputDataConfig {
2491
2491
  * calendar.</p>
2492
2492
  * @public
2493
2493
  */
2494
- SupplementaryFeatures?: SupplementaryFeature[];
2494
+ SupplementaryFeatures?: SupplementaryFeature[] | undefined;
2495
2495
  }
2496
2496
  /**
2497
2497
  * @public
@@ -2542,7 +2542,7 @@ export interface CreatePredictorRequest {
2542
2542
  * </ul>
2543
2543
  * @public
2544
2544
  */
2545
- AlgorithmArn?: string;
2545
+ AlgorithmArn?: string | undefined;
2546
2546
  /**
2547
2547
  * <p>Specifies the number of time-steps that the model is trained to predict. The forecast
2548
2548
  * horizon is also called the prediction length.</p>
@@ -2561,7 +2561,7 @@ export interface CreatePredictorRequest {
2561
2561
  * <p>The default value is <code>["0.10", "0.50", "0.9"]</code>.</p>
2562
2562
  * @public
2563
2563
  */
2564
- ForecastTypes?: string[];
2564
+ ForecastTypes?: string[] | undefined;
2565
2565
  /**
2566
2566
  * <p>Whether to perform AutoML. When Amazon Forecast performs AutoML, it evaluates the algorithms it
2567
2567
  * provides and chooses the best algorithm and configuration for your training dataset.</p>
@@ -2572,7 +2572,7 @@ export interface CreatePredictorRequest {
2572
2572
  * this case, <code>PerformHPO</code> must be false.</p>
2573
2573
  * @public
2574
2574
  */
2575
- PerformAutoML?: boolean;
2575
+ PerformAutoML?: boolean | undefined;
2576
2576
  /**
2577
2577
  * <note>
2578
2578
  * <p> The <code>LatencyOptimized</code> AutoML override strategy is only available in private beta.
@@ -2585,7 +2585,7 @@ export interface CreatePredictorRequest {
2585
2585
  * <p>This parameter is only valid for predictors trained using AutoML.</p>
2586
2586
  * @public
2587
2587
  */
2588
- AutoMLOverrideStrategy?: AutoMLOverrideStrategy;
2588
+ AutoMLOverrideStrategy?: AutoMLOverrideStrategy | undefined;
2589
2589
  /**
2590
2590
  * <p>Whether to perform hyperparameter optimization (HPO). HPO finds optimal hyperparameter
2591
2591
  * values for your training data. The process of performing HPO is known as running a
@@ -2608,21 +2608,21 @@ export interface CreatePredictorRequest {
2608
2608
  * </ul>
2609
2609
  * @public
2610
2610
  */
2611
- PerformHPO?: boolean;
2611
+ PerformHPO?: boolean | undefined;
2612
2612
  /**
2613
2613
  * <p>The hyperparameters to override for model training. The hyperparameters that you can
2614
2614
  * override are listed in the individual algorithms. For the list of supported algorithms, see
2615
2615
  * <a>aws-forecast-choosing-recipes</a>.</p>
2616
2616
  * @public
2617
2617
  */
2618
- TrainingParameters?: Record<string, string>;
2618
+ TrainingParameters?: Record<string, string> | undefined;
2619
2619
  /**
2620
2620
  * <p>Used to override the default evaluation parameters of the specified algorithm. Amazon Forecast
2621
2621
  * evaluates a predictor by splitting a dataset into training data and testing data. The
2622
2622
  * evaluation parameters define how to perform the split and the number of iterations.</p>
2623
2623
  * @public
2624
2624
  */
2625
- EvaluationParameters?: EvaluationParameters;
2625
+ EvaluationParameters?: EvaluationParameters | undefined;
2626
2626
  /**
2627
2627
  * <p>Provides hyperparameter override values for the algorithm. If you don't provide this
2628
2628
  * parameter, Amazon Forecast uses default values. The individual algorithms specify which
@@ -2631,7 +2631,7 @@ export interface CreatePredictorRequest {
2631
2631
  * true.</p>
2632
2632
  * @public
2633
2633
  */
2634
- HPOConfig?: HyperParameterTuningJobConfig;
2634
+ HPOConfig?: HyperParameterTuningJobConfig | undefined;
2635
2635
  /**
2636
2636
  * <p>Describes the dataset group that contains the data to use to train the predictor.</p>
2637
2637
  * @public
@@ -2647,7 +2647,7 @@ export interface CreatePredictorRequest {
2647
2647
  * the key.</p>
2648
2648
  * @public
2649
2649
  */
2650
- EncryptionConfig?: EncryptionConfig;
2650
+ EncryptionConfig?: EncryptionConfig | undefined;
2651
2651
  /**
2652
2652
  * <p>The optional metadata that you apply to the predictor to help you categorize and organize
2653
2653
  * them. Each tag consists of a key and an optional value, both of which you define.</p>
@@ -2686,12 +2686,12 @@ export interface CreatePredictorRequest {
2686
2686
  * </ul>
2687
2687
  * @public
2688
2688
  */
2689
- Tags?: Tag[];
2689
+ Tags?: Tag[] | undefined;
2690
2690
  /**
2691
2691
  * <p>The accuracy metric used to optimize the predictor.</p>
2692
2692
  * @public
2693
2693
  */
2694
- OptimizationMetric?: OptimizationMetric;
2694
+ OptimizationMetric?: OptimizationMetric | undefined;
2695
2695
  }
2696
2696
  /**
2697
2697
  * @public
@@ -2701,7 +2701,7 @@ export interface CreatePredictorResponse {
2701
2701
  * <p>The Amazon Resource Name (ARN) of the predictor.</p>
2702
2702
  * @public
2703
2703
  */
2704
- PredictorArn?: string;
2704
+ PredictorArn?: string | undefined;
2705
2705
  }
2706
2706
  /**
2707
2707
  * @public
@@ -2758,12 +2758,12 @@ export interface CreatePredictorBacktestExportJobRequest {
2758
2758
  * </ul>
2759
2759
  * @public
2760
2760
  */
2761
- Tags?: Tag[];
2761
+ Tags?: Tag[] | undefined;
2762
2762
  /**
2763
2763
  * <p>The format of the exported data, CSV or PARQUET. The default value is CSV.</p>
2764
2764
  * @public
2765
2765
  */
2766
- Format?: string;
2766
+ Format?: string | undefined;
2767
2767
  }
2768
2768
  /**
2769
2769
  * @public
@@ -2774,7 +2774,7 @@ export interface CreatePredictorBacktestExportJobResponse {
2774
2774
  * export.</p>
2775
2775
  * @public
2776
2776
  */
2777
- PredictorBacktestExportJobArn?: string;
2777
+ PredictorBacktestExportJobArn?: string | undefined;
2778
2778
  }
2779
2779
  /**
2780
2780
  * @public
@@ -2813,12 +2813,12 @@ export interface CreateWhatIfAnalysisRequest {
2813
2813
  * </ul>
2814
2814
  * @public
2815
2815
  */
2816
- TimeSeriesSelector?: TimeSeriesSelector;
2816
+ TimeSeriesSelector?: TimeSeriesSelector | undefined;
2817
2817
  /**
2818
2818
  * <p>A list of <a href="https://docs.aws.amazon.com/forecast/latest/dg/tagging-forecast-resources.html">tags</a> to apply to the what if forecast.</p>
2819
2819
  * @public
2820
2820
  */
2821
- Tags?: Tag[];
2821
+ Tags?: Tag[] | undefined;
2822
2822
  }
2823
2823
  /**
2824
2824
  * @public
@@ -2828,7 +2828,7 @@ export interface CreateWhatIfAnalysisResponse {
2828
2828
  * <p>The Amazon Resource Name (ARN) of the what-if analysis.</p>
2829
2829
  * @public
2830
2830
  */
2831
- WhatIfAnalysisArn?: string;
2831
+ WhatIfAnalysisArn?: string | undefined;
2832
2832
  }
2833
2833
  /**
2834
2834
  * <p>A replacement dataset is a modified version of the baseline related time series that contains only the values
@@ -2855,12 +2855,12 @@ export interface TimeSeriesReplacementsDataSource {
2855
2855
  * <p>The format of the replacement data, CSV or PARQUET.</p>
2856
2856
  * @public
2857
2857
  */
2858
- Format?: string;
2858
+ Format?: string | undefined;
2859
2859
  /**
2860
2860
  * <p>The timestamp format of the replacement data.</p>
2861
2861
  * @public
2862
2862
  */
2863
- TimestampFormat?: string;
2863
+ TimestampFormat?: string | undefined;
2864
2864
  }
2865
2865
  /**
2866
2866
  * @public
@@ -2908,12 +2908,12 @@ export interface TimeSeriesTransformation {
2908
2908
  * time series that is used for the what-if analysis.</p>
2909
2909
  * @public
2910
2910
  */
2911
- Action?: Action;
2911
+ Action?: Action | undefined;
2912
2912
  /**
2913
2913
  * <p>An array of conditions that define which members of the related time series are transformed.</p>
2914
2914
  * @public
2915
2915
  */
2916
- TimeSeriesConditions?: TimeSeriesCondition[];
2916
+ TimeSeriesConditions?: TimeSeriesCondition[] | undefined;
2917
2917
  }
2918
2918
  /**
2919
2919
  * @public
@@ -2933,7 +2933,7 @@ export interface CreateWhatIfForecastRequest {
2933
2933
  * <p>The transformations that are applied to the baseline time series. Each transformation contains an action and a set of conditions. An action is applied only when all conditions are met. If no conditions are provided, the action is applied to all items.</p>
2934
2934
  * @public
2935
2935
  */
2936
- TimeSeriesTransformations?: TimeSeriesTransformation[];
2936
+ TimeSeriesTransformations?: TimeSeriesTransformation[] | undefined;
2937
2937
  /**
2938
2938
  * <p>The replacement time series dataset, which contains the rows that you want to change in the related time
2939
2939
  * series dataset. A replacement time series does not need to contain all rows that are in the baseline related time
@@ -2945,12 +2945,12 @@ export interface CreateWhatIfForecastRequest {
2945
2945
  * <p>Timestamps and item_ids not included in this dataset are not included in the what-if analysis. </p>
2946
2946
  * @public
2947
2947
  */
2948
- TimeSeriesReplacementsDataSource?: TimeSeriesReplacementsDataSource;
2948
+ TimeSeriesReplacementsDataSource?: TimeSeriesReplacementsDataSource | undefined;
2949
2949
  /**
2950
2950
  * <p>A list of <a href="https://docs.aws.amazon.com/forecast/latest/dg/tagging-forecast-resources.html">tags</a> to apply to the what if forecast.</p>
2951
2951
  * @public
2952
2952
  */
2953
- Tags?: Tag[];
2953
+ Tags?: Tag[] | undefined;
2954
2954
  }
2955
2955
  /**
2956
2956
  * @public
@@ -2960,7 +2960,7 @@ export interface CreateWhatIfForecastResponse {
2960
2960
  * <p>The Amazon Resource Name (ARN) of the what-if forecast.</p>
2961
2961
  * @public
2962
2962
  */
2963
- WhatIfForecastArn?: string;
2963
+ WhatIfForecastArn?: string | undefined;
2964
2964
  }
2965
2965
  /**
2966
2966
  * @public
@@ -2989,12 +2989,12 @@ export interface CreateWhatIfForecastExportRequest {
2989
2989
  * <p>A list of <a href="https://docs.aws.amazon.com/forecast/latest/dg/tagging-forecast-resources.html">tags</a> to apply to the what if forecast.</p>
2990
2990
  * @public
2991
2991
  */
2992
- Tags?: Tag[];
2992
+ Tags?: Tag[] | undefined;
2993
2993
  /**
2994
2994
  * <p>The format of the exported data, CSV or PARQUET.</p>
2995
2995
  * @public
2996
2996
  */
2997
- Format?: string;
2997
+ Format?: string | undefined;
2998
2998
  }
2999
2999
  /**
3000
3000
  * @public
@@ -3004,7 +3004,7 @@ export interface CreateWhatIfForecastExportResponse {
3004
3004
  * <p>The Amazon Resource Name (ARN) of the what-if forecast.</p>
3005
3005
  * @public
3006
3006
  */
3007
- WhatIfForecastExportArn?: string;
3007
+ WhatIfForecastExportArn?: string | undefined;
3008
3008
  }
3009
3009
  /**
3010
3010
  * @public
@@ -3166,7 +3166,7 @@ export interface ExplainabilityInfo {
3166
3166
  * <p>The Amazon Resource Name (ARN) of the Explainability.</p>
3167
3167
  * @public
3168
3168
  */
3169
- ExplainabilityArn?: string;
3169
+ ExplainabilityArn?: string | undefined;
3170
3170
  /**
3171
3171
  * <p>The status of the Explainability. States include: </p>
3172
3172
  * <ul>
@@ -3195,7 +3195,7 @@ export interface ExplainabilityInfo {
3195
3195
  * </ul>
3196
3196
  * @public
3197
3197
  */
3198
- Status?: string;
3198
+ Status?: string | undefined;
3199
3199
  }
3200
3200
  /**
3201
3201
  * <p>Provides information about the monitor resource.</p>
@@ -3206,7 +3206,7 @@ export interface MonitorInfo {
3206
3206
  * <p>The Amazon Resource Name (ARN) of the monitor resource.</p>
3207
3207
  * @public
3208
3208
  */
3209
- MonitorArn?: string;
3209
+ MonitorArn?: string | undefined;
3210
3210
  /**
3211
3211
  * <p>The status of the monitor. States include:</p>
3212
3212
  * <ul>
@@ -3238,7 +3238,7 @@ export interface MonitorInfo {
3238
3238
  * </ul>
3239
3239
  * @public
3240
3240
  */
3241
- Status?: string;
3241
+ Status?: string | undefined;
3242
3242
  }
3243
3243
  /**
3244
3244
  * @public
@@ -3262,12 +3262,12 @@ export interface ReferencePredictorSummary {
3262
3262
  * <p>The ARN of the reference predictor.</p>
3263
3263
  * @public
3264
3264
  */
3265
- Arn?: string;
3265
+ Arn?: string | undefined;
3266
3266
  /**
3267
3267
  * <p>Whether the reference predictor is <code>Active</code> or <code>Deleted</code>.</p>
3268
3268
  * @public
3269
3269
  */
3270
- State?: State;
3270
+ State?: State | undefined;
3271
3271
  }
3272
3272
  /**
3273
3273
  * @public
@@ -3277,24 +3277,24 @@ export interface DescribeAutoPredictorResponse {
3277
3277
  * <p>The Amazon Resource Name (ARN) of the predictor</p>
3278
3278
  * @public
3279
3279
  */
3280
- PredictorArn?: string;
3280
+ PredictorArn?: string | undefined;
3281
3281
  /**
3282
3282
  * <p>The name of the predictor.</p>
3283
3283
  * @public
3284
3284
  */
3285
- PredictorName?: string;
3285
+ PredictorName?: string | undefined;
3286
3286
  /**
3287
3287
  * <p>The number of time-steps that the model predicts. The forecast horizon is also called
3288
3288
  * the prediction length.</p>
3289
3289
  * @public
3290
3290
  */
3291
- ForecastHorizon?: number;
3291
+ ForecastHorizon?: number | undefined;
3292
3292
  /**
3293
3293
  * <p>The forecast types used during predictor training. Default value is
3294
3294
  * ["0.1","0.5","0.9"].</p>
3295
3295
  * @public
3296
3296
  */
3297
- ForecastTypes?: string[];
3297
+ ForecastTypes?: string[] | undefined;
3298
3298
  /**
3299
3299
  * <p>The frequency of predictions in a forecast.</p>
3300
3300
  * <p>Valid intervals are Y (Year), M (Month), W (Week), D (Day), H (Hour), 30min (30
@@ -3302,43 +3302,43 @@ export interface DescribeAutoPredictorResponse {
3302
3302
  * For example, "Y" indicates every year and "5min" indicates every five minutes.</p>
3303
3303
  * @public
3304
3304
  */
3305
- ForecastFrequency?: string;
3305
+ ForecastFrequency?: string | undefined;
3306
3306
  /**
3307
3307
  * <p>An array of dimension (field) names that specify the attributes used to group your
3308
3308
  * time series.</p>
3309
3309
  * @public
3310
3310
  */
3311
- ForecastDimensions?: string[];
3311
+ ForecastDimensions?: string[] | undefined;
3312
3312
  /**
3313
3313
  * <p>An array of the ARNs of the dataset import jobs used to import training data for the
3314
3314
  * predictor.</p>
3315
3315
  * @public
3316
3316
  */
3317
- DatasetImportJobArns?: string[];
3317
+ DatasetImportJobArns?: string[] | undefined;
3318
3318
  /**
3319
3319
  * <p>The data configuration for your dataset group and any additional datasets.</p>
3320
3320
  * @public
3321
3321
  */
3322
- DataConfig?: DataConfig;
3322
+ DataConfig?: DataConfig | undefined;
3323
3323
  /**
3324
3324
  * <p>An Key Management Service (KMS) key and an Identity and Access Management (IAM) role that Amazon Forecast can assume to
3325
3325
  * access the key. You can specify this optional object in the
3326
3326
  * <a>CreateDataset</a> and <a>CreatePredictor</a> requests.</p>
3327
3327
  * @public
3328
3328
  */
3329
- EncryptionConfig?: EncryptionConfig;
3329
+ EncryptionConfig?: EncryptionConfig | undefined;
3330
3330
  /**
3331
3331
  * <p>The ARN and state of the reference predictor. This parameter is only valid for
3332
3332
  * retrained or upgraded predictors.</p>
3333
3333
  * @public
3334
3334
  */
3335
- ReferencePredictorSummary?: ReferencePredictorSummary;
3335
+ ReferencePredictorSummary?: ReferencePredictorSummary | undefined;
3336
3336
  /**
3337
3337
  * <p>The estimated time remaining in minutes for the predictor training job to
3338
3338
  * complete.</p>
3339
3339
  * @public
3340
3340
  */
3341
- EstimatedTimeRemainingInMinutes?: number;
3341
+ EstimatedTimeRemainingInMinutes?: number | undefined;
3342
3342
  /**
3343
3343
  * <p>The status of the predictor. States include: </p>
3344
3344
  * <ul>
@@ -3367,17 +3367,17 @@ export interface DescribeAutoPredictorResponse {
3367
3367
  * </ul>
3368
3368
  * @public
3369
3369
  */
3370
- Status?: string;
3370
+ Status?: string | undefined;
3371
3371
  /**
3372
3372
  * <p>In the event of an error, a message detailing the cause of the error.</p>
3373
3373
  * @public
3374
3374
  */
3375
- Message?: string;
3375
+ Message?: string | undefined;
3376
3376
  /**
3377
3377
  * <p>The timestamp of the CreateAutoPredictor request.</p>
3378
3378
  * @public
3379
3379
  */
3380
- CreationTime?: Date;
3380
+ CreationTime?: Date | undefined;
3381
3381
  /**
3382
3382
  * <p>The last time the resource was modified. The timestamp depends on the status of the
3383
3383
  * job:</p>
@@ -3406,27 +3406,27 @@ export interface DescribeAutoPredictorResponse {
3406
3406
  * </ul>
3407
3407
  * @public
3408
3408
  */
3409
- LastModificationTime?: Date;
3409
+ LastModificationTime?: Date | undefined;
3410
3410
  /**
3411
3411
  * <p>The accuracy metric used to optimize the predictor.</p>
3412
3412
  * @public
3413
3413
  */
3414
- OptimizationMetric?: OptimizationMetric;
3414
+ OptimizationMetric?: OptimizationMetric | undefined;
3415
3415
  /**
3416
3416
  * <p>Provides the status and ARN of the Predictor Explainability.</p>
3417
3417
  * @public
3418
3418
  */
3419
- ExplainabilityInfo?: ExplainabilityInfo;
3419
+ ExplainabilityInfo?: ExplainabilityInfo | undefined;
3420
3420
  /**
3421
3421
  * <p>A object with the Amazon Resource Name (ARN) and status of the monitor resource.</p>
3422
3422
  * @public
3423
3423
  */
3424
- MonitorInfo?: MonitorInfo;
3424
+ MonitorInfo?: MonitorInfo | undefined;
3425
3425
  /**
3426
3426
  * <p>The time boundary Forecast uses when aggregating data.</p>
3427
3427
  * @public
3428
3428
  */
3429
- TimeAlignmentBoundary?: TimeAlignmentBoundary;
3429
+ TimeAlignmentBoundary?: TimeAlignmentBoundary | undefined;
3430
3430
  }
3431
3431
  /**
3432
3432
  * @public
@@ -3446,22 +3446,22 @@ export interface DescribeDatasetResponse {
3446
3446
  * <p>The Amazon Resource Name (ARN) of the dataset.</p>
3447
3447
  * @public
3448
3448
  */
3449
- DatasetArn?: string;
3449
+ DatasetArn?: string | undefined;
3450
3450
  /**
3451
3451
  * <p>The name of the dataset.</p>
3452
3452
  * @public
3453
3453
  */
3454
- DatasetName?: string;
3454
+ DatasetName?: string | undefined;
3455
3455
  /**
3456
3456
  * <p>The domain associated with the dataset.</p>
3457
3457
  * @public
3458
3458
  */
3459
- Domain?: Domain;
3459
+ Domain?: Domain | undefined;
3460
3460
  /**
3461
3461
  * <p>The dataset type.</p>
3462
3462
  * @public
3463
3463
  */
3464
- DatasetType?: DatasetType;
3464
+ DatasetType?: DatasetType | undefined;
3465
3465
  /**
3466
3466
  * <p>The frequency of data collection.</p>
3467
3467
  * <p>Valid intervals are Y (Year), M (Month), W (Week), D (Day), H (Hour), 30min (30 minutes),
@@ -3469,19 +3469,19 @@ export interface DescribeDatasetResponse {
3469
3469
  * "M" indicates every month and "30min" indicates every 30 minutes.</p>
3470
3470
  * @public
3471
3471
  */
3472
- DataFrequency?: string;
3472
+ DataFrequency?: string | undefined;
3473
3473
  /**
3474
3474
  * <p>An array of <code>SchemaAttribute</code> objects that specify the dataset fields. Each
3475
3475
  * <code>SchemaAttribute</code> specifies the name and data type of a field.</p>
3476
3476
  * @public
3477
3477
  */
3478
- Schema?: Schema;
3478
+ Schema?: Schema | undefined;
3479
3479
  /**
3480
3480
  * <p>The Key Management Service (KMS) key and the Identity and Access Management (IAM) role that Amazon Forecast can assume to access
3481
3481
  * the key.</p>
3482
3482
  * @public
3483
3483
  */
3484
- EncryptionConfig?: EncryptionConfig;
3484
+ EncryptionConfig?: EncryptionConfig | undefined;
3485
3485
  /**
3486
3486
  * <p>The status of the dataset. States include:</p>
3487
3487
  * <ul>
@@ -3519,12 +3519,12 @@ export interface DescribeDatasetResponse {
3519
3519
  * </note>
3520
3520
  * @public
3521
3521
  */
3522
- Status?: string;
3522
+ Status?: string | undefined;
3523
3523
  /**
3524
3524
  * <p>When the dataset was created.</p>
3525
3525
  * @public
3526
3526
  */
3527
- CreationTime?: Date;
3527
+ CreationTime?: Date | undefined;
3528
3528
  /**
3529
3529
  * <p>When you create a dataset, <code>LastModificationTime</code> is the same as
3530
3530
  * <code>CreationTime</code>. While data is being imported to the dataset,
@@ -3534,7 +3534,7 @@ export interface DescribeDatasetResponse {
3534
3534
  * failed.</p>
3535
3535
  * @public
3536
3536
  */
3537
- LastModificationTime?: Date;
3537
+ LastModificationTime?: Date | undefined;
3538
3538
  }
3539
3539
  /**
3540
3540
  * @public
@@ -3554,23 +3554,23 @@ export interface DescribeDatasetGroupResponse {
3554
3554
  * <p>The name of the dataset group.</p>
3555
3555
  * @public
3556
3556
  */
3557
- DatasetGroupName?: string;
3557
+ DatasetGroupName?: string | undefined;
3558
3558
  /**
3559
3559
  * <p>The ARN of the dataset group.</p>
3560
3560
  * @public
3561
3561
  */
3562
- DatasetGroupArn?: string;
3562
+ DatasetGroupArn?: string | undefined;
3563
3563
  /**
3564
3564
  * <p>An array of Amazon Resource Names (ARNs) of the datasets contained in the dataset
3565
3565
  * group.</p>
3566
3566
  * @public
3567
3567
  */
3568
- DatasetArns?: string[];
3568
+ DatasetArns?: string[] | undefined;
3569
3569
  /**
3570
3570
  * <p>The domain associated with the dataset group.</p>
3571
3571
  * @public
3572
3572
  */
3573
- Domain?: Domain;
3573
+ Domain?: Domain | undefined;
3574
3574
  /**
3575
3575
  * <p>The status of the dataset group. States include:</p>
3576
3576
  * <ul>
@@ -3606,19 +3606,19 @@ export interface DescribeDatasetGroupResponse {
3606
3606
  * </note>
3607
3607
  * @public
3608
3608
  */
3609
- Status?: string;
3609
+ Status?: string | undefined;
3610
3610
  /**
3611
3611
  * <p>When the dataset group was created.</p>
3612
3612
  * @public
3613
3613
  */
3614
- CreationTime?: Date;
3614
+ CreationTime?: Date | undefined;
3615
3615
  /**
3616
3616
  * <p>When the dataset group was created or last updated from a call to the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_UpdateDatasetGroup.html">UpdateDatasetGroup</a> operation. While the dataset group is being updated,
3617
3617
  * <code>LastModificationTime</code> is the current time of the
3618
3618
  * <code>DescribeDatasetGroup</code> call.</p>
3619
3619
  * @public
3620
3620
  */
3621
- LastModificationTime?: Date;
3621
+ LastModificationTime?: Date | undefined;
3622
3622
  }
3623
3623
  /**
3624
3624
  * @public
@@ -3641,69 +3641,69 @@ export interface Statistics {
3641
3641
  * <code>CountLong</code>.</p>
3642
3642
  * @public
3643
3643
  */
3644
- Count?: number;
3644
+ Count?: number | undefined;
3645
3645
  /**
3646
3646
  * <p>The number of distinct values in the field. If the response value is -1, refer to
3647
3647
  * <code>CountDistinctLong</code>.</p>
3648
3648
  * @public
3649
3649
  */
3650
- CountDistinct?: number;
3650
+ CountDistinct?: number | undefined;
3651
3651
  /**
3652
3652
  * <p>The number of null values in the field. If the response value is -1, refer to
3653
3653
  * <code>CountNullLong</code>.</p>
3654
3654
  * @public
3655
3655
  */
3656
- CountNull?: number;
3656
+ CountNull?: number | undefined;
3657
3657
  /**
3658
3658
  * <p>The number of NAN (not a number) values in the field. If the response value is -1, refer
3659
3659
  * to <code>CountNanLong</code>.</p>
3660
3660
  * @public
3661
3661
  */
3662
- CountNan?: number;
3662
+ CountNan?: number | undefined;
3663
3663
  /**
3664
3664
  * <p>For a numeric field, the minimum value in the field.</p>
3665
3665
  * @public
3666
3666
  */
3667
- Min?: string;
3667
+ Min?: string | undefined;
3668
3668
  /**
3669
3669
  * <p>For a numeric field, the maximum value in the field.</p>
3670
3670
  * @public
3671
3671
  */
3672
- Max?: string;
3672
+ Max?: string | undefined;
3673
3673
  /**
3674
3674
  * <p>For a numeric field, the average value in the field.</p>
3675
3675
  * @public
3676
3676
  */
3677
- Avg?: number;
3677
+ Avg?: number | undefined;
3678
3678
  /**
3679
3679
  * <p>For a numeric field, the standard deviation.</p>
3680
3680
  * @public
3681
3681
  */
3682
- Stddev?: number;
3682
+ Stddev?: number | undefined;
3683
3683
  /**
3684
3684
  * <p>The number of values in the field. <code>CountLong</code> is used instead of
3685
3685
  * <code>Count</code> if the value is greater than 2,147,483,647.</p>
3686
3686
  * @public
3687
3687
  */
3688
- CountLong?: number;
3688
+ CountLong?: number | undefined;
3689
3689
  /**
3690
3690
  * <p>The number of distinct values in the field. <code>CountDistinctLong</code> is used instead
3691
3691
  * of <code>CountDistinct</code> if the value is greater than 2,147,483,647.</p>
3692
3692
  * @public
3693
3693
  */
3694
- CountDistinctLong?: number;
3694
+ CountDistinctLong?: number | undefined;
3695
3695
  /**
3696
3696
  * <p>The number of null values in the field. <code>CountNullLong</code> is used instead of
3697
3697
  * <code>CountNull</code> if the value is greater than 2,147,483,647.</p>
3698
3698
  * @public
3699
3699
  */
3700
- CountNullLong?: number;
3700
+ CountNullLong?: number | undefined;
3701
3701
  /**
3702
3702
  * <p>The number of NAN (not a number) values in the field. <code>CountNanLong</code> is used
3703
3703
  * instead of <code>CountNan</code> if the value is greater than 2,147,483,647.</p>
3704
3704
  * @public
3705
3705
  */
3706
- CountNanLong?: number;
3706
+ CountNanLong?: number | undefined;
3707
3707
  }
3708
3708
  /**
3709
3709
  * @public
@@ -3713,18 +3713,18 @@ export interface DescribeDatasetImportJobResponse {
3713
3713
  * <p>The name of the dataset import job.</p>
3714
3714
  * @public
3715
3715
  */
3716
- DatasetImportJobName?: string;
3716
+ DatasetImportJobName?: string | undefined;
3717
3717
  /**
3718
3718
  * <p>The ARN of the dataset import job.</p>
3719
3719
  * @public
3720
3720
  */
3721
- DatasetImportJobArn?: string;
3721
+ DatasetImportJobArn?: string | undefined;
3722
3722
  /**
3723
3723
  * <p>The Amazon Resource Name (ARN) of the dataset that the training data was imported
3724
3724
  * to.</p>
3725
3725
  * @public
3726
3726
  */
3727
- DatasetArn?: string;
3727
+ DatasetArn?: string | undefined;
3728
3728
  /**
3729
3729
  * <p>The format of timestamps in the dataset. The format that you specify depends on the
3730
3730
  * <code>DataFrequency</code> specified when the dataset was created. The following formats are
@@ -3742,46 +3742,46 @@ export interface DescribeDatasetImportJobResponse {
3742
3742
  * </ul>
3743
3743
  * @public
3744
3744
  */
3745
- TimestampFormat?: string;
3745
+ TimestampFormat?: string | undefined;
3746
3746
  /**
3747
3747
  * <p>The single time zone applied to every item in the dataset</p>
3748
3748
  * @public
3749
3749
  */
3750
- TimeZone?: string;
3750
+ TimeZone?: string | undefined;
3751
3751
  /**
3752
3752
  * <p>Whether <code>TimeZone</code> is automatically derived from the geolocation
3753
3753
  * attribute.</p>
3754
3754
  * @public
3755
3755
  */
3756
- UseGeolocationForTimeZone?: boolean;
3756
+ UseGeolocationForTimeZone?: boolean | undefined;
3757
3757
  /**
3758
3758
  * <p>The format of the geolocation attribute. Valid Values:<code>"LAT_LONG"</code> and
3759
3759
  * <code>"CC_POSTALCODE"</code>.</p>
3760
3760
  * @public
3761
3761
  */
3762
- GeolocationFormat?: string;
3762
+ GeolocationFormat?: string | undefined;
3763
3763
  /**
3764
3764
  * <p>The location of the training data to import and an Identity and Access Management (IAM) role that Amazon Forecast
3765
3765
  * can assume to access the data.</p>
3766
3766
  * <p>If encryption is used, <code>DataSource</code> includes an Key Management Service (KMS) key.</p>
3767
3767
  * @public
3768
3768
  */
3769
- DataSource?: DataSource;
3769
+ DataSource?: DataSource | undefined;
3770
3770
  /**
3771
3771
  * <p>The estimated time remaining in minutes for the dataset import job to complete.</p>
3772
3772
  * @public
3773
3773
  */
3774
- EstimatedTimeRemainingInMinutes?: number;
3774
+ EstimatedTimeRemainingInMinutes?: number | undefined;
3775
3775
  /**
3776
3776
  * <p>Statistical information about each field in the input data.</p>
3777
3777
  * @public
3778
3778
  */
3779
- FieldStatistics?: Record<string, Statistics>;
3779
+ FieldStatistics?: Record<string, Statistics> | undefined;
3780
3780
  /**
3781
3781
  * <p>The size of the dataset in gigabytes (GB) after the import job has finished.</p>
3782
3782
  * @public
3783
3783
  */
3784
- DataSize?: number;
3784
+ DataSize?: number | undefined;
3785
3785
  /**
3786
3786
  * <p>The status of the dataset import job. States include:</p>
3787
3787
  * <ul>
@@ -3810,17 +3810,17 @@ export interface DescribeDatasetImportJobResponse {
3810
3810
  * </ul>
3811
3811
  * @public
3812
3812
  */
3813
- Status?: string;
3813
+ Status?: string | undefined;
3814
3814
  /**
3815
3815
  * <p>If an error occurred, an informational message about the error.</p>
3816
3816
  * @public
3817
3817
  */
3818
- Message?: string;
3818
+ Message?: string | undefined;
3819
3819
  /**
3820
3820
  * <p>When the dataset import job was created.</p>
3821
3821
  * @public
3822
3822
  */
3823
- CreationTime?: Date;
3823
+ CreationTime?: Date | undefined;
3824
3824
  /**
3825
3825
  * <p>The last time the resource was modified. The timestamp depends on the status of the
3826
3826
  * job:</p>
@@ -3849,17 +3849,17 @@ export interface DescribeDatasetImportJobResponse {
3849
3849
  * </ul>
3850
3850
  * @public
3851
3851
  */
3852
- LastModificationTime?: Date;
3852
+ LastModificationTime?: Date | undefined;
3853
3853
  /**
3854
3854
  * <p>The format of the imported data, CSV or PARQUET.</p>
3855
3855
  * @public
3856
3856
  */
3857
- Format?: string;
3857
+ Format?: string | undefined;
3858
3858
  /**
3859
3859
  * <p>The import mode of the dataset import job, FULL or INCREMENTAL.</p>
3860
3860
  * @public
3861
3861
  */
3862
- ImportMode?: ImportMode;
3862
+ ImportMode?: ImportMode | undefined;
3863
3863
  }
3864
3864
  /**
3865
3865
  * @public
@@ -3879,63 +3879,63 @@ export interface DescribeExplainabilityResponse {
3879
3879
  * <p>The Amazon Resource Name (ARN) of the Explainability.</p>
3880
3880
  * @public
3881
3881
  */
3882
- ExplainabilityArn?: string;
3882
+ ExplainabilityArn?: string | undefined;
3883
3883
  /**
3884
3884
  * <p>The name of the Explainability.</p>
3885
3885
  * @public
3886
3886
  */
3887
- ExplainabilityName?: string;
3887
+ ExplainabilityName?: string | undefined;
3888
3888
  /**
3889
3889
  * <p>The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the
3890
3890
  * Explainability resource.</p>
3891
3891
  * @public
3892
3892
  */
3893
- ResourceArn?: string;
3893
+ ResourceArn?: string | undefined;
3894
3894
  /**
3895
3895
  * <p>The configuration settings that define the granularity of time series and time points
3896
3896
  * for the Explainability.</p>
3897
3897
  * @public
3898
3898
  */
3899
- ExplainabilityConfig?: ExplainabilityConfig;
3899
+ ExplainabilityConfig?: ExplainabilityConfig | undefined;
3900
3900
  /**
3901
3901
  * <p>Whether the visualization was enabled for the Explainability resource.</p>
3902
3902
  * @public
3903
3903
  */
3904
- EnableVisualization?: boolean;
3904
+ EnableVisualization?: boolean | undefined;
3905
3905
  /**
3906
3906
  * <p>The source of your data, an Identity and Access Management (IAM) role that allows Amazon Forecast to
3907
3907
  * access the data and, optionally, an Key Management Service (KMS) key.</p>
3908
3908
  * @public
3909
3909
  */
3910
- DataSource?: DataSource;
3910
+ DataSource?: DataSource | undefined;
3911
3911
  /**
3912
3912
  * <p>Defines the fields of a dataset.</p>
3913
3913
  * @public
3914
3914
  */
3915
- Schema?: Schema;
3915
+ Schema?: Schema | undefined;
3916
3916
  /**
3917
3917
  * <p>If <code>TimePointGranularity</code> is set to <code>SPECIFIC</code>, the first time
3918
3918
  * point in the Explainability.</p>
3919
3919
  * @public
3920
3920
  */
3921
- StartDateTime?: string;
3921
+ StartDateTime?: string | undefined;
3922
3922
  /**
3923
3923
  * <p>If <code>TimePointGranularity</code> is set to <code>SPECIFIC</code>, the last time
3924
3924
  * point in the Explainability.</p>
3925
3925
  * @public
3926
3926
  */
3927
- EndDateTime?: string;
3927
+ EndDateTime?: string | undefined;
3928
3928
  /**
3929
3929
  * <p>The estimated time remaining in minutes for the <a>CreateExplainability</a>
3930
3930
  * job to complete.</p>
3931
3931
  * @public
3932
3932
  */
3933
- EstimatedTimeRemainingInMinutes?: number;
3933
+ EstimatedTimeRemainingInMinutes?: number | undefined;
3934
3934
  /**
3935
3935
  * <p>If an error occurred, a message about the error.</p>
3936
3936
  * @public
3937
3937
  */
3938
- Message?: string;
3938
+ Message?: string | undefined;
3939
3939
  /**
3940
3940
  * <p>The status of the Explainability resource. States include: </p>
3941
3941
  * <ul>
@@ -3964,12 +3964,12 @@ export interface DescribeExplainabilityResponse {
3964
3964
  * </ul>
3965
3965
  * @public
3966
3966
  */
3967
- Status?: string;
3967
+ Status?: string | undefined;
3968
3968
  /**
3969
3969
  * <p>When the Explainability resource was created.</p>
3970
3970
  * @public
3971
3971
  */
3972
- CreationTime?: Date;
3972
+ CreationTime?: Date | undefined;
3973
3973
  /**
3974
3974
  * <p>The last time the resource was modified. The timestamp depends on the status of the
3975
3975
  * job:</p>
@@ -3998,7 +3998,7 @@ export interface DescribeExplainabilityResponse {
3998
3998
  * </ul>
3999
3999
  * @public
4000
4000
  */
4001
- LastModificationTime?: Date;
4001
+ LastModificationTime?: Date | undefined;
4002
4002
  }
4003
4003
  /**
4004
4004
  * @public
@@ -4018,28 +4018,28 @@ export interface DescribeExplainabilityExportResponse {
4018
4018
  * <p>The Amazon Resource Name (ARN) of the Explainability export.</p>
4019
4019
  * @public
4020
4020
  */
4021
- ExplainabilityExportArn?: string;
4021
+ ExplainabilityExportArn?: string | undefined;
4022
4022
  /**
4023
4023
  * <p>The name of the Explainability export.</p>
4024
4024
  * @public
4025
4025
  */
4026
- ExplainabilityExportName?: string;
4026
+ ExplainabilityExportName?: string | undefined;
4027
4027
  /**
4028
4028
  * <p>The Amazon Resource Name (ARN) of the Explainability export.</p>
4029
4029
  * @public
4030
4030
  */
4031
- ExplainabilityArn?: string;
4031
+ ExplainabilityArn?: string | undefined;
4032
4032
  /**
4033
4033
  * <p>The destination for an export job. Provide an S3 path, an Identity and Access Management (IAM) role that allows Amazon Forecast
4034
4034
  * to access the location, and an Key Management Service (KMS) key (optional). </p>
4035
4035
  * @public
4036
4036
  */
4037
- Destination?: DataDestination;
4037
+ Destination?: DataDestination | undefined;
4038
4038
  /**
4039
4039
  * <p>Information about any errors that occurred during the export.</p>
4040
4040
  * @public
4041
4041
  */
4042
- Message?: string;
4042
+ Message?: string | undefined;
4043
4043
  /**
4044
4044
  * <p>The status of the Explainability export. States include: </p>
4045
4045
  * <ul>
@@ -4068,12 +4068,12 @@ export interface DescribeExplainabilityExportResponse {
4068
4068
  * </ul>
4069
4069
  * @public
4070
4070
  */
4071
- Status?: string;
4071
+ Status?: string | undefined;
4072
4072
  /**
4073
4073
  * <p>When the Explainability export was created.</p>
4074
4074
  * @public
4075
4075
  */
4076
- CreationTime?: Date;
4076
+ CreationTime?: Date | undefined;
4077
4077
  /**
4078
4078
  * <p>The last time the resource was modified. The timestamp depends on the status of the
4079
4079
  * job:</p>
@@ -4102,12 +4102,12 @@ export interface DescribeExplainabilityExportResponse {
4102
4102
  * </ul>
4103
4103
  * @public
4104
4104
  */
4105
- LastModificationTime?: Date;
4105
+ LastModificationTime?: Date | undefined;
4106
4106
  /**
4107
4107
  * <p>The format of the exported data, CSV or PARQUET.</p>
4108
4108
  * @public
4109
4109
  */
4110
- Format?: string;
4110
+ Format?: string | undefined;
4111
4111
  }
4112
4112
  /**
4113
4113
  * @public
@@ -4127,32 +4127,32 @@ export interface DescribeForecastResponse {
4127
4127
  * <p>The forecast ARN as specified in the request.</p>
4128
4128
  * @public
4129
4129
  */
4130
- ForecastArn?: string;
4130
+ ForecastArn?: string | undefined;
4131
4131
  /**
4132
4132
  * <p>The name of the forecast.</p>
4133
4133
  * @public
4134
4134
  */
4135
- ForecastName?: string;
4135
+ ForecastName?: string | undefined;
4136
4136
  /**
4137
4137
  * <p>The quantiles at which probabilistic forecasts were generated.</p>
4138
4138
  * @public
4139
4139
  */
4140
- ForecastTypes?: string[];
4140
+ ForecastTypes?: string[] | undefined;
4141
4141
  /**
4142
4142
  * <p>The ARN of the predictor used to generate the forecast.</p>
4143
4143
  * @public
4144
4144
  */
4145
- PredictorArn?: string;
4145
+ PredictorArn?: string | undefined;
4146
4146
  /**
4147
4147
  * <p>The ARN of the dataset group that provided the data used to train the predictor.</p>
4148
4148
  * @public
4149
4149
  */
4150
- DatasetGroupArn?: string;
4150
+ DatasetGroupArn?: string | undefined;
4151
4151
  /**
4152
4152
  * <p>The estimated time remaining in minutes for the forecast job to complete.</p>
4153
4153
  * @public
4154
4154
  */
4155
- EstimatedTimeRemainingInMinutes?: number;
4155
+ EstimatedTimeRemainingInMinutes?: number | undefined;
4156
4156
  /**
4157
4157
  * <p>The status of the forecast. States include:</p>
4158
4158
  * <ul>
@@ -4185,17 +4185,17 @@ export interface DescribeForecastResponse {
4185
4185
  * </note>
4186
4186
  * @public
4187
4187
  */
4188
- Status?: string;
4188
+ Status?: string | undefined;
4189
4189
  /**
4190
4190
  * <p>If an error occurred, an informational message about the error.</p>
4191
4191
  * @public
4192
4192
  */
4193
- Message?: string;
4193
+ Message?: string | undefined;
4194
4194
  /**
4195
4195
  * <p>When the forecast creation task was created.</p>
4196
4196
  * @public
4197
4197
  */
4198
- CreationTime?: Date;
4198
+ CreationTime?: Date | undefined;
4199
4199
  /**
4200
4200
  * <p>The last time the resource was modified. The timestamp depends on the status of the job:</p>
4201
4201
  * <ul>
@@ -4223,12 +4223,12 @@ export interface DescribeForecastResponse {
4223
4223
  * </ul>
4224
4224
  * @public
4225
4225
  */
4226
- LastModificationTime?: Date;
4226
+ LastModificationTime?: Date | undefined;
4227
4227
  /**
4228
4228
  * <p>The time series to include in the forecast.</p>
4229
4229
  * @public
4230
4230
  */
4231
- TimeSeriesSelector?: TimeSeriesSelector;
4231
+ TimeSeriesSelector?: TimeSeriesSelector | undefined;
4232
4232
  }
4233
4233
  /**
4234
4234
  * @public
@@ -4248,27 +4248,27 @@ export interface DescribeForecastExportJobResponse {
4248
4248
  * <p>The ARN of the forecast export job.</p>
4249
4249
  * @public
4250
4250
  */
4251
- ForecastExportJobArn?: string;
4251
+ ForecastExportJobArn?: string | undefined;
4252
4252
  /**
4253
4253
  * <p>The name of the forecast export job.</p>
4254
4254
  * @public
4255
4255
  */
4256
- ForecastExportJobName?: string;
4256
+ ForecastExportJobName?: string | undefined;
4257
4257
  /**
4258
4258
  * <p>The Amazon Resource Name (ARN) of the exported forecast.</p>
4259
4259
  * @public
4260
4260
  */
4261
- ForecastArn?: string;
4261
+ ForecastArn?: string | undefined;
4262
4262
  /**
4263
4263
  * <p>The path to the Amazon Simple Storage Service (Amazon S3) bucket where the forecast is exported.</p>
4264
4264
  * @public
4265
4265
  */
4266
- Destination?: DataDestination;
4266
+ Destination?: DataDestination | undefined;
4267
4267
  /**
4268
4268
  * <p>If an error occurred, an informational message about the error.</p>
4269
4269
  * @public
4270
4270
  */
4271
- Message?: string;
4271
+ Message?: string | undefined;
4272
4272
  /**
4273
4273
  * <p>The status of the forecast export job. States include:</p>
4274
4274
  * <ul>
@@ -4301,12 +4301,12 @@ export interface DescribeForecastExportJobResponse {
4301
4301
  * </note>
4302
4302
  * @public
4303
4303
  */
4304
- Status?: string;
4304
+ Status?: string | undefined;
4305
4305
  /**
4306
4306
  * <p>When the forecast export job was created.</p>
4307
4307
  * @public
4308
4308
  */
4309
- CreationTime?: Date;
4309
+ CreationTime?: Date | undefined;
4310
4310
  /**
4311
4311
  * <p>The last time the resource was modified. The timestamp depends on the status of the job:</p>
4312
4312
  * <ul>
@@ -4334,12 +4334,12 @@ export interface DescribeForecastExportJobResponse {
4334
4334
  * </ul>
4335
4335
  * @public
4336
4336
  */
4337
- LastModificationTime?: Date;
4337
+ LastModificationTime?: Date | undefined;
4338
4338
  /**
4339
4339
  * <p>The format of the exported data, CSV or PARQUET.</p>
4340
4340
  * @public
4341
4341
  */
4342
- Format?: string;
4342
+ Format?: string | undefined;
4343
4343
  }
4344
4344
  /**
4345
4345
  * @public
@@ -4360,12 +4360,12 @@ export interface BaselineMetric {
4360
4360
  * <p>The name of the metric.</p>
4361
4361
  * @public
4362
4362
  */
4363
- Name?: string;
4363
+ Name?: string | undefined;
4364
4364
  /**
4365
4365
  * <p>The value for the metric.</p>
4366
4366
  * @public
4367
4367
  */
4368
- Value?: number;
4368
+ Value?: number | undefined;
4369
4369
  }
4370
4370
  /**
4371
4371
  * <p>Metrics you can use as a baseline for comparison purposes. Use these metrics when you interpret monitoring results for an auto predictor.</p>
@@ -4377,7 +4377,7 @@ export interface PredictorBaseline {
4377
4377
  * use your predictor and the metrics change.</p>
4378
4378
  * @public
4379
4379
  */
4380
- BaselineMetrics?: BaselineMetric[];
4380
+ BaselineMetrics?: BaselineMetric[] | undefined;
4381
4381
  }
4382
4382
  /**
4383
4383
  * <p>Metrics you can use as a baseline for comparison purposes. Use these metrics when you interpret monitoring results for an auto predictor.</p>
@@ -4389,7 +4389,7 @@ export interface Baseline {
4389
4389
  * use your predictor and the metrics change.</p>
4390
4390
  * @public
4391
4391
  */
4392
- PredictorBaseline?: PredictorBaseline;
4392
+ PredictorBaseline?: PredictorBaseline | undefined;
4393
4393
  }
4394
4394
  /**
4395
4395
  * @public
@@ -4399,57 +4399,57 @@ export interface DescribeMonitorResponse {
4399
4399
  * <p>The name of the monitor.</p>
4400
4400
  * @public
4401
4401
  */
4402
- MonitorName?: string;
4402
+ MonitorName?: string | undefined;
4403
4403
  /**
4404
4404
  * <p>The Amazon Resource Name (ARN) of the monitor resource described.</p>
4405
4405
  * @public
4406
4406
  */
4407
- MonitorArn?: string;
4407
+ MonitorArn?: string | undefined;
4408
4408
  /**
4409
4409
  * <p>The Amazon Resource Name (ARN) of the auto predictor being monitored.</p>
4410
4410
  * @public
4411
4411
  */
4412
- ResourceArn?: string;
4412
+ ResourceArn?: string | undefined;
4413
4413
  /**
4414
4414
  * <p>The status of the monitor resource.</p>
4415
4415
  * @public
4416
4416
  */
4417
- Status?: string;
4417
+ Status?: string | undefined;
4418
4418
  /**
4419
4419
  * <p>The timestamp of the latest evaluation completed by the monitor.</p>
4420
4420
  * @public
4421
4421
  */
4422
- LastEvaluationTime?: Date;
4422
+ LastEvaluationTime?: Date | undefined;
4423
4423
  /**
4424
4424
  * <p>The state of the monitor's latest evaluation.</p>
4425
4425
  * @public
4426
4426
  */
4427
- LastEvaluationState?: string;
4427
+ LastEvaluationState?: string | undefined;
4428
4428
  /**
4429
4429
  * <p>Metrics you can use as a baseline for comparison purposes. Use these values you interpret monitoring results for an auto predictor.</p>
4430
4430
  * @public
4431
4431
  */
4432
- Baseline?: Baseline;
4432
+ Baseline?: Baseline | undefined;
4433
4433
  /**
4434
4434
  * <p>An error message, if any, for the monitor.</p>
4435
4435
  * @public
4436
4436
  */
4437
- Message?: string;
4437
+ Message?: string | undefined;
4438
4438
  /**
4439
4439
  * <p>The timestamp for when the monitor resource was created.</p>
4440
4440
  * @public
4441
4441
  */
4442
- CreationTime?: Date;
4442
+ CreationTime?: Date | undefined;
4443
4443
  /**
4444
4444
  * <p>The timestamp of the latest modification to the monitor.</p>
4445
4445
  * @public
4446
4446
  */
4447
- LastModificationTime?: Date;
4447
+ LastModificationTime?: Date | undefined;
4448
4448
  /**
4449
4449
  * <p>The estimated number of minutes remaining before the monitor resource finishes its current evaluation.</p>
4450
4450
  * @public
4451
4451
  */
4452
- EstimatedEvaluationTimeRemainingInMinutes?: number;
4452
+ EstimatedEvaluationTimeRemainingInMinutes?: number | undefined;
4453
4453
  }
4454
4454
  /**
4455
4455
  * @public
@@ -4471,12 +4471,12 @@ export interface TestWindowSummary {
4471
4471
  * <p>The time at which the test began.</p>
4472
4472
  * @public
4473
4473
  */
4474
- TestWindowStart?: Date;
4474
+ TestWindowStart?: Date | undefined;
4475
4475
  /**
4476
4476
  * <p>The time at which the test ended.</p>
4477
4477
  * @public
4478
4478
  */
4479
- TestWindowEnd?: Date;
4479
+ TestWindowEnd?: Date | undefined;
4480
4480
  /**
4481
4481
  * <p>The status of the test. Possible status values are:</p>
4482
4482
  * <ul>
@@ -4498,12 +4498,12 @@ export interface TestWindowSummary {
4498
4498
  * </ul>
4499
4499
  * @public
4500
4500
  */
4501
- Status?: string;
4501
+ Status?: string | undefined;
4502
4502
  /**
4503
4503
  * <p>If the test failed, the reason why it failed.</p>
4504
4504
  * @public
4505
4505
  */
4506
- Message?: string;
4506
+ Message?: string | undefined;
4507
4507
  }
4508
4508
  /**
4509
4509
  * <p>The algorithm used to perform a backtest and the status of those tests.</p>
@@ -4514,14 +4514,14 @@ export interface PredictorExecution {
4514
4514
  * <p>The ARN of the algorithm used to test the predictor.</p>
4515
4515
  * @public
4516
4516
  */
4517
- AlgorithmArn?: string;
4517
+ AlgorithmArn?: string | undefined;
4518
4518
  /**
4519
4519
  * <p>An array of test windows used to evaluate the algorithm. The
4520
4520
  * <code>NumberOfBacktestWindows</code> from the
4521
4521
  * object determines the number of windows in the array.</p>
4522
4522
  * @public
4523
4523
  */
4524
- TestWindows?: TestWindowSummary[];
4524
+ TestWindows?: TestWindowSummary[] | undefined;
4525
4525
  }
4526
4526
  /**
4527
4527
  * <p>Contains details on the backtests performed to evaluate the accuracy of the predictor. The
@@ -4536,7 +4536,7 @@ export interface PredictorExecutionDetails {
4536
4536
  * array.</p>
4537
4537
  * @public
4538
4538
  */
4539
- PredictorExecutions?: PredictorExecution[];
4539
+ PredictorExecutions?: PredictorExecution[] | undefined;
4540
4540
  }
4541
4541
  /**
4542
4542
  * @public
@@ -4546,40 +4546,40 @@ export interface DescribePredictorResponse {
4546
4546
  * <p>The ARN of the predictor.</p>
4547
4547
  * @public
4548
4548
  */
4549
- PredictorArn?: string;
4549
+ PredictorArn?: string | undefined;
4550
4550
  /**
4551
4551
  * <p>The name of the predictor.</p>
4552
4552
  * @public
4553
4553
  */
4554
- PredictorName?: string;
4554
+ PredictorName?: string | undefined;
4555
4555
  /**
4556
4556
  * <p>The Amazon Resource Name (ARN) of the algorithm used for model training.</p>
4557
4557
  * @public
4558
4558
  */
4559
- AlgorithmArn?: string;
4559
+ AlgorithmArn?: string | undefined;
4560
4560
  /**
4561
4561
  * <p>When <code>PerformAutoML</code> is specified, the ARN of the chosen algorithm.</p>
4562
4562
  * @public
4563
4563
  */
4564
- AutoMLAlgorithmArns?: string[];
4564
+ AutoMLAlgorithmArns?: string[] | undefined;
4565
4565
  /**
4566
4566
  * <p>The number of time-steps of the forecast. The forecast horizon is also called the
4567
4567
  * prediction length.</p>
4568
4568
  * @public
4569
4569
  */
4570
- ForecastHorizon?: number;
4570
+ ForecastHorizon?: number | undefined;
4571
4571
  /**
4572
4572
  * <p>The forecast types used during predictor training. Default value is
4573
4573
  * <code>["0.1","0.5","0.9"]</code>
4574
4574
  * </p>
4575
4575
  * @public
4576
4576
  */
4577
- ForecastTypes?: string[];
4577
+ ForecastTypes?: string[] | undefined;
4578
4578
  /**
4579
4579
  * <p>Whether the predictor is set to perform AutoML.</p>
4580
4580
  * @public
4581
4581
  */
4582
- PerformAutoML?: boolean;
4582
+ PerformAutoML?: boolean | undefined;
4583
4583
  /**
4584
4584
  * <note>
4585
4585
  * <p> The <code>LatencyOptimized</code> AutoML override strategy is only available in private beta.
@@ -4591,69 +4591,69 @@ export interface DescribePredictorResponse {
4591
4591
  * <p>This parameter is only valid for predictors trained using AutoML.</p>
4592
4592
  * @public
4593
4593
  */
4594
- AutoMLOverrideStrategy?: AutoMLOverrideStrategy;
4594
+ AutoMLOverrideStrategy?: AutoMLOverrideStrategy | undefined;
4595
4595
  /**
4596
4596
  * <p>Whether the predictor is set to perform hyperparameter optimization (HPO).</p>
4597
4597
  * @public
4598
4598
  */
4599
- PerformHPO?: boolean;
4599
+ PerformHPO?: boolean | undefined;
4600
4600
  /**
4601
4601
  * <p>The default training parameters or overrides selected during model training. When running
4602
4602
  * AutoML or choosing HPO with CNN-QR or DeepAR+, the optimized values for the chosen
4603
4603
  * hyperparameters are returned. For more information, see <a>aws-forecast-choosing-recipes</a>.</p>
4604
4604
  * @public
4605
4605
  */
4606
- TrainingParameters?: Record<string, string>;
4606
+ TrainingParameters?: Record<string, string> | undefined;
4607
4607
  /**
4608
4608
  * <p>Used to override the default evaluation parameters of the specified algorithm. Amazon Forecast
4609
4609
  * evaluates a predictor by splitting a dataset into training data and testing data. The
4610
4610
  * evaluation parameters define how to perform the split and the number of iterations.</p>
4611
4611
  * @public
4612
4612
  */
4613
- EvaluationParameters?: EvaluationParameters;
4613
+ EvaluationParameters?: EvaluationParameters | undefined;
4614
4614
  /**
4615
4615
  * <p>The hyperparameter override values for the algorithm.</p>
4616
4616
  * @public
4617
4617
  */
4618
- HPOConfig?: HyperParameterTuningJobConfig;
4618
+ HPOConfig?: HyperParameterTuningJobConfig | undefined;
4619
4619
  /**
4620
4620
  * <p>Describes the dataset group that contains the data to use to train the predictor.</p>
4621
4621
  * @public
4622
4622
  */
4623
- InputDataConfig?: InputDataConfig;
4623
+ InputDataConfig?: InputDataConfig | undefined;
4624
4624
  /**
4625
4625
  * <p>The featurization configuration.</p>
4626
4626
  * @public
4627
4627
  */
4628
- FeaturizationConfig?: FeaturizationConfig;
4628
+ FeaturizationConfig?: FeaturizationConfig | undefined;
4629
4629
  /**
4630
4630
  * <p>An Key Management Service (KMS) key and the Identity and Access Management (IAM) role that Amazon Forecast can assume to access
4631
4631
  * the key.</p>
4632
4632
  * @public
4633
4633
  */
4634
- EncryptionConfig?: EncryptionConfig;
4634
+ EncryptionConfig?: EncryptionConfig | undefined;
4635
4635
  /**
4636
4636
  * <p>Details on the the status and results of the backtests performed to evaluate the accuracy
4637
4637
  * of the predictor. You specify the number of backtests to perform when you call the operation.</p>
4638
4638
  * @public
4639
4639
  */
4640
- PredictorExecutionDetails?: PredictorExecutionDetails;
4640
+ PredictorExecutionDetails?: PredictorExecutionDetails | undefined;
4641
4641
  /**
4642
4642
  * <p>The estimated time remaining in minutes for the predictor training job to complete.</p>
4643
4643
  * @public
4644
4644
  */
4645
- EstimatedTimeRemainingInMinutes?: number;
4645
+ EstimatedTimeRemainingInMinutes?: number | undefined;
4646
4646
  /**
4647
4647
  * <p>Whether the predictor was created with <a>CreateAutoPredictor</a>.</p>
4648
4648
  * @public
4649
4649
  */
4650
- IsAutoPredictor?: boolean;
4650
+ IsAutoPredictor?: boolean | undefined;
4651
4651
  /**
4652
4652
  * <p>An array of the ARNs of the dataset import jobs used to import training data for the
4653
4653
  * predictor.</p>
4654
4654
  * @public
4655
4655
  */
4656
- DatasetImportJobArns?: string[];
4656
+ DatasetImportJobArns?: string[] | undefined;
4657
4657
  /**
4658
4658
  * <p>The status of the predictor. States include:</p>
4659
4659
  * <ul>
@@ -4686,17 +4686,17 @@ export interface DescribePredictorResponse {
4686
4686
  * </note>
4687
4687
  * @public
4688
4688
  */
4689
- Status?: string;
4689
+ Status?: string | undefined;
4690
4690
  /**
4691
4691
  * <p>If an error occurred, an informational message about the error.</p>
4692
4692
  * @public
4693
4693
  */
4694
- Message?: string;
4694
+ Message?: string | undefined;
4695
4695
  /**
4696
4696
  * <p>When the model training task was created.</p>
4697
4697
  * @public
4698
4698
  */
4699
- CreationTime?: Date;
4699
+ CreationTime?: Date | undefined;
4700
4700
  /**
4701
4701
  * <p>The last time the resource was modified. The timestamp depends on the status of the
4702
4702
  * job:</p>
@@ -4725,12 +4725,12 @@ export interface DescribePredictorResponse {
4725
4725
  * </ul>
4726
4726
  * @public
4727
4727
  */
4728
- LastModificationTime?: Date;
4728
+ LastModificationTime?: Date | undefined;
4729
4729
  /**
4730
4730
  * <p>The accuracy metric used to optimize the predictor.</p>
4731
4731
  * @public
4732
4732
  */
4733
- OptimizationMetric?: OptimizationMetric;
4733
+ OptimizationMetric?: OptimizationMetric | undefined;
4734
4734
  }
4735
4735
  /**
4736
4736
  * @public
@@ -4750,28 +4750,28 @@ export interface DescribePredictorBacktestExportJobResponse {
4750
4750
  * <p>The Amazon Resource Name (ARN) of the predictor backtest export job.</p>
4751
4751
  * @public
4752
4752
  */
4753
- PredictorBacktestExportJobArn?: string;
4753
+ PredictorBacktestExportJobArn?: string | undefined;
4754
4754
  /**
4755
4755
  * <p>The name of the predictor backtest export job.</p>
4756
4756
  * @public
4757
4757
  */
4758
- PredictorBacktestExportJobName?: string;
4758
+ PredictorBacktestExportJobName?: string | undefined;
4759
4759
  /**
4760
4760
  * <p>The Amazon Resource Name (ARN) of the predictor.</p>
4761
4761
  * @public
4762
4762
  */
4763
- PredictorArn?: string;
4763
+ PredictorArn?: string | undefined;
4764
4764
  /**
4765
4765
  * <p>The destination for an export job. Provide an S3 path, an Identity and Access Management (IAM) role that allows Amazon Forecast
4766
4766
  * to access the location, and an Key Management Service (KMS) key (optional). </p>
4767
4767
  * @public
4768
4768
  */
4769
- Destination?: DataDestination;
4769
+ Destination?: DataDestination | undefined;
4770
4770
  /**
4771
4771
  * <p>Information about any errors that may have occurred during the backtest export.</p>
4772
4772
  * @public
4773
4773
  */
4774
- Message?: string;
4774
+ Message?: string | undefined;
4775
4775
  /**
4776
4776
  * <p>The status of the predictor backtest export job. States include: </p>
4777
4777
  * <ul>
@@ -4800,12 +4800,12 @@ export interface DescribePredictorBacktestExportJobResponse {
4800
4800
  * </ul>
4801
4801
  * @public
4802
4802
  */
4803
- Status?: string;
4803
+ Status?: string | undefined;
4804
4804
  /**
4805
4805
  * <p>When the predictor backtest export job was created.</p>
4806
4806
  * @public
4807
4807
  */
4808
- CreationTime?: Date;
4808
+ CreationTime?: Date | undefined;
4809
4809
  /**
4810
4810
  * <p>The last time the resource was modified. The timestamp depends on the status of the
4811
4811
  * job:</p>
@@ -4834,12 +4834,12 @@ export interface DescribePredictorBacktestExportJobResponse {
4834
4834
  * </ul>
4835
4835
  * @public
4836
4836
  */
4837
- LastModificationTime?: Date;
4837
+ LastModificationTime?: Date | undefined;
4838
4838
  /**
4839
4839
  * <p>The format of the exported data, CSV or PARQUET.</p>
4840
4840
  * @public
4841
4841
  */
4842
- Format?: string;
4842
+ Format?: string | undefined;
4843
4843
  }
4844
4844
  /**
4845
4845
  * @public
@@ -4859,22 +4859,22 @@ export interface DescribeWhatIfAnalysisResponse {
4859
4859
  * <p>The name of the what-if analysis.</p>
4860
4860
  * @public
4861
4861
  */
4862
- WhatIfAnalysisName?: string;
4862
+ WhatIfAnalysisName?: string | undefined;
4863
4863
  /**
4864
4864
  * <p>The Amazon Resource Name (ARN) of the what-if analysis.</p>
4865
4865
  * @public
4866
4866
  */
4867
- WhatIfAnalysisArn?: string;
4867
+ WhatIfAnalysisArn?: string | undefined;
4868
4868
  /**
4869
4869
  * <p>The Amazon Resource Name (ARN) of the what-if forecast.</p>
4870
4870
  * @public
4871
4871
  */
4872
- ForecastArn?: string;
4872
+ ForecastArn?: string | undefined;
4873
4873
  /**
4874
4874
  * <p>The approximate time remaining to complete the what-if analysis, in minutes.</p>
4875
4875
  * @public
4876
4876
  */
4877
- EstimatedTimeRemainingInMinutes?: number;
4877
+ EstimatedTimeRemainingInMinutes?: number | undefined;
4878
4878
  /**
4879
4879
  * <p>The status of the what-if analysis. States include:</p>
4880
4880
  * <ul>
@@ -4907,17 +4907,17 @@ export interface DescribeWhatIfAnalysisResponse {
4907
4907
  * </note>
4908
4908
  * @public
4909
4909
  */
4910
- Status?: string;
4910
+ Status?: string | undefined;
4911
4911
  /**
4912
4912
  * <p>If an error occurred, an informational message about the error.</p>
4913
4913
  * @public
4914
4914
  */
4915
- Message?: string;
4915
+ Message?: string | undefined;
4916
4916
  /**
4917
4917
  * <p>When the what-if analysis was created.</p>
4918
4918
  * @public
4919
4919
  */
4920
- CreationTime?: Date;
4920
+ CreationTime?: Date | undefined;
4921
4921
  /**
4922
4922
  * <p>The last time the resource was modified. The timestamp depends on the status of the job:</p>
4923
4923
  * <ul>
@@ -4945,7 +4945,7 @@ export interface DescribeWhatIfAnalysisResponse {
4945
4945
  * </ul>
4946
4946
  * @public
4947
4947
  */
4948
- LastModificationTime?: Date;
4948
+ LastModificationTime?: Date | undefined;
4949
4949
  /**
4950
4950
  * <p>Defines the set of time series that are used to create the forecasts in a <code>TimeSeriesIdentifiers</code> object.</p>
4951
4951
  * <p>The <code>TimeSeriesIdentifiers</code> object needs the following information:</p>
@@ -4968,7 +4968,7 @@ export interface DescribeWhatIfAnalysisResponse {
4968
4968
  * </ul>
4969
4969
  * @public
4970
4970
  */
4971
- TimeSeriesSelector?: TimeSeriesSelector;
4971
+ TimeSeriesSelector?: TimeSeriesSelector | undefined;
4972
4972
  }
4973
4973
  /**
4974
4974
  * @public
@@ -4988,22 +4988,22 @@ export interface DescribeWhatIfForecastResponse {
4988
4988
  * <p>The name of the what-if forecast.</p>
4989
4989
  * @public
4990
4990
  */
4991
- WhatIfForecastName?: string;
4991
+ WhatIfForecastName?: string | undefined;
4992
4992
  /**
4993
4993
  * <p>The Amazon Resource Name (ARN) of the what-if forecast.</p>
4994
4994
  * @public
4995
4995
  */
4996
- WhatIfForecastArn?: string;
4996
+ WhatIfForecastArn?: string | undefined;
4997
4997
  /**
4998
4998
  * <p>The Amazon Resource Name (ARN) of the what-if analysis that contains this forecast.</p>
4999
4999
  * @public
5000
5000
  */
5001
- WhatIfAnalysisArn?: string;
5001
+ WhatIfAnalysisArn?: string | undefined;
5002
5002
  /**
5003
5003
  * <p>The approximate time remaining to complete the what-if forecast, in minutes.</p>
5004
5004
  * @public
5005
5005
  */
5006
- EstimatedTimeRemainingInMinutes?: number;
5006
+ EstimatedTimeRemainingInMinutes?: number | undefined;
5007
5007
  /**
5008
5008
  * <p>The status of the what-if forecast. States include:</p>
5009
5009
  * <ul>
@@ -5036,17 +5036,17 @@ export interface DescribeWhatIfForecastResponse {
5036
5036
  * </note>
5037
5037
  * @public
5038
5038
  */
5039
- Status?: string;
5039
+ Status?: string | undefined;
5040
5040
  /**
5041
5041
  * <p>If an error occurred, an informational message about the error.</p>
5042
5042
  * @public
5043
5043
  */
5044
- Message?: string;
5044
+ Message?: string | undefined;
5045
5045
  /**
5046
5046
  * <p>When the what-if forecast was created.</p>
5047
5047
  * @public
5048
5048
  */
5049
- CreationTime?: Date;
5049
+ CreationTime?: Date | undefined;
5050
5050
  /**
5051
5051
  * <p>The last time the resource was modified. The timestamp depends on the status of the job:</p>
5052
5052
  * <ul>
@@ -5074,24 +5074,24 @@ export interface DescribeWhatIfForecastResponse {
5074
5074
  * </ul>
5075
5075
  * @public
5076
5076
  */
5077
- LastModificationTime?: Date;
5077
+ LastModificationTime?: Date | undefined;
5078
5078
  /**
5079
5079
  * <p>An array of <code>Action</code> and <code>TimeSeriesConditions</code> elements that describe what transformations were applied to which time series.</p>
5080
5080
  * @public
5081
5081
  */
5082
- TimeSeriesTransformations?: TimeSeriesTransformation[];
5082
+ TimeSeriesTransformations?: TimeSeriesTransformation[] | undefined;
5083
5083
  /**
5084
5084
  * <p>An array of <code>S3Config</code>, <code>Schema</code>, and <code>Format</code> elements that describe the replacement time series.</p>
5085
5085
  * @public
5086
5086
  */
5087
- TimeSeriesReplacementsDataSource?: TimeSeriesReplacementsDataSource;
5087
+ TimeSeriesReplacementsDataSource?: TimeSeriesReplacementsDataSource | undefined;
5088
5088
  /**
5089
5089
  * <p>The quantiles at which probabilistic forecasts are generated. You can specify up to five quantiles per what-if
5090
5090
  * forecast in the <a>CreateWhatIfForecast</a> operation. If you didn't specify quantiles, the default
5091
5091
  * values are <code>["0.1", "0.5", "0.9"]</code>. </p>
5092
5092
  * @public
5093
5093
  */
5094
- ForecastTypes?: string[];
5094
+ ForecastTypes?: string[] | undefined;
5095
5095
  }
5096
5096
  /**
5097
5097
  * @public
@@ -5111,29 +5111,29 @@ export interface DescribeWhatIfForecastExportResponse {
5111
5111
  * <p>The Amazon Resource Name (ARN) of the what-if forecast export.</p>
5112
5112
  * @public
5113
5113
  */
5114
- WhatIfForecastExportArn?: string;
5114
+ WhatIfForecastExportArn?: string | undefined;
5115
5115
  /**
5116
5116
  * <p>The name of the what-if forecast export.</p>
5117
5117
  * @public
5118
5118
  */
5119
- WhatIfForecastExportName?: string;
5119
+ WhatIfForecastExportName?: string | undefined;
5120
5120
  /**
5121
5121
  * <p>An array of Amazon Resource Names (ARNs) that represent all of the what-if forecasts exported in this
5122
5122
  * resource.</p>
5123
5123
  * @public
5124
5124
  */
5125
- WhatIfForecastArns?: string[];
5125
+ WhatIfForecastArns?: string[] | undefined;
5126
5126
  /**
5127
5127
  * <p>The destination for an export job. Provide an S3 path, an Identity and Access Management (IAM) role that allows Amazon Forecast
5128
5128
  * to access the location, and an Key Management Service (KMS) key (optional). </p>
5129
5129
  * @public
5130
5130
  */
5131
- Destination?: DataDestination;
5131
+ Destination?: DataDestination | undefined;
5132
5132
  /**
5133
5133
  * <p>If an error occurred, an informational message about the error.</p>
5134
5134
  * @public
5135
5135
  */
5136
- Message?: string;
5136
+ Message?: string | undefined;
5137
5137
  /**
5138
5138
  * <p>The status of the what-if forecast. States include:</p>
5139
5139
  * <ul>
@@ -5166,17 +5166,17 @@ export interface DescribeWhatIfForecastExportResponse {
5166
5166
  * </note>
5167
5167
  * @public
5168
5168
  */
5169
- Status?: string;
5169
+ Status?: string | undefined;
5170
5170
  /**
5171
5171
  * <p>When the what-if forecast export was created.</p>
5172
5172
  * @public
5173
5173
  */
5174
- CreationTime?: Date;
5174
+ CreationTime?: Date | undefined;
5175
5175
  /**
5176
5176
  * <p>The approximate time remaining to complete the what-if forecast export, in minutes.</p>
5177
5177
  * @public
5178
5178
  */
5179
- EstimatedTimeRemainingInMinutes?: number;
5179
+ EstimatedTimeRemainingInMinutes?: number | undefined;
5180
5180
  /**
5181
5181
  * <p>The last time the resource was modified. The timestamp depends on the status of the job:</p>
5182
5182
  * <ul>
@@ -5204,12 +5204,12 @@ export interface DescribeWhatIfForecastExportResponse {
5204
5204
  * </ul>
5205
5205
  * @public
5206
5206
  */
5207
- LastModificationTime?: Date;
5207
+ LastModificationTime?: Date | undefined;
5208
5208
  /**
5209
5209
  * <p>The format of the exported data, CSV or PARQUET.</p>
5210
5210
  * @public
5211
5211
  */
5212
- Format?: string;
5212
+ Format?: string | undefined;
5213
5213
  }
5214
5214
  /**
5215
5215
  * @public
@@ -5243,27 +5243,27 @@ export interface ErrorMetric {
5243
5243
  * <p> The Forecast type used to compute WAPE, MAPE, MASE, and RMSE. </p>
5244
5244
  * @public
5245
5245
  */
5246
- ForecastType?: string;
5246
+ ForecastType?: string | undefined;
5247
5247
  /**
5248
5248
  * <p> The weighted absolute percentage error (WAPE). </p>
5249
5249
  * @public
5250
5250
  */
5251
- WAPE?: number;
5251
+ WAPE?: number | undefined;
5252
5252
  /**
5253
5253
  * <p> The root-mean-square error (RMSE). </p>
5254
5254
  * @public
5255
5255
  */
5256
- RMSE?: number;
5256
+ RMSE?: number | undefined;
5257
5257
  /**
5258
5258
  * <p>The Mean Absolute Scaled Error (MASE)</p>
5259
5259
  * @public
5260
5260
  */
5261
- MASE?: number;
5261
+ MASE?: number | undefined;
5262
5262
  /**
5263
5263
  * <p>The Mean Absolute Percentage Error (MAPE)</p>
5264
5264
  * @public
5265
5265
  */
5266
- MAPE?: number;
5266
+ MAPE?: number | undefined;
5267
5267
  }
5268
5268
  /**
5269
5269
  * <p>The weighted loss value for a quantile. This object is part of the <a>Metrics</a> object.</p>
@@ -5276,13 +5276,13 @@ export interface WeightedQuantileLoss {
5276
5276
  * the quantiles would be 0.2, 0.4, 0.6, and 0.8.</p>
5277
5277
  * @public
5278
5278
  */
5279
- Quantile?: number;
5279
+ Quantile?: number | undefined;
5280
5280
  /**
5281
5281
  * <p>The difference between the predicted value and the actual value over the quantile,
5282
5282
  * weighted (normalized) by dividing by the sum over all quantiles.</p>
5283
5283
  * @public
5284
5284
  */
5285
- LossValue?: number;
5285
+ LossValue?: number | undefined;
5286
5286
  }
5287
5287
  /**
5288
5288
  * <p>Provides metrics that are used to evaluate the performance of a predictor. This object is
@@ -5296,25 +5296,25 @@ export interface Metrics {
5296
5296
  * <p>The root-mean-square error (RMSE).</p>
5297
5297
  * @public
5298
5298
  */
5299
- RMSE?: number;
5299
+ RMSE?: number | undefined;
5300
5300
  /**
5301
5301
  * <p>An array of weighted quantile losses. Quantiles divide a probability distribution into
5302
5302
  * regions of equal probability. The distribution in this case is the loss function.</p>
5303
5303
  * @public
5304
5304
  */
5305
- WeightedQuantileLosses?: WeightedQuantileLoss[];
5305
+ WeightedQuantileLosses?: WeightedQuantileLoss[] | undefined;
5306
5306
  /**
5307
5307
  * <p> Provides detailed error metrics for each forecast type. Metrics include root-mean
5308
5308
  * square-error (RMSE), mean absolute percentage error (MAPE), mean absolute scaled error (MASE),
5309
5309
  * and weighted average percentage error (WAPE). </p>
5310
5310
  * @public
5311
5311
  */
5312
- ErrorMetrics?: ErrorMetric[];
5312
+ ErrorMetrics?: ErrorMetric[] | undefined;
5313
5313
  /**
5314
5314
  * <p>The average value of all weighted quantile losses.</p>
5315
5315
  * @public
5316
5316
  */
5317
- AverageWeightedQuantileLoss?: number;
5317
+ AverageWeightedQuantileLoss?: number | undefined;
5318
5318
  }
5319
5319
  /**
5320
5320
  * <p>The metrics for a time range within the evaluation portion of a dataset. This object is
@@ -5328,17 +5328,17 @@ export interface WindowSummary {
5328
5328
  * <p>The timestamp that defines the start of the window.</p>
5329
5329
  * @public
5330
5330
  */
5331
- TestWindowStart?: Date;
5331
+ TestWindowStart?: Date | undefined;
5332
5332
  /**
5333
5333
  * <p>The timestamp that defines the end of the window.</p>
5334
5334
  * @public
5335
5335
  */
5336
- TestWindowEnd?: Date;
5336
+ TestWindowEnd?: Date | undefined;
5337
5337
  /**
5338
5338
  * <p>The number of data points within the window.</p>
5339
5339
  * @public
5340
5340
  */
5341
- ItemCount?: number;
5341
+ ItemCount?: number | undefined;
5342
5342
  /**
5343
5343
  * <p>The type of evaluation.</p>
5344
5344
  * <ul>
@@ -5353,12 +5353,12 @@ export interface WindowSummary {
5353
5353
  * </ul>
5354
5354
  * @public
5355
5355
  */
5356
- EvaluationType?: EvaluationType;
5356
+ EvaluationType?: EvaluationType | undefined;
5357
5357
  /**
5358
5358
  * <p>Provides metrics used to evaluate the performance of a predictor.</p>
5359
5359
  * @public
5360
5360
  */
5361
- Metrics?: Metrics;
5361
+ Metrics?: Metrics | undefined;
5362
5362
  }
5363
5363
  /**
5364
5364
  * <p>The results of evaluating an algorithm. Returned as part of the <a>GetAccuracyMetrics</a> response.</p>
@@ -5369,14 +5369,14 @@ export interface EvaluationResult {
5369
5369
  * <p>The Amazon Resource Name (ARN) of the algorithm that was evaluated.</p>
5370
5370
  * @public
5371
5371
  */
5372
- AlgorithmArn?: string;
5372
+ AlgorithmArn?: string | undefined;
5373
5373
  /**
5374
5374
  * <p>The array of test windows used for evaluating the algorithm. The
5375
5375
  * <code>NumberOfBacktestWindows</code> from the <a>EvaluationParameters</a> object
5376
5376
  * determines the number of windows in the array.</p>
5377
5377
  * @public
5378
5378
  */
5379
- TestWindows?: WindowSummary[];
5379
+ TestWindows?: WindowSummary[] | undefined;
5380
5380
  }
5381
5381
  /**
5382
5382
  * @public
@@ -5386,12 +5386,12 @@ export interface GetAccuracyMetricsResponse {
5386
5386
  * <p>An array of results from evaluating the predictor.</p>
5387
5387
  * @public
5388
5388
  */
5389
- PredictorEvaluationResults?: EvaluationResult[];
5389
+ PredictorEvaluationResults?: EvaluationResult[] | undefined;
5390
5390
  /**
5391
5391
  * <p>Whether the predictor was created with <a>CreateAutoPredictor</a>.</p>
5392
5392
  * @public
5393
5393
  */
5394
- IsAutoPredictor?: boolean;
5394
+ IsAutoPredictor?: boolean | undefined;
5395
5395
  /**
5396
5396
  * <note>
5397
5397
  * <p> The <code>LatencyOptimized</code> AutoML override strategy is only available in private beta.
@@ -5403,12 +5403,12 @@ export interface GetAccuracyMetricsResponse {
5403
5403
  * <p>This parameter is only valid for predictors trained using AutoML.</p>
5404
5404
  * @public
5405
5405
  */
5406
- AutoMLOverrideStrategy?: AutoMLOverrideStrategy;
5406
+ AutoMLOverrideStrategy?: AutoMLOverrideStrategy | undefined;
5407
5407
  /**
5408
5408
  * <p>The accuracy metric used to optimize the predictor.</p>
5409
5409
  * @public
5410
5410
  */
5411
- OptimizationMetric?: OptimizationMetric;
5411
+ OptimizationMetric?: OptimizationMetric | undefined;
5412
5412
  }
5413
5413
  /**
5414
5414
  * <p>The token is not valid. Tokens expire after 24 hours.</p>
@@ -5417,7 +5417,7 @@ export interface GetAccuracyMetricsResponse {
5417
5417
  export declare class InvalidNextTokenException extends __BaseException {
5418
5418
  readonly name: "InvalidNextTokenException";
5419
5419
  readonly $fault: "client";
5420
- Message?: string;
5420
+ Message?: string | undefined;
5421
5421
  /**
5422
5422
  * @internal
5423
5423
  */
@@ -5433,12 +5433,12 @@ export interface ListDatasetGroupsRequest {
5433
5433
  * request. Tokens expire after 24 hours.</p>
5434
5434
  * @public
5435
5435
  */
5436
- NextToken?: string;
5436
+ NextToken?: string | undefined;
5437
5437
  /**
5438
5438
  * <p>The number of items to return in the response.</p>
5439
5439
  * @public
5440
5440
  */
5441
- MaxResults?: number;
5441
+ MaxResults?: number | undefined;
5442
5442
  }
5443
5443
  /**
5444
5444
  * <p>Provides a summary of the dataset group properties used in the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_ListDatasetGroups.html">ListDatasetGroups</a> operation. To
@@ -5451,24 +5451,24 @@ export interface DatasetGroupSummary {
5451
5451
  * <p>The Amazon Resource Name (ARN) of the dataset group.</p>
5452
5452
  * @public
5453
5453
  */
5454
- DatasetGroupArn?: string;
5454
+ DatasetGroupArn?: string | undefined;
5455
5455
  /**
5456
5456
  * <p>The name of the dataset group.</p>
5457
5457
  * @public
5458
5458
  */
5459
- DatasetGroupName?: string;
5459
+ DatasetGroupName?: string | undefined;
5460
5460
  /**
5461
5461
  * <p>When the dataset group was created.</p>
5462
5462
  * @public
5463
5463
  */
5464
- CreationTime?: Date;
5464
+ CreationTime?: Date | undefined;
5465
5465
  /**
5466
5466
  * <p>When the dataset group was created or last updated from a call to the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_UpdateDatasetGroup.html">UpdateDatasetGroup</a> operation. While the dataset group is being updated,
5467
5467
  * <code>LastModificationTime</code> is the current time of the <code>ListDatasetGroups</code>
5468
5468
  * call.</p>
5469
5469
  * @public
5470
5470
  */
5471
- LastModificationTime?: Date;
5471
+ LastModificationTime?: Date | undefined;
5472
5472
  }
5473
5473
  /**
5474
5474
  * @public
@@ -5478,13 +5478,13 @@ export interface ListDatasetGroupsResponse {
5478
5478
  * <p>An array of objects that summarize each dataset group's properties.</p>
5479
5479
  * @public
5480
5480
  */
5481
- DatasetGroups?: DatasetGroupSummary[];
5481
+ DatasetGroups?: DatasetGroupSummary[] | undefined;
5482
5482
  /**
5483
5483
  * <p>If the response is truncated, Amazon Forecast returns this token. To retrieve the next set of
5484
5484
  * results, use the token in the next request.</p>
5485
5485
  * @public
5486
5486
  */
5487
- NextToken?: string;
5487
+ NextToken?: string | undefined;
5488
5488
  }
5489
5489
  /**
5490
5490
  * @public
@@ -5534,12 +5534,12 @@ export interface ListDatasetImportJobsRequest {
5534
5534
  * request. Tokens expire after 24 hours.</p>
5535
5535
  * @public
5536
5536
  */
5537
- NextToken?: string;
5537
+ NextToken?: string | undefined;
5538
5538
  /**
5539
5539
  * <p>The number of items to return in the response.</p>
5540
5540
  * @public
5541
5541
  */
5542
- MaxResults?: number;
5542
+ MaxResults?: number | undefined;
5543
5543
  /**
5544
5544
  * <p>An array of filters. For each filter, you provide a condition and a match statement. The
5545
5545
  * condition is either <code>IS</code> or <code>IS_NOT</code>, which specifies whether to include
@@ -5572,7 +5572,7 @@ export interface ListDatasetImportJobsRequest {
5572
5572
  * </p>
5573
5573
  * @public
5574
5574
  */
5575
- Filters?: Filter[];
5575
+ Filters?: Filter[] | undefined;
5576
5576
  }
5577
5577
  /**
5578
5578
  * <p>Provides a summary of the dataset import job properties used in the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_ListDatasetImportJobs.html">ListDatasetImportJobs</a> operation. To get the complete set of properties, call the
@@ -5585,19 +5585,19 @@ export interface DatasetImportJobSummary {
5585
5585
  * <p>The Amazon Resource Name (ARN) of the dataset import job.</p>
5586
5586
  * @public
5587
5587
  */
5588
- DatasetImportJobArn?: string;
5588
+ DatasetImportJobArn?: string | undefined;
5589
5589
  /**
5590
5590
  * <p>The name of the dataset import job.</p>
5591
5591
  * @public
5592
5592
  */
5593
- DatasetImportJobName?: string;
5593
+ DatasetImportJobName?: string | undefined;
5594
5594
  /**
5595
5595
  * <p>The location of the training data to import and an Identity and Access Management (IAM) role that Amazon Forecast
5596
5596
  * can assume to access the data. The training data must be stored in an Amazon S3 bucket.</p>
5597
5597
  * <p>If encryption is used, <code>DataSource</code> includes an Key Management Service (KMS) key.</p>
5598
5598
  * @public
5599
5599
  */
5600
- DataSource?: DataSource;
5600
+ DataSource?: DataSource | undefined;
5601
5601
  /**
5602
5602
  * <p>The status of the dataset import job. States include:</p>
5603
5603
  * <ul>
@@ -5626,17 +5626,17 @@ export interface DatasetImportJobSummary {
5626
5626
  * </ul>
5627
5627
  * @public
5628
5628
  */
5629
- Status?: string;
5629
+ Status?: string | undefined;
5630
5630
  /**
5631
5631
  * <p>If an error occurred, an informational message about the error.</p>
5632
5632
  * @public
5633
5633
  */
5634
- Message?: string;
5634
+ Message?: string | undefined;
5635
5635
  /**
5636
5636
  * <p>When the dataset import job was created.</p>
5637
5637
  * @public
5638
5638
  */
5639
- CreationTime?: Date;
5639
+ CreationTime?: Date | undefined;
5640
5640
  /**
5641
5641
  * <p>The last time the resource was modified. The timestamp depends on the status of the
5642
5642
  * job:</p>
@@ -5665,12 +5665,12 @@ export interface DatasetImportJobSummary {
5665
5665
  * </ul>
5666
5666
  * @public
5667
5667
  */
5668
- LastModificationTime?: Date;
5668
+ LastModificationTime?: Date | undefined;
5669
5669
  /**
5670
5670
  * <p>The import mode of the dataset import job, FULL or INCREMENTAL.</p>
5671
5671
  * @public
5672
5672
  */
5673
- ImportMode?: ImportMode;
5673
+ ImportMode?: ImportMode | undefined;
5674
5674
  }
5675
5675
  /**
5676
5676
  * @public
@@ -5680,13 +5680,13 @@ export interface ListDatasetImportJobsResponse {
5680
5680
  * <p>An array of objects that summarize each dataset import job's properties.</p>
5681
5681
  * @public
5682
5682
  */
5683
- DatasetImportJobs?: DatasetImportJobSummary[];
5683
+ DatasetImportJobs?: DatasetImportJobSummary[] | undefined;
5684
5684
  /**
5685
5685
  * <p>If the response is truncated, Amazon Forecast returns this token. To retrieve the next set of
5686
5686
  * results, use the token in the next request.</p>
5687
5687
  * @public
5688
5688
  */
5689
- NextToken?: string;
5689
+ NextToken?: string | undefined;
5690
5690
  }
5691
5691
  /**
5692
5692
  * @public
@@ -5698,12 +5698,12 @@ export interface ListDatasetsRequest {
5698
5698
  * request. Tokens expire after 24 hours.</p>
5699
5699
  * @public
5700
5700
  */
5701
- NextToken?: string;
5701
+ NextToken?: string | undefined;
5702
5702
  /**
5703
5703
  * <p>The number of items to return in the response.</p>
5704
5704
  * @public
5705
5705
  */
5706
- MaxResults?: number;
5706
+ MaxResults?: number | undefined;
5707
5707
  }
5708
5708
  /**
5709
5709
  * <p>Provides a summary of the dataset properties used in the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_ListDatasets.html">ListDatasets</a> operation. To get the
@@ -5716,27 +5716,27 @@ export interface DatasetSummary {
5716
5716
  * <p>The Amazon Resource Name (ARN) of the dataset.</p>
5717
5717
  * @public
5718
5718
  */
5719
- DatasetArn?: string;
5719
+ DatasetArn?: string | undefined;
5720
5720
  /**
5721
5721
  * <p>The name of the dataset.</p>
5722
5722
  * @public
5723
5723
  */
5724
- DatasetName?: string;
5724
+ DatasetName?: string | undefined;
5725
5725
  /**
5726
5726
  * <p>The dataset type.</p>
5727
5727
  * @public
5728
5728
  */
5729
- DatasetType?: DatasetType;
5729
+ DatasetType?: DatasetType | undefined;
5730
5730
  /**
5731
5731
  * <p>The domain associated with the dataset.</p>
5732
5732
  * @public
5733
5733
  */
5734
- Domain?: Domain;
5734
+ Domain?: Domain | undefined;
5735
5735
  /**
5736
5736
  * <p>When the dataset was created.</p>
5737
5737
  * @public
5738
5738
  */
5739
- CreationTime?: Date;
5739
+ CreationTime?: Date | undefined;
5740
5740
  /**
5741
5741
  * <p>When you create a dataset, <code>LastModificationTime</code> is the same as
5742
5742
  * <code>CreationTime</code>. While data is being imported to the dataset,
@@ -5745,7 +5745,7 @@ export interface DatasetSummary {
5745
5745
  * when the import job completed or failed.</p>
5746
5746
  * @public
5747
5747
  */
5748
- LastModificationTime?: Date;
5748
+ LastModificationTime?: Date | undefined;
5749
5749
  }
5750
5750
  /**
5751
5751
  * @public
@@ -5755,13 +5755,13 @@ export interface ListDatasetsResponse {
5755
5755
  * <p>An array of objects that summarize each dataset's properties.</p>
5756
5756
  * @public
5757
5757
  */
5758
- Datasets?: DatasetSummary[];
5758
+ Datasets?: DatasetSummary[] | undefined;
5759
5759
  /**
5760
5760
  * <p>If the response is truncated, Amazon Forecast returns this token. To retrieve the next set of
5761
5761
  * results, use the token in the next request.</p>
5762
5762
  * @public
5763
5763
  */
5764
- NextToken?: string;
5764
+ NextToken?: string | undefined;
5765
5765
  }
5766
5766
  /**
5767
5767
  * @public
@@ -5773,12 +5773,12 @@ export interface ListExplainabilitiesRequest {
5773
5773
  * Tokens expire after 24 hours.</p>
5774
5774
  * @public
5775
5775
  */
5776
- NextToken?: string;
5776
+ NextToken?: string | undefined;
5777
5777
  /**
5778
5778
  * <p>The number of items returned in the response.</p>
5779
5779
  * @public
5780
5780
  */
5781
- MaxResults?: number;
5781
+ MaxResults?: number | undefined;
5782
5782
  /**
5783
5783
  * <p>An array of filters. For each filter, provide a condition and a match statement. The
5784
5784
  * condition is either <code>IS</code> or <code>IS_NOT</code>, which specifies whether to
@@ -5805,7 +5805,7 @@ export interface ListExplainabilitiesRequest {
5805
5805
  * </ul>
5806
5806
  * @public
5807
5807
  */
5808
- Filters?: Filter[];
5808
+ Filters?: Filter[] | undefined;
5809
5809
  }
5810
5810
  /**
5811
5811
  * <p>Provides a summary of the Explainability properties used in the <a>ListExplainabilities</a> operation. To get a complete set of properties,
@@ -5818,24 +5818,24 @@ export interface ExplainabilitySummary {
5818
5818
  * <p>The Amazon Resource Name (ARN) of the Explainability.</p>
5819
5819
  * @public
5820
5820
  */
5821
- ExplainabilityArn?: string;
5821
+ ExplainabilityArn?: string | undefined;
5822
5822
  /**
5823
5823
  * <p>The name of the Explainability.</p>
5824
5824
  * @public
5825
5825
  */
5826
- ExplainabilityName?: string;
5826
+ ExplainabilityName?: string | undefined;
5827
5827
  /**
5828
5828
  * <p>The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the
5829
5829
  * Explainability.</p>
5830
5830
  * @public
5831
5831
  */
5832
- ResourceArn?: string;
5832
+ ResourceArn?: string | undefined;
5833
5833
  /**
5834
5834
  * <p>The configuration settings that define the granularity of time series and time points
5835
5835
  * for the Explainability.</p>
5836
5836
  * @public
5837
5837
  */
5838
- ExplainabilityConfig?: ExplainabilityConfig;
5838
+ ExplainabilityConfig?: ExplainabilityConfig | undefined;
5839
5839
  /**
5840
5840
  * <p>The status of the Explainability. States include: </p>
5841
5841
  * <ul>
@@ -5864,18 +5864,18 @@ export interface ExplainabilitySummary {
5864
5864
  * </ul>
5865
5865
  * @public
5866
5866
  */
5867
- Status?: string;
5867
+ Status?: string | undefined;
5868
5868
  /**
5869
5869
  * <p>Information about any errors that may have occurred during the Explainability creation
5870
5870
  * process.</p>
5871
5871
  * @public
5872
5872
  */
5873
- Message?: string;
5873
+ Message?: string | undefined;
5874
5874
  /**
5875
5875
  * <p>When the Explainability was created.</p>
5876
5876
  * @public
5877
5877
  */
5878
- CreationTime?: Date;
5878
+ CreationTime?: Date | undefined;
5879
5879
  /**
5880
5880
  * <p>The last time the resource was modified. The timestamp depends on the status of the
5881
5881
  * job:</p>
@@ -5904,7 +5904,7 @@ export interface ExplainabilitySummary {
5904
5904
  * </ul>
5905
5905
  * @public
5906
5906
  */
5907
- LastModificationTime?: Date;
5907
+ LastModificationTime?: Date | undefined;
5908
5908
  }
5909
5909
  /**
5910
5910
  * @public
@@ -5915,13 +5915,13 @@ export interface ListExplainabilitiesResponse {
5915
5915
  * resource.</p>
5916
5916
  * @public
5917
5917
  */
5918
- Explainabilities?: ExplainabilitySummary[];
5918
+ Explainabilities?: ExplainabilitySummary[] | undefined;
5919
5919
  /**
5920
5920
  * <p>Returns this token if the response is truncated. To retrieve the next set of results,
5921
5921
  * use the token in the next request.</p>
5922
5922
  * @public
5923
5923
  */
5924
- NextToken?: string;
5924
+ NextToken?: string | undefined;
5925
5925
  }
5926
5926
  /**
5927
5927
  * @public
@@ -5933,12 +5933,12 @@ export interface ListExplainabilityExportsRequest {
5933
5933
  * Tokens expire after 24 hours.</p>
5934
5934
  * @public
5935
5935
  */
5936
- NextToken?: string;
5936
+ NextToken?: string | undefined;
5937
5937
  /**
5938
5938
  * <p>The number of items to return in the response.</p>
5939
5939
  * @public
5940
5940
  */
5941
- MaxResults?: number;
5941
+ MaxResults?: number | undefined;
5942
5942
  /**
5943
5943
  * <p>An array of filters. For each filter, provide a condition and a match statement. The
5944
5944
  * condition is either <code>IS</code> or <code>IS_NOT</code>, which specifies whether to
@@ -5965,7 +5965,7 @@ export interface ListExplainabilityExportsRequest {
5965
5965
  * </ul>
5966
5966
  * @public
5967
5967
  */
5968
- Filters?: Filter[];
5968
+ Filters?: Filter[] | undefined;
5969
5969
  }
5970
5970
  /**
5971
5971
  * <p>Provides a summary of the Explainability export properties used in the <a>ListExplainabilityExports</a> operation. To get a complete set of
@@ -5978,18 +5978,18 @@ export interface ExplainabilityExportSummary {
5978
5978
  * <p>The Amazon Resource Name (ARN) of the Explainability export.</p>
5979
5979
  * @public
5980
5980
  */
5981
- ExplainabilityExportArn?: string;
5981
+ ExplainabilityExportArn?: string | undefined;
5982
5982
  /**
5983
5983
  * <p>The name of the Explainability export</p>
5984
5984
  * @public
5985
5985
  */
5986
- ExplainabilityExportName?: string;
5986
+ ExplainabilityExportName?: string | undefined;
5987
5987
  /**
5988
5988
  * <p>The destination for an export job. Provide an S3 path, an Identity and Access Management (IAM) role that allows Amazon Forecast
5989
5989
  * to access the location, and an Key Management Service (KMS) key (optional). </p>
5990
5990
  * @public
5991
5991
  */
5992
- Destination?: DataDestination;
5992
+ Destination?: DataDestination | undefined;
5993
5993
  /**
5994
5994
  * <p>The status of the Explainability export. States include: </p>
5995
5995
  * <ul>
@@ -6018,18 +6018,18 @@ export interface ExplainabilityExportSummary {
6018
6018
  * </ul>
6019
6019
  * @public
6020
6020
  */
6021
- Status?: string;
6021
+ Status?: string | undefined;
6022
6022
  /**
6023
6023
  * <p>Information about any errors that may have occurred during the Explainability
6024
6024
  * export.</p>
6025
6025
  * @public
6026
6026
  */
6027
- Message?: string;
6027
+ Message?: string | undefined;
6028
6028
  /**
6029
6029
  * <p>When the Explainability was created.</p>
6030
6030
  * @public
6031
6031
  */
6032
- CreationTime?: Date;
6032
+ CreationTime?: Date | undefined;
6033
6033
  /**
6034
6034
  * <p>The last time the resource was modified. The timestamp depends on the status of the
6035
6035
  * job:</p>
@@ -6058,7 +6058,7 @@ export interface ExplainabilityExportSummary {
6058
6058
  * </ul>
6059
6059
  * @public
6060
6060
  */
6061
- LastModificationTime?: Date;
6061
+ LastModificationTime?: Date | undefined;
6062
6062
  }
6063
6063
  /**
6064
6064
  * @public
@@ -6069,13 +6069,13 @@ export interface ListExplainabilityExportsResponse {
6069
6069
  * export.</p>
6070
6070
  * @public
6071
6071
  */
6072
- ExplainabilityExports?: ExplainabilityExportSummary[];
6072
+ ExplainabilityExports?: ExplainabilityExportSummary[] | undefined;
6073
6073
  /**
6074
6074
  * <p>Returns this token if the response is truncated. To retrieve the next set of results,
6075
6075
  * use the token in the next request.</p>
6076
6076
  * @public
6077
6077
  */
6078
- NextToken?: string;
6078
+ NextToken?: string | undefined;
6079
6079
  }
6080
6080
  /**
6081
6081
  * @public
@@ -6087,12 +6087,12 @@ export interface ListForecastExportJobsRequest {
6087
6087
  * request. Tokens expire after 24 hours.</p>
6088
6088
  * @public
6089
6089
  */
6090
- NextToken?: string;
6090
+ NextToken?: string | undefined;
6091
6091
  /**
6092
6092
  * <p>The number of items to return in the response.</p>
6093
6093
  * @public
6094
6094
  */
6095
- MaxResults?: number;
6095
+ MaxResults?: number | undefined;
6096
6096
  /**
6097
6097
  * <p>An array of filters. For each filter, you provide a condition and a match statement. The
6098
6098
  * condition is either <code>IS</code> or <code>IS_NOT</code>, which specifies whether to include
@@ -6127,7 +6127,7 @@ export interface ListForecastExportJobsRequest {
6127
6127
  * </p>
6128
6128
  * @public
6129
6129
  */
6130
- Filters?: Filter[];
6130
+ Filters?: Filter[] | undefined;
6131
6131
  }
6132
6132
  /**
6133
6133
  * <p>Provides a summary of the forecast export job properties used in the <a>ListForecastExportJobs</a> operation. To get the complete set of properties, call
@@ -6140,17 +6140,17 @@ export interface ForecastExportJobSummary {
6140
6140
  * <p>The Amazon Resource Name (ARN) of the forecast export job.</p>
6141
6141
  * @public
6142
6142
  */
6143
- ForecastExportJobArn?: string;
6143
+ ForecastExportJobArn?: string | undefined;
6144
6144
  /**
6145
6145
  * <p>The name of the forecast export job.</p>
6146
6146
  * @public
6147
6147
  */
6148
- ForecastExportJobName?: string;
6148
+ ForecastExportJobName?: string | undefined;
6149
6149
  /**
6150
6150
  * <p>The path to the Amazon Simple Storage Service (Amazon S3) bucket where the forecast is exported.</p>
6151
6151
  * @public
6152
6152
  */
6153
- Destination?: DataDestination;
6153
+ Destination?: DataDestination | undefined;
6154
6154
  /**
6155
6155
  * <p>The status of the forecast export job. States include:</p>
6156
6156
  * <ul>
@@ -6183,17 +6183,17 @@ export interface ForecastExportJobSummary {
6183
6183
  * </note>
6184
6184
  * @public
6185
6185
  */
6186
- Status?: string;
6186
+ Status?: string | undefined;
6187
6187
  /**
6188
6188
  * <p>If an error occurred, an informational message about the error.</p>
6189
6189
  * @public
6190
6190
  */
6191
- Message?: string;
6191
+ Message?: string | undefined;
6192
6192
  /**
6193
6193
  * <p>When the forecast export job was created.</p>
6194
6194
  * @public
6195
6195
  */
6196
- CreationTime?: Date;
6196
+ CreationTime?: Date | undefined;
6197
6197
  /**
6198
6198
  * <p>The last time the resource was modified. The timestamp depends on the status of the job:</p>
6199
6199
  * <ul>
@@ -6221,7 +6221,7 @@ export interface ForecastExportJobSummary {
6221
6221
  * </ul>
6222
6222
  * @public
6223
6223
  */
6224
- LastModificationTime?: Date;
6224
+ LastModificationTime?: Date | undefined;
6225
6225
  }
6226
6226
  /**
6227
6227
  * @public
@@ -6231,13 +6231,13 @@ export interface ListForecastExportJobsResponse {
6231
6231
  * <p>An array of objects that summarize each export job's properties.</p>
6232
6232
  * @public
6233
6233
  */
6234
- ForecastExportJobs?: ForecastExportJobSummary[];
6234
+ ForecastExportJobs?: ForecastExportJobSummary[] | undefined;
6235
6235
  /**
6236
6236
  * <p>If the response is truncated, Amazon Forecast returns this token. To retrieve the next set of
6237
6237
  * results, use the token in the next request.</p>
6238
6238
  * @public
6239
6239
  */
6240
- NextToken?: string;
6240
+ NextToken?: string | undefined;
6241
6241
  }
6242
6242
  /**
6243
6243
  * @public
@@ -6249,12 +6249,12 @@ export interface ListForecastsRequest {
6249
6249
  * request. Tokens expire after 24 hours.</p>
6250
6250
  * @public
6251
6251
  */
6252
- NextToken?: string;
6252
+ NextToken?: string | undefined;
6253
6253
  /**
6254
6254
  * <p>The number of items to return in the response.</p>
6255
6255
  * @public
6256
6256
  */
6257
- MaxResults?: number;
6257
+ MaxResults?: number | undefined;
6258
6258
  /**
6259
6259
  * <p>An array of filters. For each filter, you provide a condition and a match statement. The
6260
6260
  * condition is either <code>IS</code> or <code>IS_NOT</code>, which specifies whether to include
@@ -6287,7 +6287,7 @@ export interface ListForecastsRequest {
6287
6287
  * </p>
6288
6288
  * @public
6289
6289
  */
6290
- Filters?: Filter[];
6290
+ Filters?: Filter[] | undefined;
6291
6291
  }
6292
6292
  /**
6293
6293
  * <p>Provides a summary of the forecast properties used in the <a>ListForecasts</a>
@@ -6300,28 +6300,28 @@ export interface ForecastSummary {
6300
6300
  * <p>The ARN of the forecast.</p>
6301
6301
  * @public
6302
6302
  */
6303
- ForecastArn?: string;
6303
+ ForecastArn?: string | undefined;
6304
6304
  /**
6305
6305
  * <p>The name of the forecast.</p>
6306
6306
  * @public
6307
6307
  */
6308
- ForecastName?: string;
6308
+ ForecastName?: string | undefined;
6309
6309
  /**
6310
6310
  * <p>The ARN of the predictor used to generate the forecast.</p>
6311
6311
  * @public
6312
6312
  */
6313
- PredictorArn?: string;
6313
+ PredictorArn?: string | undefined;
6314
6314
  /**
6315
6315
  * <p>Whether the Forecast was created from an AutoPredictor.</p>
6316
6316
  * @public
6317
6317
  */
6318
- CreatedUsingAutoPredictor?: boolean;
6318
+ CreatedUsingAutoPredictor?: boolean | undefined;
6319
6319
  /**
6320
6320
  * <p>The Amazon Resource Name (ARN) of the dataset group that provided the data used to train
6321
6321
  * the predictor.</p>
6322
6322
  * @public
6323
6323
  */
6324
- DatasetGroupArn?: string;
6324
+ DatasetGroupArn?: string | undefined;
6325
6325
  /**
6326
6326
  * <p>The status of the forecast. States include:</p>
6327
6327
  * <ul>
@@ -6354,17 +6354,17 @@ export interface ForecastSummary {
6354
6354
  * </note>
6355
6355
  * @public
6356
6356
  */
6357
- Status?: string;
6357
+ Status?: string | undefined;
6358
6358
  /**
6359
6359
  * <p>If an error occurred, an informational message about the error.</p>
6360
6360
  * @public
6361
6361
  */
6362
- Message?: string;
6362
+ Message?: string | undefined;
6363
6363
  /**
6364
6364
  * <p>When the forecast creation task was created.</p>
6365
6365
  * @public
6366
6366
  */
6367
- CreationTime?: Date;
6367
+ CreationTime?: Date | undefined;
6368
6368
  /**
6369
6369
  * <p>The last time the resource was modified. The timestamp depends on the status of the job:</p>
6370
6370
  * <ul>
@@ -6392,7 +6392,7 @@ export interface ForecastSummary {
6392
6392
  * </ul>
6393
6393
  * @public
6394
6394
  */
6395
- LastModificationTime?: Date;
6395
+ LastModificationTime?: Date | undefined;
6396
6396
  }
6397
6397
  /**
6398
6398
  * @public
@@ -6402,13 +6402,13 @@ export interface ListForecastsResponse {
6402
6402
  * <p>An array of objects that summarize each forecast's properties.</p>
6403
6403
  * @public
6404
6404
  */
6405
- Forecasts?: ForecastSummary[];
6405
+ Forecasts?: ForecastSummary[] | undefined;
6406
6406
  /**
6407
6407
  * <p>If the response is truncated, Amazon Forecast returns this token. To retrieve the next set
6408
6408
  * of results, use the token in the next request.</p>
6409
6409
  * @public
6410
6410
  */
6411
- NextToken?: string;
6411
+ NextToken?: string | undefined;
6412
6412
  }
6413
6413
  /**
6414
6414
  * @public
@@ -6420,12 +6420,12 @@ export interface ListMonitorEvaluationsRequest {
6420
6420
  * request. Tokens expire after 24 hours.</p>
6421
6421
  * @public
6422
6422
  */
6423
- NextToken?: string;
6423
+ NextToken?: string | undefined;
6424
6424
  /**
6425
6425
  * <p>The maximum number of monitoring results to return.</p>
6426
6426
  * @public
6427
6427
  */
6428
- MaxResults?: number;
6428
+ MaxResults?: number | undefined;
6429
6429
  /**
6430
6430
  * <p>The Amazon Resource Name (ARN) of the monitor resource to get results from.</p>
6431
6431
  * @public
@@ -6461,7 +6461,7 @@ export interface ListMonitorEvaluationsRequest {
6461
6461
  * </p>
6462
6462
  * @public
6463
6463
  */
6464
- Filters?: Filter[];
6464
+ Filters?: Filter[] | undefined;
6465
6465
  }
6466
6466
  /**
6467
6467
  * <p>An individual metric Forecast calculated when monitoring predictor usage. You can compare the value for this metric to the metric's value in the <a>Baseline</a> to see how your predictor's performance is changing.</p>
@@ -6474,12 +6474,12 @@ export interface MetricResult {
6474
6474
  * <p>The name of the metric.</p>
6475
6475
  * @public
6476
6476
  */
6477
- MetricName?: string;
6477
+ MetricName?: string | undefined;
6478
6478
  /**
6479
6479
  * <p>The value for the metric.</p>
6480
6480
  * @public
6481
6481
  */
6482
- MetricValue?: number;
6482
+ MetricValue?: number | undefined;
6483
6483
  }
6484
6484
  /**
6485
6485
  * <p>The source of the data the monitor used during the evaluation.</p>
@@ -6490,17 +6490,17 @@ export interface MonitorDataSource {
6490
6490
  * <p>The Amazon Resource Name (ARN) of the dataset import job used to import the data that initiated the monitor evaluation.</p>
6491
6491
  * @public
6492
6492
  */
6493
- DatasetImportJobArn?: string;
6493
+ DatasetImportJobArn?: string | undefined;
6494
6494
  /**
6495
6495
  * <p>The Amazon Resource Name (ARN) of the forecast the monitor used during the evaluation.</p>
6496
6496
  * @public
6497
6497
  */
6498
- ForecastArn?: string;
6498
+ ForecastArn?: string | undefined;
6499
6499
  /**
6500
6500
  * <p>The Amazon Resource Name (ARN) of the predictor resource you are monitoring.</p>
6501
6501
  * @public
6502
6502
  */
6503
- PredictorArn?: string;
6503
+ PredictorArn?: string | undefined;
6504
6504
  }
6505
6505
  /**
6506
6506
  * <p>Provides details about a predictor event, such as a retraining.</p>
@@ -6511,12 +6511,12 @@ export interface PredictorEvent {
6511
6511
  * <p>The type of event. For example, <code>Retrain</code>. A retraining event denotes the timepoint when a predictor was retrained. Any monitor results from before the <code>Datetime</code> are from the previous predictor. Any new metrics are for the newly retrained predictor.</p>
6512
6512
  * @public
6513
6513
  */
6514
- Detail?: string;
6514
+ Detail?: string | undefined;
6515
6515
  /**
6516
6516
  * <p>The timestamp for when the event occurred.</p>
6517
6517
  * @public
6518
6518
  */
6519
- Datetime?: Date;
6519
+ Datetime?: Date | undefined;
6520
6520
  }
6521
6521
  /**
6522
6522
  * <p>Describes the results of a monitor evaluation.</p>
@@ -6527,57 +6527,57 @@ export interface PredictorMonitorEvaluation {
6527
6527
  * <p>The Amazon Resource Name (ARN) of the resource to monitor.</p>
6528
6528
  * @public
6529
6529
  */
6530
- ResourceArn?: string;
6530
+ ResourceArn?: string | undefined;
6531
6531
  /**
6532
6532
  * <p>The Amazon Resource Name (ARN) of the monitor resource.</p>
6533
6533
  * @public
6534
6534
  */
6535
- MonitorArn?: string;
6535
+ MonitorArn?: string | undefined;
6536
6536
  /**
6537
6537
  * <p>The timestamp that indicates when the monitor evaluation was started. </p>
6538
6538
  * @public
6539
6539
  */
6540
- EvaluationTime?: Date;
6540
+ EvaluationTime?: Date | undefined;
6541
6541
  /**
6542
6542
  * <p>The status of the monitor evaluation. The state can be <code>SUCCESS</code> or <code>FAILURE</code>.</p>
6543
6543
  * @public
6544
6544
  */
6545
- EvaluationState?: string;
6545
+ EvaluationState?: string | undefined;
6546
6546
  /**
6547
6547
  * <p>The timestamp that indicates the start of the window that is used for monitor evaluation.</p>
6548
6548
  * @public
6549
6549
  */
6550
- WindowStartDatetime?: Date;
6550
+ WindowStartDatetime?: Date | undefined;
6551
6551
  /**
6552
6552
  * <p>The timestamp that indicates the end of the window that is used for monitor evaluation.</p>
6553
6553
  * @public
6554
6554
  */
6555
- WindowEndDatetime?: Date;
6555
+ WindowEndDatetime?: Date | undefined;
6556
6556
  /**
6557
6557
  * <p>Provides details about a predictor event, such as a retraining.</p>
6558
6558
  * @public
6559
6559
  */
6560
- PredictorEvent?: PredictorEvent;
6560
+ PredictorEvent?: PredictorEvent | undefined;
6561
6561
  /**
6562
6562
  * <p>The source of the data the monitor resource used during the evaluation.</p>
6563
6563
  * @public
6564
6564
  */
6565
- MonitorDataSource?: MonitorDataSource;
6565
+ MonitorDataSource?: MonitorDataSource | undefined;
6566
6566
  /**
6567
6567
  * <p>A list of metrics Forecast calculated when monitoring a predictor. You can compare the value for each metric in the list to the metric's value in the <a>Baseline</a> to see how your predictor's performance is changing.</p>
6568
6568
  * @public
6569
6569
  */
6570
- MetricResults?: MetricResult[];
6570
+ MetricResults?: MetricResult[] | undefined;
6571
6571
  /**
6572
6572
  * <p>The number of items considered during the evaluation.</p>
6573
6573
  * @public
6574
6574
  */
6575
- NumItemsEvaluated?: number;
6575
+ NumItemsEvaluated?: number | undefined;
6576
6576
  /**
6577
6577
  * <p>Information about any errors that may have occurred during the monitor evaluation.</p>
6578
6578
  * @public
6579
6579
  */
6580
- Message?: string;
6580
+ Message?: string | undefined;
6581
6581
  }
6582
6582
  /**
6583
6583
  * @public
@@ -6588,13 +6588,13 @@ export interface ListMonitorEvaluationsResponse {
6588
6588
  * results, use the token in the next request. Tokens expire after 24 hours.</p>
6589
6589
  * @public
6590
6590
  */
6591
- NextToken?: string;
6591
+ NextToken?: string | undefined;
6592
6592
  /**
6593
6593
  * <p>The monitoring results and predictor events collected by the monitor resource during different windows of time.</p>
6594
6594
  * <p>For information about monitoring see <a href="https://docs.aws.amazon.com/forecast/latest/dg/predictor-monitoring-results.html">Viewing Monitoring Results</a>. For more information about retrieving monitoring results see <a href="https://docs.aws.amazon.com/forecast/latest/dg/predictor-monitoring-results.html">Viewing Monitoring Results</a>.</p>
6595
6595
  * @public
6596
6596
  */
6597
- PredictorMonitorEvaluations?: PredictorMonitorEvaluation[];
6597
+ PredictorMonitorEvaluations?: PredictorMonitorEvaluation[] | undefined;
6598
6598
  }
6599
6599
  /**
6600
6600
  * @public
@@ -6606,12 +6606,12 @@ export interface ListMonitorsRequest {
6606
6606
  * request. Tokens expire after 24 hours.</p>
6607
6607
  * @public
6608
6608
  */
6609
- NextToken?: string;
6609
+ NextToken?: string | undefined;
6610
6610
  /**
6611
6611
  * <p>The maximum number of monitors to include in the response.</p>
6612
6612
  * @public
6613
6613
  */
6614
- MaxResults?: number;
6614
+ MaxResults?: number | undefined;
6615
6615
  /**
6616
6616
  * <p>An array of filters. For each filter, provide a condition and a match statement. The
6617
6617
  * condition is either <code>IS</code> or <code>IS_NOT</code>, which specifies whether to
@@ -6642,7 +6642,7 @@ export interface ListMonitorsRequest {
6642
6642
  * </p>
6643
6643
  * @public
6644
6644
  */
6645
- Filters?: Filter[];
6645
+ Filters?: Filter[] | undefined;
6646
6646
  }
6647
6647
  /**
6648
6648
  * <p>Provides a summary of the monitor properties used in the <a>ListMonitors</a> operation. To get a complete set of properties,
@@ -6655,17 +6655,17 @@ export interface MonitorSummary {
6655
6655
  * <p>The Amazon Resource Name (ARN) of the monitor resource.</p>
6656
6656
  * @public
6657
6657
  */
6658
- MonitorArn?: string;
6658
+ MonitorArn?: string | undefined;
6659
6659
  /**
6660
6660
  * <p>The name of the monitor resource.</p>
6661
6661
  * @public
6662
6662
  */
6663
- MonitorName?: string;
6663
+ MonitorName?: string | undefined;
6664
6664
  /**
6665
6665
  * <p>The Amazon Resource Name (ARN) of the predictor being monitored.</p>
6666
6666
  * @public
6667
6667
  */
6668
- ResourceArn?: string;
6668
+ ResourceArn?: string | undefined;
6669
6669
  /**
6670
6670
  * <p>The status of the monitor. States include:</p>
6671
6671
  * <ul>
@@ -6697,12 +6697,12 @@ export interface MonitorSummary {
6697
6697
  * </ul>
6698
6698
  * @public
6699
6699
  */
6700
- Status?: string;
6700
+ Status?: string | undefined;
6701
6701
  /**
6702
6702
  * <p>When the monitor resource was created.</p>
6703
6703
  * @public
6704
6704
  */
6705
- CreationTime?: Date;
6705
+ CreationTime?: Date | undefined;
6706
6706
  /**
6707
6707
  * <p>The last time the monitor resource was modified. The timestamp depends on the status of the
6708
6708
  * job:</p>
@@ -6727,7 +6727,7 @@ export interface MonitorSummary {
6727
6727
  * </ul>
6728
6728
  * @public
6729
6729
  */
6730
- LastModificationTime?: Date;
6730
+ LastModificationTime?: Date | undefined;
6731
6731
  }
6732
6732
  /**
6733
6733
  * @public
@@ -6737,13 +6737,13 @@ export interface ListMonitorsResponse {
6737
6737
  * <p>An array of objects that summarize each monitor's properties.</p>
6738
6738
  * @public
6739
6739
  */
6740
- Monitors?: MonitorSummary[];
6740
+ Monitors?: MonitorSummary[] | undefined;
6741
6741
  /**
6742
6742
  * <p>If the response is truncated, Amazon Forecast returns this token. To retrieve the next set of
6743
6743
  * results, use the token in the next request.</p>
6744
6744
  * @public
6745
6745
  */
6746
- NextToken?: string;
6746
+ NextToken?: string | undefined;
6747
6747
  }
6748
6748
  /**
6749
6749
  * @public
@@ -6755,12 +6755,12 @@ export interface ListPredictorBacktestExportJobsRequest {
6755
6755
  * Tokens expire after 24 hours.</p>
6756
6756
  * @public
6757
6757
  */
6758
- NextToken?: string;
6758
+ NextToken?: string | undefined;
6759
6759
  /**
6760
6760
  * <p>The number of items to return in the response.</p>
6761
6761
  * @public
6762
6762
  */
6763
- MaxResults?: number;
6763
+ MaxResults?: number | undefined;
6764
6764
  /**
6765
6765
  * <p>An array of filters. For each filter, provide a condition and a match statement. The
6766
6766
  * condition is either <code>IS</code> or <code>IS_NOT</code>, which specifies whether to
@@ -6789,7 +6789,7 @@ export interface ListPredictorBacktestExportJobsRequest {
6789
6789
  * </ul>
6790
6790
  * @public
6791
6791
  */
6792
- Filters?: Filter[];
6792
+ Filters?: Filter[] | undefined;
6793
6793
  }
6794
6794
  /**
6795
6795
  * <p>Provides a summary of the predictor backtest export job properties used in the <a>ListPredictorBacktestExportJobs</a> operation. To get a complete set of
@@ -6802,18 +6802,18 @@ export interface PredictorBacktestExportJobSummary {
6802
6802
  * <p>The Amazon Resource Name (ARN) of the predictor backtest export job.</p>
6803
6803
  * @public
6804
6804
  */
6805
- PredictorBacktestExportJobArn?: string;
6805
+ PredictorBacktestExportJobArn?: string | undefined;
6806
6806
  /**
6807
6807
  * <p>The name of the predictor backtest export job.</p>
6808
6808
  * @public
6809
6809
  */
6810
- PredictorBacktestExportJobName?: string;
6810
+ PredictorBacktestExportJobName?: string | undefined;
6811
6811
  /**
6812
6812
  * <p>The destination for an export job. Provide an S3 path, an Identity and Access Management (IAM) role that allows Amazon Forecast
6813
6813
  * to access the location, and an Key Management Service (KMS) key (optional). </p>
6814
6814
  * @public
6815
6815
  */
6816
- Destination?: DataDestination;
6816
+ Destination?: DataDestination | undefined;
6817
6817
  /**
6818
6818
  * <p>The status of the predictor backtest export job. States include: </p>
6819
6819
  * <ul>
@@ -6842,17 +6842,17 @@ export interface PredictorBacktestExportJobSummary {
6842
6842
  * </ul>
6843
6843
  * @public
6844
6844
  */
6845
- Status?: string;
6845
+ Status?: string | undefined;
6846
6846
  /**
6847
6847
  * <p>Information about any errors that may have occurred during the backtest export.</p>
6848
6848
  * @public
6849
6849
  */
6850
- Message?: string;
6850
+ Message?: string | undefined;
6851
6851
  /**
6852
6852
  * <p>When the predictor backtest export job was created.</p>
6853
6853
  * @public
6854
6854
  */
6855
- CreationTime?: Date;
6855
+ CreationTime?: Date | undefined;
6856
6856
  /**
6857
6857
  * <p>The last time the resource was modified. The timestamp depends on the status of the
6858
6858
  * job:</p>
@@ -6881,7 +6881,7 @@ export interface PredictorBacktestExportJobSummary {
6881
6881
  * </ul>
6882
6882
  * @public
6883
6883
  */
6884
- LastModificationTime?: Date;
6884
+ LastModificationTime?: Date | undefined;
6885
6885
  }
6886
6886
  /**
6887
6887
  * @public
@@ -6892,13 +6892,13 @@ export interface ListPredictorBacktestExportJobsResponse {
6892
6892
  * job.</p>
6893
6893
  * @public
6894
6894
  */
6895
- PredictorBacktestExportJobs?: PredictorBacktestExportJobSummary[];
6895
+ PredictorBacktestExportJobs?: PredictorBacktestExportJobSummary[] | undefined;
6896
6896
  /**
6897
6897
  * <p>Returns this token if the response is truncated. To retrieve the next set of results,
6898
6898
  * use the token in the next request.</p>
6899
6899
  * @public
6900
6900
  */
6901
- NextToken?: string;
6901
+ NextToken?: string | undefined;
6902
6902
  }
6903
6903
  /**
6904
6904
  * @public
@@ -6910,12 +6910,12 @@ export interface ListPredictorsRequest {
6910
6910
  * request. Tokens expire after 24 hours.</p>
6911
6911
  * @public
6912
6912
  */
6913
- NextToken?: string;
6913
+ NextToken?: string | undefined;
6914
6914
  /**
6915
6915
  * <p>The number of items to return in the response.</p>
6916
6916
  * @public
6917
6917
  */
6918
- MaxResults?: number;
6918
+ MaxResults?: number | undefined;
6919
6919
  /**
6920
6920
  * <p>An array of filters. For each filter, you provide a condition and a match statement. The
6921
6921
  * condition is either <code>IS</code> or <code>IS_NOT</code>, which specifies whether to include
@@ -6948,7 +6948,7 @@ export interface ListPredictorsRequest {
6948
6948
  * </p>
6949
6949
  * @public
6950
6950
  */
6951
- Filters?: Filter[];
6951
+ Filters?: Filter[] | undefined;
6952
6952
  }
6953
6953
  /**
6954
6954
  * <p>Provides a summary of the predictor properties that are used in the <a>ListPredictors</a> operation. To get the complete set of properties, call the <a>DescribePredictor</a> operation, and provide the listed
@@ -6960,29 +6960,29 @@ export interface PredictorSummary {
6960
6960
  * <p>The ARN of the predictor.</p>
6961
6961
  * @public
6962
6962
  */
6963
- PredictorArn?: string;
6963
+ PredictorArn?: string | undefined;
6964
6964
  /**
6965
6965
  * <p>The name of the predictor.</p>
6966
6966
  * @public
6967
6967
  */
6968
- PredictorName?: string;
6968
+ PredictorName?: string | undefined;
6969
6969
  /**
6970
6970
  * <p>The Amazon Resource Name (ARN) of the dataset group that contains the data used to train
6971
6971
  * the predictor.</p>
6972
6972
  * @public
6973
6973
  */
6974
- DatasetGroupArn?: string;
6974
+ DatasetGroupArn?: string | undefined;
6975
6975
  /**
6976
6976
  * <p>Whether AutoPredictor was used to create the predictor.</p>
6977
6977
  * @public
6978
6978
  */
6979
- IsAutoPredictor?: boolean;
6979
+ IsAutoPredictor?: boolean | undefined;
6980
6980
  /**
6981
6981
  * <p>A summary of the reference predictor used if the predictor was retrained or
6982
6982
  * upgraded.</p>
6983
6983
  * @public
6984
6984
  */
6985
- ReferencePredictorSummary?: ReferencePredictorSummary;
6985
+ ReferencePredictorSummary?: ReferencePredictorSummary | undefined;
6986
6986
  /**
6987
6987
  * <p>The status of the predictor. States include:</p>
6988
6988
  * <ul>
@@ -7015,17 +7015,17 @@ export interface PredictorSummary {
7015
7015
  * </note>
7016
7016
  * @public
7017
7017
  */
7018
- Status?: string;
7018
+ Status?: string | undefined;
7019
7019
  /**
7020
7020
  * <p>If an error occurred, an informational message about the error.</p>
7021
7021
  * @public
7022
7022
  */
7023
- Message?: string;
7023
+ Message?: string | undefined;
7024
7024
  /**
7025
7025
  * <p>When the model training task was created.</p>
7026
7026
  * @public
7027
7027
  */
7028
- CreationTime?: Date;
7028
+ CreationTime?: Date | undefined;
7029
7029
  /**
7030
7030
  * <p>The last time the resource was modified. The timestamp depends on the status of the
7031
7031
  * job:</p>
@@ -7054,7 +7054,7 @@ export interface PredictorSummary {
7054
7054
  * </ul>
7055
7055
  * @public
7056
7056
  */
7057
- LastModificationTime?: Date;
7057
+ LastModificationTime?: Date | undefined;
7058
7058
  }
7059
7059
  /**
7060
7060
  * @public
@@ -7064,13 +7064,13 @@ export interface ListPredictorsResponse {
7064
7064
  * <p>An array of objects that summarize each predictor's properties.</p>
7065
7065
  * @public
7066
7066
  */
7067
- Predictors?: PredictorSummary[];
7067
+ Predictors?: PredictorSummary[] | undefined;
7068
7068
  /**
7069
7069
  * <p>If the response is truncated, Amazon Forecast returns this token. To retrieve the next set of
7070
7070
  * results, use the token in the next request.</p>
7071
7071
  * @public
7072
7072
  */
7073
- NextToken?: string;
7073
+ NextToken?: string | undefined;
7074
7074
  }
7075
7075
  /**
7076
7076
  * @public
@@ -7091,7 +7091,7 @@ export interface ListTagsForResourceResponse {
7091
7091
  * <p>The tags for the resource.</p>
7092
7092
  * @public
7093
7093
  */
7094
- Tags?: Tag[];
7094
+ Tags?: Tag[] | undefined;
7095
7095
  }
7096
7096
  /**
7097
7097
  * @public
@@ -7103,12 +7103,12 @@ export interface ListWhatIfAnalysesRequest {
7103
7103
  * request. Tokens expire after 24 hours.</p>
7104
7104
  * @public
7105
7105
  */
7106
- NextToken?: string;
7106
+ NextToken?: string | undefined;
7107
7107
  /**
7108
7108
  * <p>The number of items to return in the response.</p>
7109
7109
  * @public
7110
7110
  */
7111
- MaxResults?: number;
7111
+ MaxResults?: number | undefined;
7112
7112
  /**
7113
7113
  * <p>An array of filters. For each filter, you provide a condition and a match statement. The condition is either
7114
7114
  * <code>IS</code> or <code>IS_NOT</code>, which specifies whether to include or exclude the what-if analysis jobs
@@ -7141,7 +7141,7 @@ export interface ListWhatIfAnalysesRequest {
7141
7141
  * </p>
7142
7142
  * @public
7143
7143
  */
7144
- Filters?: Filter[];
7144
+ Filters?: Filter[] | undefined;
7145
7145
  }
7146
7146
  /**
7147
7147
  * <p>Provides a summary of the what-if analysis properties used in the <a>ListWhatIfAnalyses</a> operation. To get the complete set of properties, call the <a>DescribeWhatIfAnalysis</a> operation, and provide the <code>WhatIfAnalysisArn</code> that is listed in the summary.</p>
@@ -7152,17 +7152,17 @@ export interface WhatIfAnalysisSummary {
7152
7152
  * <p>The Amazon Resource Name (ARN) of the what-if analysis.</p>
7153
7153
  * @public
7154
7154
  */
7155
- WhatIfAnalysisArn?: string;
7155
+ WhatIfAnalysisArn?: string | undefined;
7156
7156
  /**
7157
7157
  * <p>The name of the what-if analysis.</p>
7158
7158
  * @public
7159
7159
  */
7160
- WhatIfAnalysisName?: string;
7160
+ WhatIfAnalysisName?: string | undefined;
7161
7161
  /**
7162
7162
  * <p>The Amazon Resource Name (ARN) of the baseline forecast that is being used in this what-if analysis.</p>
7163
7163
  * @public
7164
7164
  */
7165
- ForecastArn?: string;
7165
+ ForecastArn?: string | undefined;
7166
7166
  /**
7167
7167
  * <p>The status of the what-if analysis. States include:</p>
7168
7168
  * <ul>
@@ -7195,17 +7195,17 @@ export interface WhatIfAnalysisSummary {
7195
7195
  * </note>
7196
7196
  * @public
7197
7197
  */
7198
- Status?: string;
7198
+ Status?: string | undefined;
7199
7199
  /**
7200
7200
  * <p>If an error occurred, an informational message about the error.</p>
7201
7201
  * @public
7202
7202
  */
7203
- Message?: string;
7203
+ Message?: string | undefined;
7204
7204
  /**
7205
7205
  * <p>When the what-if analysis was created.</p>
7206
7206
  * @public
7207
7207
  */
7208
- CreationTime?: Date;
7208
+ CreationTime?: Date | undefined;
7209
7209
  /**
7210
7210
  * <p>The last time the resource was modified. The timestamp depends on the status of the job:</p>
7211
7211
  * <ul>
@@ -7233,7 +7233,7 @@ export interface WhatIfAnalysisSummary {
7233
7233
  * </ul>
7234
7234
  * @public
7235
7235
  */
7236
- LastModificationTime?: Date;
7236
+ LastModificationTime?: Date | undefined;
7237
7237
  }
7238
7238
  /**
7239
7239
  * @public
@@ -7243,12 +7243,12 @@ export interface ListWhatIfAnalysesResponse {
7243
7243
  * <p>An array of <code>WhatIfAnalysisSummary</code> objects that describe the matched analyses.</p>
7244
7244
  * @public
7245
7245
  */
7246
- WhatIfAnalyses?: WhatIfAnalysisSummary[];
7246
+ WhatIfAnalyses?: WhatIfAnalysisSummary[] | undefined;
7247
7247
  /**
7248
7248
  * <p>If the response is truncated, Forecast returns this token. To retrieve the next set of results, use the token in the next request.</p>
7249
7249
  * @public
7250
7250
  */
7251
- NextToken?: string;
7251
+ NextToken?: string | undefined;
7252
7252
  }
7253
7253
  /**
7254
7254
  * @public
@@ -7259,12 +7259,12 @@ export interface ListWhatIfForecastExportsRequest {
7259
7259
  request. Tokens expire after 24 hours.</p>
7260
7260
  * @public
7261
7261
  */
7262
- NextToken?: string;
7262
+ NextToken?: string | undefined;
7263
7263
  /**
7264
7264
  * <p>The number of items to return in the response.</p>
7265
7265
  * @public
7266
7266
  */
7267
- MaxResults?: number;
7267
+ MaxResults?: number | undefined;
7268
7268
  /**
7269
7269
  * <p>An array of filters. For each filter, you provide a condition and a match statement. The condition is either
7270
7270
  * <code>IS</code> or <code>IS_NOT</code>, which specifies whether to include or exclude the what-if forecast
@@ -7299,7 +7299,7 @@ export interface ListWhatIfForecastExportsRequest {
7299
7299
  * </p>
7300
7300
  * @public
7301
7301
  */
7302
- Filters?: Filter[];
7302
+ Filters?: Filter[] | undefined;
7303
7303
  }
7304
7304
  /**
7305
7305
  * <p>Provides a summary of the what-if forecast export properties used in the <a>ListWhatIfForecastExports</a> operation. To get the complete set of properties, call the <a>DescribeWhatIfForecastExport</a> operation, and provide the <code>WhatIfForecastExportArn</code> that is listed in the summary.</p>
@@ -7310,22 +7310,22 @@ export interface WhatIfForecastExportSummary {
7310
7310
  * <p>The Amazon Resource Name (ARN) of the what-if forecast export.</p>
7311
7311
  * @public
7312
7312
  */
7313
- WhatIfForecastExportArn?: string;
7313
+ WhatIfForecastExportArn?: string | undefined;
7314
7314
  /**
7315
7315
  * <p>An array of Amazon Resource Names (ARNs) that define the what-if forecasts included in the export.</p>
7316
7316
  * @public
7317
7317
  */
7318
- WhatIfForecastArns?: string[];
7318
+ WhatIfForecastArns?: string[] | undefined;
7319
7319
  /**
7320
7320
  * <p>The what-if forecast export name.</p>
7321
7321
  * @public
7322
7322
  */
7323
- WhatIfForecastExportName?: string;
7323
+ WhatIfForecastExportName?: string | undefined;
7324
7324
  /**
7325
7325
  * <p>The path to the Amazon Simple Storage Service (Amazon S3) bucket where the forecast is exported.</p>
7326
7326
  * @public
7327
7327
  */
7328
- Destination?: DataDestination;
7328
+ Destination?: DataDestination | undefined;
7329
7329
  /**
7330
7330
  * <p>The status of the what-if forecast export. States include:</p>
7331
7331
  * <ul>
@@ -7358,17 +7358,17 @@ export interface WhatIfForecastExportSummary {
7358
7358
  * </note>
7359
7359
  * @public
7360
7360
  */
7361
- Status?: string;
7361
+ Status?: string | undefined;
7362
7362
  /**
7363
7363
  * <p>If an error occurred, an informational message about the error.</p>
7364
7364
  * @public
7365
7365
  */
7366
- Message?: string;
7366
+ Message?: string | undefined;
7367
7367
  /**
7368
7368
  * <p>When the what-if forecast export was created.</p>
7369
7369
  * @public
7370
7370
  */
7371
- CreationTime?: Date;
7371
+ CreationTime?: Date | undefined;
7372
7372
  /**
7373
7373
  * <p>The last time the resource was modified. The timestamp depends on the status of the job:</p>
7374
7374
  * <ul>
@@ -7396,7 +7396,7 @@ export interface WhatIfForecastExportSummary {
7396
7396
  * </ul>
7397
7397
  * @public
7398
7398
  */
7399
- LastModificationTime?: Date;
7399
+ LastModificationTime?: Date | undefined;
7400
7400
  }
7401
7401
  /**
7402
7402
  * @public
@@ -7406,12 +7406,12 @@ export interface ListWhatIfForecastExportsResponse {
7406
7406
  * <p>An array of <code>WhatIfForecastExports</code> objects that describe the matched forecast exports.</p>
7407
7407
  * @public
7408
7408
  */
7409
- WhatIfForecastExports?: WhatIfForecastExportSummary[];
7409
+ WhatIfForecastExports?: WhatIfForecastExportSummary[] | undefined;
7410
7410
  /**
7411
7411
  * <p>If the response is truncated, Forecast returns this token. To retrieve the next set of results, use the token in the next request.</p>
7412
7412
  * @public
7413
7413
  */
7414
- NextToken?: string;
7414
+ NextToken?: string | undefined;
7415
7415
  }
7416
7416
  /**
7417
7417
  * @public
@@ -7422,12 +7422,12 @@ export interface ListWhatIfForecastsRequest {
7422
7422
  request. Tokens expire after 24 hours.</p>
7423
7423
  * @public
7424
7424
  */
7425
- NextToken?: string;
7425
+ NextToken?: string | undefined;
7426
7426
  /**
7427
7427
  * <p>The number of items to return in the response.</p>
7428
7428
  * @public
7429
7429
  */
7430
- MaxResults?: number;
7430
+ MaxResults?: number | undefined;
7431
7431
  /**
7432
7432
  * <p>An array of filters. For each filter, you provide a condition and a match statement. The condition is either
7433
7433
  * <code>IS</code> or <code>IS_NOT</code>, which specifies whether to include or exclude the what-if forecast
@@ -7462,7 +7462,7 @@ export interface ListWhatIfForecastsRequest {
7462
7462
  * </p>
7463
7463
  * @public
7464
7464
  */
7465
- Filters?: Filter[];
7465
+ Filters?: Filter[] | undefined;
7466
7466
  }
7467
7467
  /**
7468
7468
  * <p>Provides a summary of the what-if forecast properties used in the <a>ListWhatIfForecasts</a> operation. To get the complete set of properties, call the <a>DescribeWhatIfForecast</a> operation, and provide the <code>WhatIfForecastArn</code> that is listed in the summary.</p>
@@ -7473,17 +7473,17 @@ export interface WhatIfForecastSummary {
7473
7473
  * <p>The Amazon Resource Name (ARN) of the what-if forecast.</p>
7474
7474
  * @public
7475
7475
  */
7476
- WhatIfForecastArn?: string;
7476
+ WhatIfForecastArn?: string | undefined;
7477
7477
  /**
7478
7478
  * <p>The name of the what-if forecast.</p>
7479
7479
  * @public
7480
7480
  */
7481
- WhatIfForecastName?: string;
7481
+ WhatIfForecastName?: string | undefined;
7482
7482
  /**
7483
7483
  * <p>The Amazon Resource Name (ARN) of the what-if analysis that contains this what-if forecast.</p>
7484
7484
  * @public
7485
7485
  */
7486
- WhatIfAnalysisArn?: string;
7486
+ WhatIfAnalysisArn?: string | undefined;
7487
7487
  /**
7488
7488
  * <p>The status of the what-if forecast. States include:</p>
7489
7489
  * <ul>
@@ -7516,17 +7516,17 @@ export interface WhatIfForecastSummary {
7516
7516
  * </note>
7517
7517
  * @public
7518
7518
  */
7519
- Status?: string;
7519
+ Status?: string | undefined;
7520
7520
  /**
7521
7521
  * <p>If an error occurred, an informational message about the error.</p>
7522
7522
  * @public
7523
7523
  */
7524
- Message?: string;
7524
+ Message?: string | undefined;
7525
7525
  /**
7526
7526
  * <p>When the what-if forecast was created.</p>
7527
7527
  * @public
7528
7528
  */
7529
- CreationTime?: Date;
7529
+ CreationTime?: Date | undefined;
7530
7530
  /**
7531
7531
  * <p>The last time the resource was modified. The timestamp depends on the status of the job:</p>
7532
7532
  * <ul>
@@ -7554,7 +7554,7 @@ export interface WhatIfForecastSummary {
7554
7554
  * </ul>
7555
7555
  * @public
7556
7556
  */
7557
- LastModificationTime?: Date;
7557
+ LastModificationTime?: Date | undefined;
7558
7558
  }
7559
7559
  /**
7560
7560
  * @public
@@ -7564,13 +7564,13 @@ export interface ListWhatIfForecastsResponse {
7564
7564
  * <p>An array of <code>WhatIfForecasts</code> objects that describe the matched forecasts.</p>
7565
7565
  * @public
7566
7566
  */
7567
- WhatIfForecasts?: WhatIfForecastSummary[];
7567
+ WhatIfForecasts?: WhatIfForecastSummary[] | undefined;
7568
7568
  /**
7569
7569
  * <p>If the result of the previous request was truncated, the response includes a <code>NextToken</code>. To retrieve the next set of results, use the token in the next
7570
7570
  request. Tokens expire after 24 hours.</p>
7571
7571
  * @public
7572
7572
  */
7573
- NextToken?: string;
7573
+ NextToken?: string | undefined;
7574
7574
  }
7575
7575
  /**
7576
7576
  * @public