cdk-comprehend-s3olap 2.0.75 → 2.0.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +10 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +2 -1
- package/node_modules/aws-sdk/apis/forecast-2018-06-26.min.json +428 -13
- package/node_modules/aws-sdk/apis/forecast-2018-06-26.paginators.json +18 -0
- package/node_modules/aws-sdk/apis/forecastquery-2018-06-26.min.json +54 -21
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +44 -0
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +308 -162
- package/node_modules/aws-sdk/apis/support-app-2021-08-20.examples.json +5 -0
- package/node_modules/aws-sdk/apis/support-app-2021-08-20.min.json +267 -0
- package/node_modules/aws-sdk/apis/support-app-2021-08-20.paginators.json +12 -0
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/docdb.d.ts +1 -1
- package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
- package/node_modules/aws-sdk/clients/forecastqueryservice.d.ts +35 -1
- package/node_modules/aws-sdk/clients/forecastservice.d.ts +559 -0
- package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +49 -1
- package/node_modules/aws-sdk/clients/securityhub.d.ts +346 -70
- package/node_modules/aws-sdk/clients/supportapp.d.ts +330 -0
- package/node_modules/aws-sdk/clients/supportapp.js +18 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +47 -10
- package/node_modules/aws-sdk/dist/aws-sdk.js +509 -38
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +51 -51
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -99,6 +99,30 @@ declare class ForecastService extends Service {
|
|
99
99
|
* Exports backtest forecasts and accuracy metrics generated by the CreateAutoPredictor or CreatePredictor operations. Two folders containing CSV or Parquet files are exported to your specified S3 bucket. The export file names will match the following conventions: <ExportJobName>_<ExportTimestamp>_<PartNumber>.csv The <ExportTimestamp> component is in Java SimpleDate format (yyyy-MM-ddTHH-mm-ssZ). You must specify a DataDestination object that includes an Amazon S3 bucket and an AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket. For more information, see aws-forecast-iam-roles. The Status of the export job must be ACTIVE before you can access the export in your Amazon S3 bucket. To get the status, use the DescribePredictorBacktestExportJob operation.
|
100
100
|
*/
|
101
101
|
createPredictorBacktestExportJob(callback?: (err: AWSError, data: ForecastService.Types.CreatePredictorBacktestExportJobResponse) => void): Request<ForecastService.Types.CreatePredictorBacktestExportJobResponse, AWSError>;
|
102
|
+
/**
|
103
|
+
* What-if analysis is a scenario modeling technique where you make a hypothetical change to a time series and compare the forecasts generated by these changes against the baseline, unchanged time series. It is important to remember that the purpose of a what-if analysis is to understand how a forecast can change given different modifications to the baseline time series. For example, imagine you are a clothing retailer who is considering an end of season sale to clear space for new styles. After creating a baseline forecast, you can use a what-if analysis to investigate how different sales tactics might affect your goals. You could create a scenario where everything is given a 25% markdown and another where everything is given a fixed dollar markdown. You can create a scenario where the sale lasts for 1 week and another where the sale lasts for 1 month. Your what-if analysis enables you to compare many different scenarios against each other. Note that a what-if analysis is meant to display what the forecasting model has learned and how it will behave in the scenarios that you are evaluating. Do not blindly use the results of the what-if analysis to make business decisions. For instance, forecasts might not be accurate for novel scenarios where there is no reference available to determine whether a forecast is good. The TimeSeriesSelector object defines the items that you want in the what-if analysis.
|
104
|
+
*/
|
105
|
+
createWhatIfAnalysis(params: ForecastService.Types.CreateWhatIfAnalysisRequest, callback?: (err: AWSError, data: ForecastService.Types.CreateWhatIfAnalysisResponse) => void): Request<ForecastService.Types.CreateWhatIfAnalysisResponse, AWSError>;
|
106
|
+
/**
|
107
|
+
* What-if analysis is a scenario modeling technique where you make a hypothetical change to a time series and compare the forecasts generated by these changes against the baseline, unchanged time series. It is important to remember that the purpose of a what-if analysis is to understand how a forecast can change given different modifications to the baseline time series. For example, imagine you are a clothing retailer who is considering an end of season sale to clear space for new styles. After creating a baseline forecast, you can use a what-if analysis to investigate how different sales tactics might affect your goals. You could create a scenario where everything is given a 25% markdown and another where everything is given a fixed dollar markdown. You can create a scenario where the sale lasts for 1 week and another where the sale lasts for 1 month. Your what-if analysis enables you to compare many different scenarios against each other. Note that a what-if analysis is meant to display what the forecasting model has learned and how it will behave in the scenarios that you are evaluating. Do not blindly use the results of the what-if analysis to make business decisions. For instance, forecasts might not be accurate for novel scenarios where there is no reference available to determine whether a forecast is good. The TimeSeriesSelector object defines the items that you want in the what-if analysis.
|
108
|
+
*/
|
109
|
+
createWhatIfAnalysis(callback?: (err: AWSError, data: ForecastService.Types.CreateWhatIfAnalysisResponse) => void): Request<ForecastService.Types.CreateWhatIfAnalysisResponse, AWSError>;
|
110
|
+
/**
|
111
|
+
* A what-if forecast is a forecast that is created from a modified version of the baseline forecast. Each what-if forecast incorporates either a replacement dataset or a set of transformations to the original dataset.
|
112
|
+
*/
|
113
|
+
createWhatIfForecast(params: ForecastService.Types.CreateWhatIfForecastRequest, callback?: (err: AWSError, data: ForecastService.Types.CreateWhatIfForecastResponse) => void): Request<ForecastService.Types.CreateWhatIfForecastResponse, AWSError>;
|
114
|
+
/**
|
115
|
+
* A what-if forecast is a forecast that is created from a modified version of the baseline forecast. Each what-if forecast incorporates either a replacement dataset or a set of transformations to the original dataset.
|
116
|
+
*/
|
117
|
+
createWhatIfForecast(callback?: (err: AWSError, data: ForecastService.Types.CreateWhatIfForecastResponse) => void): Request<ForecastService.Types.CreateWhatIfForecastResponse, AWSError>;
|
118
|
+
/**
|
119
|
+
* Exports a forecast created by the CreateWhatIfForecast operation to your Amazon Simple Storage Service (Amazon S3) bucket. The forecast file name will match the following conventions: ≈<ForecastExportJobName>_<ExportTimestamp>_<PartNumber> The <ExportTimestamp> component is in Java SimpleDateFormat (yyyy-MM-ddTHH-mm-ssZ). You must specify a DataDestination object that includes an AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket. For more information, see aws-forecast-iam-roles. For more information, see howitworks-forecast. To get a list of all your what-if forecast export jobs, use the ListWhatIfForecastExports operation. The Status of the forecast export job must be ACTIVE before you can access the forecast in your Amazon S3 bucket. To get the status, use the DescribeWhatIfForecastExport operation.
|
120
|
+
*/
|
121
|
+
createWhatIfForecastExport(params: ForecastService.Types.CreateWhatIfForecastExportRequest, callback?: (err: AWSError, data: ForecastService.Types.CreateWhatIfForecastExportResponse) => void): Request<ForecastService.Types.CreateWhatIfForecastExportResponse, AWSError>;
|
122
|
+
/**
|
123
|
+
* Exports a forecast created by the CreateWhatIfForecast operation to your Amazon Simple Storage Service (Amazon S3) bucket. The forecast file name will match the following conventions: ≈<ForecastExportJobName>_<ExportTimestamp>_<PartNumber> The <ExportTimestamp> component is in Java SimpleDateFormat (yyyy-MM-ddTHH-mm-ssZ). You must specify a DataDestination object that includes an AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket. For more information, see aws-forecast-iam-roles. For more information, see howitworks-forecast. To get a list of all your what-if forecast export jobs, use the ListWhatIfForecastExports operation. The Status of the forecast export job must be ACTIVE before you can access the forecast in your Amazon S3 bucket. To get the status, use the DescribeWhatIfForecastExport operation.
|
124
|
+
*/
|
125
|
+
createWhatIfForecastExport(callback?: (err: AWSError, data: ForecastService.Types.CreateWhatIfForecastExportResponse) => void): Request<ForecastService.Types.CreateWhatIfForecastExportResponse, AWSError>;
|
102
126
|
/**
|
103
127
|
* Deletes an Amazon Forecast dataset that was created using the CreateDataset operation. You can only delete datasets that have a status of ACTIVE or CREATE_FAILED. To get the status use the DescribeDataset operation. Forecast does not automatically update any dataset groups that contain the deleted dataset. In order to update the dataset group, use the UpdateDatasetGroup operation, omitting the deleted dataset's ARN.
|
104
128
|
*/
|
@@ -187,6 +211,30 @@ declare class ForecastService extends Service {
|
|
187
211
|
* Deletes an entire resource tree. This operation will delete the parent resource and its child resources. Child resources are resources that were created from another resource. For example, when a forecast is generated from a predictor, the forecast is the child resource and the predictor is the parent resource. Amazon Forecast resources possess the following parent-child resource hierarchies: Dataset: dataset import jobs Dataset Group: predictors, predictor backtest export jobs, forecasts, forecast export jobs Predictor: predictor backtest export jobs, forecasts, forecast export jobs Forecast: forecast export jobs DeleteResourceTree will only delete Amazon Forecast resources, and will not delete datasets or exported files stored in Amazon S3.
|
188
212
|
*/
|
189
213
|
deleteResourceTree(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
214
|
+
/**
|
215
|
+
* Deletes a what-if analysis created using the CreateWhatIfAnalysis operation. You can delete only what-if analyses that have a status of ACTIVE or CREATE_FAILED. To get the status, use the DescribeWhatIfAnalysis operation. You can't delete a what-if analysis while any of its forecasts are being exported.
|
216
|
+
*/
|
217
|
+
deleteWhatIfAnalysis(params: ForecastService.Types.DeleteWhatIfAnalysisRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
218
|
+
/**
|
219
|
+
* Deletes a what-if analysis created using the CreateWhatIfAnalysis operation. You can delete only what-if analyses that have a status of ACTIVE or CREATE_FAILED. To get the status, use the DescribeWhatIfAnalysis operation. You can't delete a what-if analysis while any of its forecasts are being exported.
|
220
|
+
*/
|
221
|
+
deleteWhatIfAnalysis(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
222
|
+
/**
|
223
|
+
* Deletes a what-if forecast created using the CreateWhatIfForecast operation. You can delete only what-if forecasts that have a status of ACTIVE or CREATE_FAILED. To get the status, use the DescribeWhatIfForecast operation. You can't delete a what-if forecast while it is being exported. After a what-if forecast is deleted, you can no longer query the what-if analysis.
|
224
|
+
*/
|
225
|
+
deleteWhatIfForecast(params: ForecastService.Types.DeleteWhatIfForecastRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
226
|
+
/**
|
227
|
+
* Deletes a what-if forecast created using the CreateWhatIfForecast operation. You can delete only what-if forecasts that have a status of ACTIVE or CREATE_FAILED. To get the status, use the DescribeWhatIfForecast operation. You can't delete a what-if forecast while it is being exported. After a what-if forecast is deleted, you can no longer query the what-if analysis.
|
228
|
+
*/
|
229
|
+
deleteWhatIfForecast(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
230
|
+
/**
|
231
|
+
* Deletes a what-if forecast export created using the CreateWhatIfForecastExport operation. You can delete only what-if forecast exports that have a status of ACTIVE or CREATE_FAILED. To get the status, use the DescribeWhatIfForecastExport operation.
|
232
|
+
*/
|
233
|
+
deleteWhatIfForecastExport(params: ForecastService.Types.DeleteWhatIfForecastExportRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
234
|
+
/**
|
235
|
+
* Deletes a what-if forecast export created using the CreateWhatIfForecastExport operation. You can delete only what-if forecast exports that have a status of ACTIVE or CREATE_FAILED. To get the status, use the DescribeWhatIfForecastExport operation.
|
236
|
+
*/
|
237
|
+
deleteWhatIfForecastExport(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
190
238
|
/**
|
191
239
|
* Describes a predictor created using the CreateAutoPredictor operation.
|
192
240
|
*/
|
@@ -275,6 +323,30 @@ declare class ForecastService extends Service {
|
|
275
323
|
* Describes a predictor backtest export job created using the CreatePredictorBacktestExportJob operation. In addition to listing the properties provided by the user in the CreatePredictorBacktestExportJob request, this operation lists the following properties: CreationTime LastModificationTime Status Message (if an error occurred)
|
276
324
|
*/
|
277
325
|
describePredictorBacktestExportJob(callback?: (err: AWSError, data: ForecastService.Types.DescribePredictorBacktestExportJobResponse) => void): Request<ForecastService.Types.DescribePredictorBacktestExportJobResponse, AWSError>;
|
326
|
+
/**
|
327
|
+
* Describes the what-if analysis created using the CreateWhatIfAnalysis operation. In addition to listing the properties provided in the CreateWhatIfAnalysis request, this operation lists the following properties: CreationTime LastModificationTime Message - If an error occurred, information about the error. Status
|
328
|
+
*/
|
329
|
+
describeWhatIfAnalysis(params: ForecastService.Types.DescribeWhatIfAnalysisRequest, callback?: (err: AWSError, data: ForecastService.Types.DescribeWhatIfAnalysisResponse) => void): Request<ForecastService.Types.DescribeWhatIfAnalysisResponse, AWSError>;
|
330
|
+
/**
|
331
|
+
* Describes the what-if analysis created using the CreateWhatIfAnalysis operation. In addition to listing the properties provided in the CreateWhatIfAnalysis request, this operation lists the following properties: CreationTime LastModificationTime Message - If an error occurred, information about the error. Status
|
332
|
+
*/
|
333
|
+
describeWhatIfAnalysis(callback?: (err: AWSError, data: ForecastService.Types.DescribeWhatIfAnalysisResponse) => void): Request<ForecastService.Types.DescribeWhatIfAnalysisResponse, AWSError>;
|
334
|
+
/**
|
335
|
+
* Describes the what-if forecast created using the CreateWhatIfForecast operation. In addition to listing the properties provided in the CreateWhatIfForecast request, this operation lists the following properties: CreationTime LastModificationTime Message - If an error occurred, information about the error. Status
|
336
|
+
*/
|
337
|
+
describeWhatIfForecast(params: ForecastService.Types.DescribeWhatIfForecastRequest, callback?: (err: AWSError, data: ForecastService.Types.DescribeWhatIfForecastResponse) => void): Request<ForecastService.Types.DescribeWhatIfForecastResponse, AWSError>;
|
338
|
+
/**
|
339
|
+
* Describes the what-if forecast created using the CreateWhatIfForecast operation. In addition to listing the properties provided in the CreateWhatIfForecast request, this operation lists the following properties: CreationTime LastModificationTime Message - If an error occurred, information about the error. Status
|
340
|
+
*/
|
341
|
+
describeWhatIfForecast(callback?: (err: AWSError, data: ForecastService.Types.DescribeWhatIfForecastResponse) => void): Request<ForecastService.Types.DescribeWhatIfForecastResponse, AWSError>;
|
342
|
+
/**
|
343
|
+
* Describes the what-if forecast export created using the CreateWhatIfForecastExport operation. In addition to listing the properties provided in the CreateWhatIfForecastExport request, this operation lists the following properties: CreationTime LastModificationTime Message - If an error occurred, information about the error. Status
|
344
|
+
*/
|
345
|
+
describeWhatIfForecastExport(params: ForecastService.Types.DescribeWhatIfForecastExportRequest, callback?: (err: AWSError, data: ForecastService.Types.DescribeWhatIfForecastExportResponse) => void): Request<ForecastService.Types.DescribeWhatIfForecastExportResponse, AWSError>;
|
346
|
+
/**
|
347
|
+
* Describes the what-if forecast export created using the CreateWhatIfForecastExport operation. In addition to listing the properties provided in the CreateWhatIfForecastExport request, this operation lists the following properties: CreationTime LastModificationTime Message - If an error occurred, information about the error. Status
|
348
|
+
*/
|
349
|
+
describeWhatIfForecastExport(callback?: (err: AWSError, data: ForecastService.Types.DescribeWhatIfForecastExportResponse) => void): Request<ForecastService.Types.DescribeWhatIfForecastExportResponse, AWSError>;
|
278
350
|
/**
|
279
351
|
* Provides metrics on the accuracy of the models that were trained by the CreatePredictor operation. Use metrics to see how well the model performed and to decide whether to use the predictor to generate a forecast. For more information, see Predictor Metrics. This operation generates metrics for each backtest window that was evaluated. The number of backtest windows (NumberOfBacktestWindows) is specified using the EvaluationParameters object, which is optionally included in the CreatePredictor request. If NumberOfBacktestWindows isn't specified, the number defaults to one. The parameters of the filling method determine which items contribute to the metrics. If you want all items to contribute, specify zero. If you want only those items that have complete data in the range being evaluated to contribute, specify nan. For more information, see FeaturizationMethod. Before you can get accuracy metrics, the Status of the predictor must be ACTIVE, signifying that training has completed. To get the status, use the DescribePredictor operation.
|
280
352
|
*/
|
@@ -379,6 +451,30 @@ declare class ForecastService extends Service {
|
|
379
451
|
* Lists the tags for an Amazon Forecast resource.
|
380
452
|
*/
|
381
453
|
listTagsForResource(callback?: (err: AWSError, data: ForecastService.Types.ListTagsForResourceResponse) => void): Request<ForecastService.Types.ListTagsForResourceResponse, AWSError>;
|
454
|
+
/**
|
455
|
+
* Returns a list of what-if analyses created using the CreateWhatIfAnalysis operation. For each what-if analysis, this operation returns a summary of its properties, including its Amazon Resource Name (ARN). You can retrieve the complete set of properties by using the what-if analysis ARN with the DescribeWhatIfAnalysis operation.
|
456
|
+
*/
|
457
|
+
listWhatIfAnalyses(params: ForecastService.Types.ListWhatIfAnalysesRequest, callback?: (err: AWSError, data: ForecastService.Types.ListWhatIfAnalysesResponse) => void): Request<ForecastService.Types.ListWhatIfAnalysesResponse, AWSError>;
|
458
|
+
/**
|
459
|
+
* Returns a list of what-if analyses created using the CreateWhatIfAnalysis operation. For each what-if analysis, this operation returns a summary of its properties, including its Amazon Resource Name (ARN). You can retrieve the complete set of properties by using the what-if analysis ARN with the DescribeWhatIfAnalysis operation.
|
460
|
+
*/
|
461
|
+
listWhatIfAnalyses(callback?: (err: AWSError, data: ForecastService.Types.ListWhatIfAnalysesResponse) => void): Request<ForecastService.Types.ListWhatIfAnalysesResponse, AWSError>;
|
462
|
+
/**
|
463
|
+
* Returns a list of what-if forecast exports created using the CreateWhatIfForecastExport operation. For each what-if forecast export, this operation returns a summary of its properties, including its Amazon Resource Name (ARN). You can retrieve the complete set of properties by using the what-if forecast export ARN with the DescribeWhatIfForecastExport operation.
|
464
|
+
*/
|
465
|
+
listWhatIfForecastExports(params: ForecastService.Types.ListWhatIfForecastExportsRequest, callback?: (err: AWSError, data: ForecastService.Types.ListWhatIfForecastExportsResponse) => void): Request<ForecastService.Types.ListWhatIfForecastExportsResponse, AWSError>;
|
466
|
+
/**
|
467
|
+
* Returns a list of what-if forecast exports created using the CreateWhatIfForecastExport operation. For each what-if forecast export, this operation returns a summary of its properties, including its Amazon Resource Name (ARN). You can retrieve the complete set of properties by using the what-if forecast export ARN with the DescribeWhatIfForecastExport operation.
|
468
|
+
*/
|
469
|
+
listWhatIfForecastExports(callback?: (err: AWSError, data: ForecastService.Types.ListWhatIfForecastExportsResponse) => void): Request<ForecastService.Types.ListWhatIfForecastExportsResponse, AWSError>;
|
470
|
+
/**
|
471
|
+
* Returns a list of what-if forecasts created using the CreateWhatIfForecast operation. For each what-if forecast, this operation returns a summary of its properties, including its Amazon Resource Name (ARN). You can retrieve the complete set of properties by using the what-if forecast ARN with the DescribeWhatIfForecast operation.
|
472
|
+
*/
|
473
|
+
listWhatIfForecasts(params: ForecastService.Types.ListWhatIfForecastsRequest, callback?: (err: AWSError, data: ForecastService.Types.ListWhatIfForecastsResponse) => void): Request<ForecastService.Types.ListWhatIfForecastsResponse, AWSError>;
|
474
|
+
/**
|
475
|
+
* Returns a list of what-if forecasts created using the CreateWhatIfForecast operation. For each what-if forecast, this operation returns a summary of its properties, including its Amazon Resource Name (ARN). You can retrieve the complete set of properties by using the what-if forecast ARN with the DescribeWhatIfForecast operation.
|
476
|
+
*/
|
477
|
+
listWhatIfForecasts(callback?: (err: AWSError, data: ForecastService.Types.ListWhatIfForecastsResponse) => void): Request<ForecastService.Types.ListWhatIfForecastsResponse, AWSError>;
|
382
478
|
/**
|
383
479
|
* Resumes a stopped monitor resource.
|
384
480
|
*/
|
@@ -421,6 +517,20 @@ declare class ForecastService extends Service {
|
|
421
517
|
updateDatasetGroup(callback?: (err: AWSError, data: ForecastService.Types.UpdateDatasetGroupResponse) => void): Request<ForecastService.Types.UpdateDatasetGroupResponse, AWSError>;
|
422
518
|
}
|
423
519
|
declare namespace ForecastService {
|
520
|
+
export interface Action {
|
521
|
+
/**
|
522
|
+
* The related time series that you are modifying. This value is case insensitive.
|
523
|
+
*/
|
524
|
+
AttributeName: Name;
|
525
|
+
/**
|
526
|
+
* The operation that is applied to the provided attribute. Operations include: ADD - adds Value to all rows of AttributeName. SUBTRACT - subtracts Value from all rows of AttributeName. MULTIPLY - multiplies all rows of AttributeName by Value. DIVIDE - divides all rows of AttributeName by Value.
|
527
|
+
*/
|
528
|
+
Operation: Operation;
|
529
|
+
/**
|
530
|
+
* The value that is applied for the chosen Operation.
|
531
|
+
*/
|
532
|
+
Value: Double;
|
533
|
+
}
|
424
534
|
export interface AdditionalDataset {
|
425
535
|
/**
|
426
536
|
* The name of the additional dataset. Valid names: "holiday" and "weather".
|
@@ -446,6 +556,7 @@ declare namespace ForecastService {
|
|
446
556
|
}
|
447
557
|
export type AttributeConfigs = AttributeConfig[];
|
448
558
|
export type AttributeType = "string"|"integer"|"float"|"timestamp"|"geolocation"|string;
|
559
|
+
export type AttributeValue = string;
|
449
560
|
export type AutoMLOverrideStrategy = "LatencyOptimized"|"AccuracyOptimized"|string;
|
450
561
|
export interface Baseline {
|
451
562
|
/**
|
@@ -476,6 +587,7 @@ declare namespace ForecastService {
|
|
476
587
|
Values: Values;
|
477
588
|
}
|
478
589
|
export type CategoricalParameterRanges = CategoricalParameterRange[];
|
590
|
+
export type Condition = "EQUALS"|"NOT_EQUALS"|"LESS_THAN"|"GREATER_THAN"|string;
|
479
591
|
export type Configuration = {[key: string]: Values};
|
480
592
|
export interface ContinuousParameterRange {
|
481
593
|
/**
|
@@ -889,6 +1001,86 @@ declare namespace ForecastService {
|
|
889
1001
|
*/
|
890
1002
|
PredictorArn?: Arn;
|
891
1003
|
}
|
1004
|
+
export interface CreateWhatIfAnalysisRequest {
|
1005
|
+
/**
|
1006
|
+
* The name of the what-if analysis. Each name must be unique.
|
1007
|
+
*/
|
1008
|
+
WhatIfAnalysisName: Name;
|
1009
|
+
/**
|
1010
|
+
* The Amazon Resource Name (ARN) of the baseline forecast.
|
1011
|
+
*/
|
1012
|
+
ForecastArn: Arn;
|
1013
|
+
/**
|
1014
|
+
* Defines the set of time series that are used in the what-if analysis with a TimeSeriesIdentifiers object. What-if analyses are performed only for the time series in this object. The TimeSeriesIdentifiers object needs the following information: DataSource Format Schema
|
1015
|
+
*/
|
1016
|
+
TimeSeriesSelector?: TimeSeriesSelector;
|
1017
|
+
/**
|
1018
|
+
* A list of tags to apply to the what if forecast.
|
1019
|
+
*/
|
1020
|
+
Tags?: Tags;
|
1021
|
+
}
|
1022
|
+
export interface CreateWhatIfAnalysisResponse {
|
1023
|
+
/**
|
1024
|
+
* The Amazon Resource Name (ARN) of the what-if analysis.
|
1025
|
+
*/
|
1026
|
+
WhatIfAnalysisArn?: Arn;
|
1027
|
+
}
|
1028
|
+
export interface CreateWhatIfForecastExportRequest {
|
1029
|
+
/**
|
1030
|
+
* The name of the what-if forecast to export.
|
1031
|
+
*/
|
1032
|
+
WhatIfForecastExportName: Name;
|
1033
|
+
/**
|
1034
|
+
* The list of what-if forecast Amazon Resource Names (ARNs) to export.
|
1035
|
+
*/
|
1036
|
+
WhatIfForecastArns: WhatIfForecastArnListForExport;
|
1037
|
+
/**
|
1038
|
+
* The location where you want to save the forecast and an AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the location. The forecast must be exported to an Amazon S3 bucket. If encryption is used, Destination must include an AWS Key Management Service (KMS) key. The IAM role must allow Amazon Forecast permission to access the key.
|
1039
|
+
*/
|
1040
|
+
Destination: DataDestination;
|
1041
|
+
/**
|
1042
|
+
* A list of tags to apply to the what if forecast.
|
1043
|
+
*/
|
1044
|
+
Tags?: Tags;
|
1045
|
+
/**
|
1046
|
+
* The format of the exported data, CSV or PARQUET.
|
1047
|
+
*/
|
1048
|
+
Format?: Format;
|
1049
|
+
}
|
1050
|
+
export interface CreateWhatIfForecastExportResponse {
|
1051
|
+
/**
|
1052
|
+
* The Amazon Resource Name (ARN) of the what-if forecast.
|
1053
|
+
*/
|
1054
|
+
WhatIfForecastExportArn?: LongArn;
|
1055
|
+
}
|
1056
|
+
export interface CreateWhatIfForecastRequest {
|
1057
|
+
/**
|
1058
|
+
* The name of the what-if forecast. Names must be unique within each what-if analysis.
|
1059
|
+
*/
|
1060
|
+
WhatIfForecastName: Name;
|
1061
|
+
/**
|
1062
|
+
* The Amazon Resource Name (ARN) of the what-if analysis.
|
1063
|
+
*/
|
1064
|
+
WhatIfAnalysisArn: Arn;
|
1065
|
+
/**
|
1066
|
+
* 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.
|
1067
|
+
*/
|
1068
|
+
TimeSeriesTransformations?: TimeSeriesTransformations;
|
1069
|
+
/**
|
1070
|
+
* The replacement time series dataset, which contains the rows that you want to change in the related time series dataset. A replacement time series does not need to contain all rows that are in the baseline related time series. Include only the rows (measure-dimension combinations) that you want to include in the what-if forecast. This dataset is merged with the original time series to create a transformed dataset that is used for the what-if analysis. This dataset should contain the items to modify (such as item_id or workforce_type), any relevant dimensions, the timestamp column, and at least one of the related time series columns. This file should not contain duplicate timestamps for the same time series. Timestamps and item_ids not included in this dataset are not included in the what-if analysis.
|
1071
|
+
*/
|
1072
|
+
TimeSeriesReplacementsDataSource?: TimeSeriesReplacementsDataSource;
|
1073
|
+
/**
|
1074
|
+
* A list of tags to apply to the what if forecast.
|
1075
|
+
*/
|
1076
|
+
Tags?: Tags;
|
1077
|
+
}
|
1078
|
+
export interface CreateWhatIfForecastResponse {
|
1079
|
+
/**
|
1080
|
+
* The Amazon Resource Name (ARN) of the what-if forecast.
|
1081
|
+
*/
|
1082
|
+
WhatIfForecastArn?: LongArn;
|
1083
|
+
}
|
892
1084
|
export interface DataConfig {
|
893
1085
|
/**
|
894
1086
|
* The ARN of the dataset group used to train the predictor.
|
@@ -1061,6 +1253,24 @@ declare namespace ForecastService {
|
|
1061
1253
|
*/
|
1062
1254
|
ResourceArn: Arn;
|
1063
1255
|
}
|
1256
|
+
export interface DeleteWhatIfAnalysisRequest {
|
1257
|
+
/**
|
1258
|
+
* The Amazon Resource Name (ARN) of the what-if analysis that you want to delete.
|
1259
|
+
*/
|
1260
|
+
WhatIfAnalysisArn: Arn;
|
1261
|
+
}
|
1262
|
+
export interface DeleteWhatIfForecastExportRequest {
|
1263
|
+
/**
|
1264
|
+
* The Amazon Resource Name (ARN) of the what-if forecast export that you want to delete.
|
1265
|
+
*/
|
1266
|
+
WhatIfForecastExportArn: LongArn;
|
1267
|
+
}
|
1268
|
+
export interface DeleteWhatIfForecastRequest {
|
1269
|
+
/**
|
1270
|
+
* The Amazon Resource Name (ARN) of the what-if forecast that you want to delete.
|
1271
|
+
*/
|
1272
|
+
WhatIfForecastArn: LongArn;
|
1273
|
+
}
|
1064
1274
|
export interface DescribeAutoPredictorRequest {
|
1065
1275
|
/**
|
1066
1276
|
* The Amazon Resource Name (ARN) of the predictor.
|
@@ -1690,6 +1900,144 @@ declare namespace ForecastService {
|
|
1690
1900
|
*/
|
1691
1901
|
OptimizationMetric?: OptimizationMetric;
|
1692
1902
|
}
|
1903
|
+
export interface DescribeWhatIfAnalysisRequest {
|
1904
|
+
/**
|
1905
|
+
* The Amazon Resource Name (ARN) of the what-if analysis that you are interested in.
|
1906
|
+
*/
|
1907
|
+
WhatIfAnalysisArn: Arn;
|
1908
|
+
}
|
1909
|
+
export interface DescribeWhatIfAnalysisResponse {
|
1910
|
+
/**
|
1911
|
+
* The name of the what-if analysis.
|
1912
|
+
*/
|
1913
|
+
WhatIfAnalysisName?: Name;
|
1914
|
+
/**
|
1915
|
+
* The Amazon Resource Name (ARN) of the what-if analysis.
|
1916
|
+
*/
|
1917
|
+
WhatIfAnalysisArn?: Arn;
|
1918
|
+
/**
|
1919
|
+
* The Amazon Resource Name (ARN) of the what-if forecast.
|
1920
|
+
*/
|
1921
|
+
ForecastArn?: Arn;
|
1922
|
+
/**
|
1923
|
+
* The approximate time remaining to complete the what-if analysis, in minutes.
|
1924
|
+
*/
|
1925
|
+
EstimatedTimeRemainingInMinutes?: Long;
|
1926
|
+
/**
|
1927
|
+
* The status of the what-if analysis. States include: ACTIVE CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED CREATE_STOPPING, CREATE_STOPPED DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED The Status of the what-if analysis must be ACTIVE before you can access the analysis.
|
1928
|
+
*/
|
1929
|
+
Status?: String;
|
1930
|
+
/**
|
1931
|
+
* If an error occurred, an informational message about the error.
|
1932
|
+
*/
|
1933
|
+
Message?: ErrorMessage;
|
1934
|
+
/**
|
1935
|
+
* When the what-if analysis was created.
|
1936
|
+
*/
|
1937
|
+
CreationTime?: Timestamp;
|
1938
|
+
/**
|
1939
|
+
* The last time the resource was modified. The timestamp depends on the status of the job: CREATE_PENDING - The CreationTime. CREATE_IN_PROGRESS - The current timestamp. CREATE_STOPPING - The current timestamp. CREATE_STOPPED - When the job stopped. ACTIVE or CREATE_FAILED - When the job finished or failed.
|
1940
|
+
*/
|
1941
|
+
LastModificationTime?: Timestamp;
|
1942
|
+
TimeSeriesSelector?: TimeSeriesSelector;
|
1943
|
+
}
|
1944
|
+
export interface DescribeWhatIfForecastExportRequest {
|
1945
|
+
/**
|
1946
|
+
* The Amazon Resource Name (ARN) of the what-if forecast export that you are interested in.
|
1947
|
+
*/
|
1948
|
+
WhatIfForecastExportArn: LongArn;
|
1949
|
+
}
|
1950
|
+
export interface DescribeWhatIfForecastExportResponse {
|
1951
|
+
/**
|
1952
|
+
* The Amazon Resource Name (ARN) of the what-if forecast export.
|
1953
|
+
*/
|
1954
|
+
WhatIfForecastExportArn?: LongArn;
|
1955
|
+
/**
|
1956
|
+
* The name of the what-if forecast export.
|
1957
|
+
*/
|
1958
|
+
WhatIfForecastExportName?: Name;
|
1959
|
+
/**
|
1960
|
+
* An array of Amazon Resource Names (ARNs) that represent all of the what-if forecasts exported in this resource.
|
1961
|
+
*/
|
1962
|
+
WhatIfForecastArns?: LongArnList;
|
1963
|
+
Destination?: DataDestination;
|
1964
|
+
/**
|
1965
|
+
* If an error occurred, an informational message about the error.
|
1966
|
+
*/
|
1967
|
+
Message?: Message;
|
1968
|
+
/**
|
1969
|
+
* The status of the what-if forecast. States include: ACTIVE CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED CREATE_STOPPING, CREATE_STOPPED DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED The Status of the what-if forecast export must be ACTIVE before you can access the forecast export.
|
1970
|
+
*/
|
1971
|
+
Status?: Status;
|
1972
|
+
/**
|
1973
|
+
* When the what-if forecast export was created.
|
1974
|
+
*/
|
1975
|
+
CreationTime?: Timestamp;
|
1976
|
+
/**
|
1977
|
+
* The approximate time remaining to complete the what-if forecast export, in minutes.
|
1978
|
+
*/
|
1979
|
+
EstimatedTimeRemainingInMinutes?: Long;
|
1980
|
+
/**
|
1981
|
+
* The last time the resource was modified. The timestamp depends on the status of the job: CREATE_PENDING - The CreationTime. CREATE_IN_PROGRESS - The current timestamp. CREATE_STOPPING - The current timestamp. CREATE_STOPPED - When the job stopped. ACTIVE or CREATE_FAILED - When the job finished or failed.
|
1982
|
+
*/
|
1983
|
+
LastModificationTime?: Timestamp;
|
1984
|
+
/**
|
1985
|
+
* The format of the exported data, CSV or PARQUET.
|
1986
|
+
*/
|
1987
|
+
Format?: Format;
|
1988
|
+
}
|
1989
|
+
export interface DescribeWhatIfForecastRequest {
|
1990
|
+
/**
|
1991
|
+
* The Amazon Resource Name (ARN) of the what-if forecast that you are interested in.
|
1992
|
+
*/
|
1993
|
+
WhatIfForecastArn: LongArn;
|
1994
|
+
}
|
1995
|
+
export interface DescribeWhatIfForecastResponse {
|
1996
|
+
/**
|
1997
|
+
* The name of the what-if forecast.
|
1998
|
+
*/
|
1999
|
+
WhatIfForecastName?: Name;
|
2000
|
+
/**
|
2001
|
+
* The Amazon Resource Name (ARN) of the what-if forecast.
|
2002
|
+
*/
|
2003
|
+
WhatIfForecastArn?: LongArn;
|
2004
|
+
/**
|
2005
|
+
* The Amazon Resource Name (ARN) of the what-if analysis that contains this forecast.
|
2006
|
+
*/
|
2007
|
+
WhatIfAnalysisArn?: Arn;
|
2008
|
+
/**
|
2009
|
+
* The approximate time remaining to complete the what-if forecast, in minutes.
|
2010
|
+
*/
|
2011
|
+
EstimatedTimeRemainingInMinutes?: Long;
|
2012
|
+
/**
|
2013
|
+
* The status of the what-if forecast. States include: ACTIVE CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED CREATE_STOPPING, CREATE_STOPPED DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED The Status of the what-if forecast must be ACTIVE before you can access the forecast.
|
2014
|
+
*/
|
2015
|
+
Status?: String;
|
2016
|
+
/**
|
2017
|
+
* If an error occurred, an informational message about the error.
|
2018
|
+
*/
|
2019
|
+
Message?: ErrorMessage;
|
2020
|
+
/**
|
2021
|
+
* When the what-if forecast was created.
|
2022
|
+
*/
|
2023
|
+
CreationTime?: Timestamp;
|
2024
|
+
/**
|
2025
|
+
* The last time the resource was modified. The timestamp depends on the status of the job: CREATE_PENDING - The CreationTime. CREATE_IN_PROGRESS - The current timestamp. CREATE_STOPPING - The current timestamp. CREATE_STOPPED - When the job stopped. ACTIVE or CREATE_FAILED - When the job finished or failed.
|
2026
|
+
*/
|
2027
|
+
LastModificationTime?: Timestamp;
|
2028
|
+
/**
|
2029
|
+
* An array of Action and TimeSeriesConditions elements that describe what transformations were applied to which time series.
|
2030
|
+
*/
|
2031
|
+
TimeSeriesTransformations?: TimeSeriesTransformations;
|
2032
|
+
/**
|
2033
|
+
* An array of S3Config, Schema, and Format elements that describe the replacement time series.
|
2034
|
+
*/
|
2035
|
+
TimeSeriesReplacementsDataSource?: TimeSeriesReplacementsDataSource;
|
2036
|
+
/**
|
2037
|
+
* The quantiles at which probabilistic forecasts are generated. You can specify up to 5 quantiles per what-if forecast in the CreateWhatIfForecast operation. If you didn't specify quantiles, the default values are ["0.1", "0.5", "0.9"].
|
2038
|
+
*/
|
2039
|
+
ForecastTypes?: ForecastTypes;
|
2040
|
+
}
|
1693
2041
|
export type Detail = string;
|
1694
2042
|
export type Domain = "RETAIL"|"CUSTOM"|"INVENTORY_PLANNING"|"EC2_CAPACITY"|"WORK_FORCE"|"WEB_TRAFFIC"|"METRICS"|string;
|
1695
2043
|
export type Double = number;
|
@@ -2297,8 +2645,82 @@ declare namespace ForecastService {
|
|
2297
2645
|
*/
|
2298
2646
|
Tags?: Tags;
|
2299
2647
|
}
|
2648
|
+
export interface ListWhatIfAnalysesRequest {
|
2649
|
+
/**
|
2650
|
+
* If the result of the previous request was truncated, the response includes a NextToken. To retrieve the next set of results, use the token in the next request. Tokens expire after 24 hours.
|
2651
|
+
*/
|
2652
|
+
NextToken?: NextToken;
|
2653
|
+
/**
|
2654
|
+
* The number of items to return in the response.
|
2655
|
+
*/
|
2656
|
+
MaxResults?: MaxResults;
|
2657
|
+
/**
|
2658
|
+
* An array of filters. For each filter, you provide a condition and a match statement. The condition is either IS or IS_NOT, which specifies whether to include or exclude the what-if analysis jobs that match the statement from the list, respectively. The match statement consists of a key and a value. Filter properties Condition - The condition to apply. Valid values are IS and IS_NOT. To include the what-if analysis jobs that match the statement, specify IS. To exclude matching what-if analysis jobs, specify IS_NOT. Key - The name of the parameter to filter on. Valid values are WhatIfAnalysisArn and Status. Value - The value to match. For example, to list all jobs that export a forecast named electricityWhatIf, specify the following filter: "Filters": [ { "Condition": "IS", "Key": "WhatIfAnalysisArn", "Value": "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityWhatIf" } ]
|
2659
|
+
*/
|
2660
|
+
Filters?: Filters;
|
2661
|
+
}
|
2662
|
+
export interface ListWhatIfAnalysesResponse {
|
2663
|
+
/**
|
2664
|
+
* An array of WhatIfAnalysisSummary objects that describe the matched analyses.
|
2665
|
+
*/
|
2666
|
+
WhatIfAnalyses?: WhatIfAnalyses;
|
2667
|
+
/**
|
2668
|
+
* If the response is truncated, Forecast returns this token. To retrieve the next set of results, use the token in the next request.
|
2669
|
+
*/
|
2670
|
+
NextToken?: NextToken;
|
2671
|
+
}
|
2672
|
+
export interface ListWhatIfForecastExportsRequest {
|
2673
|
+
/**
|
2674
|
+
* If the result of the previous request was truncated, the response includes a NextToken. To retrieve the next set of results, use the token in the next
 request. Tokens expire after 24 hours.
|
2675
|
+
*/
|
2676
|
+
NextToken?: NextToken;
|
2677
|
+
/**
|
2678
|
+
* The number of items to return in the response.
|
2679
|
+
*/
|
2680
|
+
MaxResults?: MaxResults;
|
2681
|
+
/**
|
2682
|
+
* An array of filters. For each filter, you provide a condition and a match statement. The condition is either IS or IS_NOT, which specifies whether to include or exclude the what-if forecast export jobs that match the statement from the list, respectively. The match statement consists of a key and a value. Filter properties Condition - The condition to apply. Valid values are IS and IS_NOT. To include the forecast export jobs that match the statement, specify IS. To exclude matching forecast export jobs, specify IS_NOT. Key - The name of the parameter to filter on. Valid values are WhatIfForecastExportArn and Status. Value - The value to match. For example, to list all jobs that export a forecast named electricityWIFExport, specify the following filter: "Filters": [ { "Condition": "IS", "Key": "WhatIfForecastExportArn", "Value": "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityWIFExport" } ]
|
2683
|
+
*/
|
2684
|
+
Filters?: Filters;
|
2685
|
+
}
|
2686
|
+
export interface ListWhatIfForecastExportsResponse {
|
2687
|
+
/**
|
2688
|
+
* An array of WhatIfForecastExports objects that describe the matched forecast exports.
|
2689
|
+
*/
|
2690
|
+
WhatIfForecastExports?: WhatIfForecastExports;
|
2691
|
+
/**
|
2692
|
+
* If the response is truncated, Forecast returns this token. To retrieve the next set of results, use the token in the next request.
|
2693
|
+
*/
|
2694
|
+
NextToken?: NextToken;
|
2695
|
+
}
|
2696
|
+
export interface ListWhatIfForecastsRequest {
|
2697
|
+
/**
|
2698
|
+
* If the result of the previous request was truncated, the response includes a NextToken. To retrieve the next set of results, use the token in the next
 request. Tokens expire after 24 hours.
|
2699
|
+
*/
|
2700
|
+
NextToken?: NextToken;
|
2701
|
+
/**
|
2702
|
+
* The number of items to return in the response.
|
2703
|
+
*/
|
2704
|
+
MaxResults?: MaxResults;
|
2705
|
+
/**
|
2706
|
+
* An array of filters. For each filter, you provide a condition and a match statement. The condition is either IS or IS_NOT, which specifies whether to include or exclude the what-if forecast export jobs that match the statement from the list, respectively. The match statement consists of a key and a value. Filter properties Condition - The condition to apply. Valid values are IS and IS_NOT. To include the forecast export jobs that match the statement, specify IS. To exclude matching forecast export jobs, specify IS_NOT. Key - The name of the parameter to filter on. Valid values are WhatIfForecastArn and Status. Value - The value to match. For example, to list all jobs that export a forecast named electricityWhatIfForecast, specify the following filter: "Filters": [ { "Condition": "IS", "Key": "WhatIfForecastArn", "Value": "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityWhatIfForecast" } ]
|
2707
|
+
*/
|
2708
|
+
Filters?: Filters;
|
2709
|
+
}
|
2710
|
+
export interface ListWhatIfForecastsResponse {
|
2711
|
+
/**
|
2712
|
+
* An array of WhatIfForecasts objects that describe the matched forecasts.
|
2713
|
+
*/
|
2714
|
+
WhatIfForecasts?: WhatIfForecasts;
|
2715
|
+
/**
|
2716
|
+
* If the result of the previous request was truncated, the response includes a NextToken. To retrieve the next set of results, use the token in the next
 request. Tokens expire after 24 hours.
|
2717
|
+
*/
|
2718
|
+
NextToken?: NextToken;
|
2719
|
+
}
|
2300
2720
|
export type LocalDateTime = string;
|
2301
2721
|
export type Long = number;
|
2722
|
+
export type LongArn = string;
|
2723
|
+
export type LongArnList = LongArn[];
|
2302
2724
|
export type MaxResults = number;
|
2303
2725
|
export type Message = string;
|
2304
2726
|
export type MetricName = string;
|
@@ -2391,6 +2813,7 @@ declare namespace ForecastService {
|
|
2391
2813
|
export type Month = "JANUARY"|"FEBRUARY"|"MARCH"|"APRIL"|"MAY"|"JUNE"|"JULY"|"AUGUST"|"SEPTEMBER"|"OCTOBER"|"NOVEMBER"|"DECEMBER"|string;
|
2392
2814
|
export type Name = string;
|
2393
2815
|
export type NextToken = string;
|
2816
|
+
export type Operation = "ADD"|"SUBTRACT"|"MULTIPLY"|"DIVIDE"|string;
|
2394
2817
|
export type OptimizationMetric = "WAPE"|"RMSE"|"AverageWeightedQuantileLoss"|"MASE"|"MAPE"|string;
|
2395
2818
|
export type ParameterKey = string;
|
2396
2819
|
export interface ParameterRanges {
|
@@ -2740,6 +3163,21 @@ declare namespace ForecastService {
|
|
2740
3163
|
Hour?: Hour;
|
2741
3164
|
}
|
2742
3165
|
export type TimePointGranularity = "ALL"|"SPECIFIC"|string;
|
3166
|
+
export interface TimeSeriesCondition {
|
3167
|
+
/**
|
3168
|
+
* The item_id, dimension name, IM name, or timestamp that you are modifying.
|
3169
|
+
*/
|
3170
|
+
AttributeName: Name;
|
3171
|
+
/**
|
3172
|
+
* The value that is applied for the chosen Condition.
|
3173
|
+
*/
|
3174
|
+
AttributeValue: AttributeValue;
|
3175
|
+
/**
|
3176
|
+
* The condition to apply. Valid values are EQUALS, NOT_EQUALS, LESS_THAN and GREATER_THAN.
|
3177
|
+
*/
|
3178
|
+
Condition: Condition;
|
3179
|
+
}
|
3180
|
+
export type TimeSeriesConditions = TimeSeriesCondition[];
|
2743
3181
|
export type TimeSeriesGranularity = "ALL"|"SPECIFIC"|string;
|
2744
3182
|
export interface TimeSeriesIdentifiers {
|
2745
3183
|
DataSource?: DataSource;
|
@@ -2749,12 +3187,35 @@ declare namespace ForecastService {
|
|
2749
3187
|
*/
|
2750
3188
|
Format?: Format;
|
2751
3189
|
}
|
3190
|
+
export interface TimeSeriesReplacementsDataSource {
|
3191
|
+
S3Config: S3Config;
|
3192
|
+
Schema: Schema;
|
3193
|
+
/**
|
3194
|
+
* The format of the replacement data, CSV or PARQUET.
|
3195
|
+
*/
|
3196
|
+
Format?: Format;
|
3197
|
+
/**
|
3198
|
+
* The timestamp format of the replacement data.
|
3199
|
+
*/
|
3200
|
+
TimestampFormat?: TimestampFormat;
|
3201
|
+
}
|
2752
3202
|
export interface TimeSeriesSelector {
|
2753
3203
|
/**
|
2754
3204
|
* Details about the import file that contains the time series for which you want to create forecasts.
|
2755
3205
|
*/
|
2756
3206
|
TimeSeriesIdentifiers?: TimeSeriesIdentifiers;
|
2757
3207
|
}
|
3208
|
+
export interface TimeSeriesTransformation {
|
3209
|
+
/**
|
3210
|
+
* An array of actions that define a time series and how it is transformed. These transformations create a new time series that is used for the what-if analysis.
|
3211
|
+
*/
|
3212
|
+
Action?: Action;
|
3213
|
+
/**
|
3214
|
+
* An array of conditions that define which members of the related time series are transformed.
|
3215
|
+
*/
|
3216
|
+
TimeSeriesConditions?: TimeSeriesConditions;
|
3217
|
+
}
|
3218
|
+
export type TimeSeriesTransformations = TimeSeriesTransformation[];
|
2758
3219
|
export type TimeZone = string;
|
2759
3220
|
export type Timestamp = Date;
|
2760
3221
|
export type TimestampFormat = string;
|
@@ -2798,6 +3259,104 @@ declare namespace ForecastService {
|
|
2798
3259
|
LossValue?: Double;
|
2799
3260
|
}
|
2800
3261
|
export type WeightedQuantileLosses = WeightedQuantileLoss[];
|
3262
|
+
export type WhatIfAnalyses = WhatIfAnalysisSummary[];
|
3263
|
+
export interface WhatIfAnalysisSummary {
|
3264
|
+
/**
|
3265
|
+
* The Amazon Resource Name (ARN) of the what-if analysis.
|
3266
|
+
*/
|
3267
|
+
WhatIfAnalysisArn?: Arn;
|
3268
|
+
/**
|
3269
|
+
* The name of the what-if analysis.
|
3270
|
+
*/
|
3271
|
+
WhatIfAnalysisName?: Name;
|
3272
|
+
/**
|
3273
|
+
* The Amazon Resource Name (ARN) of the baseline forecast that is being used in this what-if analysis.
|
3274
|
+
*/
|
3275
|
+
ForecastArn?: Arn;
|
3276
|
+
/**
|
3277
|
+
* The status of the what-if analysis. States include: ACTIVE CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED CREATE_STOPPING, CREATE_STOPPED DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED The Status of the what-if analysis must be ACTIVE before you can access the analysis.
|
3278
|
+
*/
|
3279
|
+
Status?: Status;
|
3280
|
+
/**
|
3281
|
+
* If an error occurred, an informational message about the error.
|
3282
|
+
*/
|
3283
|
+
Message?: ErrorMessage;
|
3284
|
+
/**
|
3285
|
+
* When the what-if analysis was created.
|
3286
|
+
*/
|
3287
|
+
CreationTime?: Timestamp;
|
3288
|
+
/**
|
3289
|
+
* The last time the resource was modified. The timestamp depends on the status of the job: CREATE_PENDING - The CreationTime. CREATE_IN_PROGRESS - The current timestamp. CREATE_STOPPING - The current timestamp. CREATE_STOPPED - When the job stopped. ACTIVE or CREATE_FAILED - When the job finished or failed.
|
3290
|
+
*/
|
3291
|
+
LastModificationTime?: Timestamp;
|
3292
|
+
}
|
3293
|
+
export type WhatIfForecastArnListForExport = LongArn[];
|
3294
|
+
export interface WhatIfForecastExportSummary {
|
3295
|
+
/**
|
3296
|
+
* The Amazon Resource Name (ARN) of the what-if forecast export.
|
3297
|
+
*/
|
3298
|
+
WhatIfForecastExportArn?: LongArn;
|
3299
|
+
/**
|
3300
|
+
* An array of Amazon Resource Names (ARNs) that define the what-if forecasts included in the export.
|
3301
|
+
*/
|
3302
|
+
WhatIfForecastArns?: WhatIfForecastArnListForExport;
|
3303
|
+
/**
|
3304
|
+
* The what-if forecast export name.
|
3305
|
+
*/
|
3306
|
+
WhatIfForecastExportName?: Name;
|
3307
|
+
/**
|
3308
|
+
* The path to the Amazon Simple Storage Service (Amazon S3) bucket where the forecast is exported.
|
3309
|
+
*/
|
3310
|
+
Destination?: DataDestination;
|
3311
|
+
/**
|
3312
|
+
* The status of the what-if forecast export. States include: ACTIVE CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED CREATE_STOPPING, CREATE_STOPPED DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED The Status of the what-if analysis must be ACTIVE before you can access the analysis.
|
3313
|
+
*/
|
3314
|
+
Status?: Status;
|
3315
|
+
/**
|
3316
|
+
* If an error occurred, an informational message about the error.
|
3317
|
+
*/
|
3318
|
+
Message?: ErrorMessage;
|
3319
|
+
/**
|
3320
|
+
* When the what-if forecast export was created.
|
3321
|
+
*/
|
3322
|
+
CreationTime?: Timestamp;
|
3323
|
+
/**
|
3324
|
+
* The last time the resource was modified. The timestamp depends on the status of the job: CREATE_PENDING - The CreationTime. CREATE_IN_PROGRESS - The current timestamp. CREATE_STOPPING - The current timestamp. CREATE_STOPPED - When the job stopped. ACTIVE or CREATE_FAILED - When the job finished or failed.
|
3325
|
+
*/
|
3326
|
+
LastModificationTime?: Timestamp;
|
3327
|
+
}
|
3328
|
+
export type WhatIfForecastExports = WhatIfForecastExportSummary[];
|
3329
|
+
export interface WhatIfForecastSummary {
|
3330
|
+
/**
|
3331
|
+
* The Amazon Resource Name (ARN) of the what-if forecast.
|
3332
|
+
*/
|
3333
|
+
WhatIfForecastArn?: LongArn;
|
3334
|
+
/**
|
3335
|
+
* The name of the what-if forecast.
|
3336
|
+
*/
|
3337
|
+
WhatIfForecastName?: Name;
|
3338
|
+
/**
|
3339
|
+
* The Amazon Resource Name (ARN) of the what-if analysis that contains this what-if forecast.
|
3340
|
+
*/
|
3341
|
+
WhatIfAnalysisArn?: Arn;
|
3342
|
+
/**
|
3343
|
+
* The status of the what-if forecast. States include: ACTIVE CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED CREATE_STOPPING, CREATE_STOPPED DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED The Status of the what-if analysis must be ACTIVE before you can access the analysis.
|
3344
|
+
*/
|
3345
|
+
Status?: Status;
|
3346
|
+
/**
|
3347
|
+
* If an error occurred, an informational message about the error.
|
3348
|
+
*/
|
3349
|
+
Message?: ErrorMessage;
|
3350
|
+
/**
|
3351
|
+
* When the what-if forecast was created.
|
3352
|
+
*/
|
3353
|
+
CreationTime?: Timestamp;
|
3354
|
+
/**
|
3355
|
+
* The last time the resource was modified. The timestamp depends on the status of the job: CREATE_PENDING - The CreationTime. CREATE_IN_PROGRESS - The current timestamp. CREATE_STOPPING - The current timestamp. CREATE_STOPPED - When the job stopped. ACTIVE or CREATE_FAILED - When the job finished or failed.
|
3356
|
+
*/
|
3357
|
+
LastModificationTime?: Timestamp;
|
3358
|
+
}
|
3359
|
+
export type WhatIfForecasts = WhatIfForecastSummary[];
|
2801
3360
|
export interface WindowSummary {
|
2802
3361
|
/**
|
2803
3362
|
* The timestamp that defines the start of the window.
|