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
@@ -451,6 +451,14 @@ declare class LexModelsV2 extends Service {
|
|
451
451
|
* Starts importing a bot, bot locale, or custom vocabulary from a zip archive that you uploaded to an S3 bucket.
|
452
452
|
*/
|
453
453
|
startImport(callback?: (err: AWSError, data: LexModelsV2.Types.StartImportResponse) => void): Request<LexModelsV2.Types.StartImportResponse, AWSError>;
|
454
|
+
/**
|
455
|
+
* Stop an already running Bot Recommendation request.
|
456
|
+
*/
|
457
|
+
stopBotRecommendation(params: LexModelsV2.Types.StopBotRecommendationRequest, callback?: (err: AWSError, data: LexModelsV2.Types.StopBotRecommendationResponse) => void): Request<LexModelsV2.Types.StopBotRecommendationResponse, AWSError>;
|
458
|
+
/**
|
459
|
+
* Stop an already running Bot Recommendation request.
|
460
|
+
*/
|
461
|
+
stopBotRecommendation(callback?: (err: AWSError, data: LexModelsV2.Types.StopBotRecommendationResponse) => void): Request<LexModelsV2.Types.StopBotRecommendationResponse, AWSError>;
|
454
462
|
/**
|
455
463
|
* Adds the specified tags to the specified resource. If a tag key already exists, the existing value is replaced with the new value.
|
456
464
|
*/
|
@@ -874,7 +882,7 @@ declare namespace LexModelsV2 {
|
|
874
882
|
*/
|
875
883
|
statistics?: BotRecommendationResultStatistics;
|
876
884
|
}
|
877
|
-
export type BotRecommendationStatus = "Processing"|"Deleting"|"Deleted"|"Downloading"|"Updating"|"Available"|"Failed"|string;
|
885
|
+
export type BotRecommendationStatus = "Processing"|"Deleting"|"Deleted"|"Downloading"|"Updating"|"Available"|"Failed"|"Stopping"|"Stopped"|string;
|
878
886
|
export interface BotRecommendationSummary {
|
879
887
|
/**
|
880
888
|
* The status of the bot recommendation. If the status is Failed, then the reasons for the failure are listed in the failureReasons field.
|
@@ -4748,6 +4756,46 @@ declare namespace LexModelsV2 {
|
|
4748
4756
|
allowInterrupt?: BoxedBoolean;
|
4749
4757
|
}
|
4750
4758
|
export type StillWaitingResponseTimeout = number;
|
4759
|
+
export interface StopBotRecommendationRequest {
|
4760
|
+
/**
|
4761
|
+
* The unique identifier of the bot containing the bot recommendation to be stopped.
|
4762
|
+
*/
|
4763
|
+
botId: Id;
|
4764
|
+
/**
|
4765
|
+
* The version of the bot containing the bot recommendation.
|
4766
|
+
*/
|
4767
|
+
botVersion: DraftBotVersion;
|
4768
|
+
/**
|
4769
|
+
* The identifier of the language and locale of the bot recommendation to stop. The string must match one of the supported locales. For more information, see Supported languages
|
4770
|
+
*/
|
4771
|
+
localeId: LocaleId;
|
4772
|
+
/**
|
4773
|
+
* The unique identifier of the bot recommendation to be stopped.
|
4774
|
+
*/
|
4775
|
+
botRecommendationId: Id;
|
4776
|
+
}
|
4777
|
+
export interface StopBotRecommendationResponse {
|
4778
|
+
/**
|
4779
|
+
* The unique identifier of the bot containing the bot recommendation that is being stopped.
|
4780
|
+
*/
|
4781
|
+
botId?: Id;
|
4782
|
+
/**
|
4783
|
+
* The version of the bot containing the recommendation that is being stopped.
|
4784
|
+
*/
|
4785
|
+
botVersion?: DraftBotVersion;
|
4786
|
+
/**
|
4787
|
+
* The identifier of the language and locale of the bot response to stop. The string must match one of the supported locales. For more information, see Supported languages
|
4788
|
+
*/
|
4789
|
+
localeId?: LocaleId;
|
4790
|
+
/**
|
4791
|
+
* The status of the bot recommendation. If the status is Failed, then the reasons for the failure are listed in the failureReasons field.
|
4792
|
+
*/
|
4793
|
+
botRecommendationStatus?: BotRecommendationStatus;
|
4794
|
+
/**
|
4795
|
+
* The unique identifier of the bot recommendation that is being stopped.
|
4796
|
+
*/
|
4797
|
+
botRecommendationId?: Id;
|
4798
|
+
}
|
4751
4799
|
export type String = string;
|
4752
4800
|
export type StringMap = {[key: string]: String};
|
4753
4801
|
export type SynonymList = SampleValue[];
|