@cdklabs/cdk-ecs-codedeploy 0.0.7 → 0.0.9
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/ecs-appspec/index.js +1 -1
- package/lib/ecs-deployment/index.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +19 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appflow-2020-08-23.min.json +7 -2
- package/node_modules/aws-sdk/apis/backup-gateway-2021-01-01.min.json +211 -9
- package/node_modules/aws-sdk/apis/datasync-2018-11-09.min.json +3 -0
- package/node_modules/aws-sdk/apis/ecs-2014-11-13.min.json +5 -2
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +3 -0
- package/node_modules/aws-sdk/apis/kinesis-2013-12-02.min.json +304 -51
- package/node_modules/aws-sdk/apis/kinesis-2013-12-02.paginators.json +6 -3
- package/node_modules/aws-sdk/apis/m2-2021-04-28.min.json +4 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +593 -573
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +796 -160
- package/node_modules/aws-sdk/clients/appflow.d.ts +13 -0
- package/node_modules/aws-sdk/clients/backupgateway.d.ts +258 -0
- package/node_modules/aws-sdk/clients/cloudfront.d.ts +283 -283
- package/node_modules/aws-sdk/clients/connect.d.ts +7 -7
- package/node_modules/aws-sdk/clients/datasync.d.ts +64 -60
- package/node_modules/aws-sdk/clients/ecs.d.ts +15 -3
- package/node_modules/aws-sdk/clients/efs.d.ts +2 -2
- package/node_modules/aws-sdk/clients/eks.d.ts +21 -21
- package/node_modules/aws-sdk/clients/glue.d.ts +4 -0
- package/node_modules/aws-sdk/clients/guardduty.d.ts +4 -4
- package/node_modules/aws-sdk/clients/kinesis.d.ts +180 -60
- package/node_modules/aws-sdk/clients/location.d.ts +2 -2
- package/node_modules/aws-sdk/clients/m2.d.ts +81 -65
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +76 -53
- package/node_modules/aws-sdk/clients/securityhub.d.ts +971 -0
- package/node_modules/aws-sdk/clients/translate.d.ts +10 -9
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +11 -11
- package/node_modules/aws-sdk/dist/aws-sdk.js +318 -59
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +58 -58
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +6 -6
|
@@ -108,11 +108,11 @@ declare class Translate extends Service {
|
|
|
108
108
|
*/
|
|
109
109
|
listTextTranslationJobs(callback?: (err: AWSError, data: Translate.Types.ListTextTranslationJobsResponse) => void): Request<Translate.Types.ListTextTranslationJobsResponse, AWSError>;
|
|
110
110
|
/**
|
|
111
|
-
* Starts an asynchronous batch translation job. Use batch translation jobs to translate large volumes of text across multiple documents at once. For batch translation,
|
|
111
|
+
* Starts an asynchronous batch translation job. Use batch translation jobs to translate large volumes of text across multiple documents at once. For batch translation, you can input documents with different source languages (specify auto as the source language). You can specify one or more target languages. Batch translation translates each input document into each of the target languages. For more information, see Asynchronous batch processing. Batch translation jobs can be described with the DescribeTextTranslationJob operation, listed with the ListTextTranslationJobs operation, and stopped with the StopTextTranslationJob operation.
|
|
112
112
|
*/
|
|
113
113
|
startTextTranslationJob(params: Translate.Types.StartTextTranslationJobRequest, callback?: (err: AWSError, data: Translate.Types.StartTextTranslationJobResponse) => void): Request<Translate.Types.StartTextTranslationJobResponse, AWSError>;
|
|
114
114
|
/**
|
|
115
|
-
* Starts an asynchronous batch translation job. Use batch translation jobs to translate large volumes of text across multiple documents at once. For batch translation,
|
|
115
|
+
* Starts an asynchronous batch translation job. Use batch translation jobs to translate large volumes of text across multiple documents at once. For batch translation, you can input documents with different source languages (specify auto as the source language). You can specify one or more target languages. Batch translation translates each input document into each of the target languages. For more information, see Asynchronous batch processing. Batch translation jobs can be described with the DescribeTextTranslationJob operation, listed with the ListTextTranslationJobs operation, and stopped with the StopTextTranslationJob operation.
|
|
116
116
|
*/
|
|
117
117
|
startTextTranslationJob(callback?: (err: AWSError, data: Translate.Types.StartTextTranslationJobResponse) => void): Request<Translate.Types.StartTextTranslationJobResponse, AWSError>;
|
|
118
118
|
/**
|
|
@@ -341,7 +341,7 @@ declare namespace Translate {
|
|
|
341
341
|
}
|
|
342
342
|
export interface InputDataConfig {
|
|
343
343
|
/**
|
|
344
|
-
* The URI of the AWS S3 folder that contains the input files. Amazon Translate translates all the files in the folder. The folder must be in the same Region as the API endpoint you are calling.
|
|
344
|
+
* The URI of the AWS S3 folder that contains the input files. Amazon Translate translates all the files in the folder and all its sub-folders. The folder must be in the same Region as the API endpoint you are calling.
|
|
345
345
|
*/
|
|
346
346
|
S3Uri: S3Uri;
|
|
347
347
|
/**
|
|
@@ -610,11 +610,11 @@ declare namespace Translate {
|
|
|
610
610
|
*/
|
|
611
611
|
DataAccessRoleArn: IamRoleArn;
|
|
612
612
|
/**
|
|
613
|
-
* The language code of the input language.
|
|
613
|
+
* The language code of the input language. Specify the language if all input documents share the same language. If you don't know the language of the source files, or your input documents contains different source languages, select auto. Amazon Translate auto detects the source language for each input document. For a list of supported language codes, see Supported languages.
|
|
614
614
|
*/
|
|
615
615
|
SourceLanguageCode: LanguageCodeString;
|
|
616
616
|
/**
|
|
617
|
-
* The target languages of the translation job. Enter up to 10 language codes. Each input file is translated into each target language. Each language code is
|
|
617
|
+
* The target languages of the translation job. Enter up to 10 language codes. Each input file is translated into each target language. Each language code is 2 or 5 characters long. For a list of language codes, see Supported languages.
|
|
618
618
|
*/
|
|
619
619
|
TargetLanguageCodes: TargetLanguageCodeStringList;
|
|
620
620
|
/**
|
|
@@ -869,7 +869,7 @@ declare namespace Translate {
|
|
|
869
869
|
export type Timestamp = Date;
|
|
870
870
|
export interface TranslateTextRequest {
|
|
871
871
|
/**
|
|
872
|
-
* The text to translate. The text string can be a maximum of
|
|
872
|
+
* The text to translate. The text string can be a maximum of 10,000 bytes long. Depending on your character set, this may be fewer than 10,000 characters.
|
|
873
873
|
*/
|
|
874
874
|
Text: BoundedLengthString;
|
|
875
875
|
/**
|
|
@@ -893,7 +893,7 @@ declare namespace Translate {
|
|
|
893
893
|
/**
|
|
894
894
|
* The translated text.
|
|
895
895
|
*/
|
|
896
|
-
TranslatedText:
|
|
896
|
+
TranslatedText: TranslatedTextString;
|
|
897
897
|
/**
|
|
898
898
|
* The language code for the language of the source text.
|
|
899
899
|
*/
|
|
@@ -911,13 +911,14 @@ declare namespace Translate {
|
|
|
911
911
|
*/
|
|
912
912
|
AppliedSettings?: TranslationSettings;
|
|
913
913
|
}
|
|
914
|
+
export type TranslatedTextString = string;
|
|
914
915
|
export interface TranslationSettings {
|
|
915
916
|
/**
|
|
916
|
-
* You can optionally specify the desired level of formality for translations to supported target languages. The formality setting controls the level of formal language usage (also known as register) in the translation output. You can set the value to informal or formal. If you don't specify a value for formality, or if the target language doesn't support formality, the translation will ignore the formality setting. If you specify multiple target languages for the job, translate ignores the formality setting for any unsupported target language. For a list of target languages that support formality, see
|
|
917
|
+
* You can optionally specify the desired level of formality for translations to supported target languages. The formality setting controls the level of formal language usage (also known as register) in the translation output. You can set the value to informal or formal. If you don't specify a value for formality, or if the target language doesn't support formality, the translation will ignore the formality setting. If you specify multiple target languages for the job, translate ignores the formality setting for any unsupported target language. For a list of target languages that support formality, see Supported languages in the Amazon Translate Developer Guide.
|
|
917
918
|
*/
|
|
918
919
|
Formality?: Formality;
|
|
919
920
|
/**
|
|
920
|
-
* Enable the profanity setting if you want Amazon Translate to mask profane words and phrases in your translation output. To mask profane words and phrases, Amazon Translate replaces them with the grawlix string “?$#@$“. This 5-character sequence is used for each profane word or phrase, regardless of the length or number of words. Amazon Translate doesn't detect profanity in all of its supported languages. For languages that support profanity detection, see
|
|
921
|
+
* Enable the profanity setting if you want Amazon Translate to mask profane words and phrases in your translation output. To mask profane words and phrases, Amazon Translate replaces them with the grawlix string “?$#@$“. This 5-character sequence is used for each profane word or phrase, regardless of the length or number of words. Amazon Translate doesn't detect profanity in all of its supported languages. For languages that don't support profanity detection, see Unsupported languages in the Amazon Translate Developer Guide. If you specify multiple target languages for the job, all the target languages must support profanity masking. If any of the target languages don't support profanity masking, the translation job won't mask profanity for any target language.
|
|
921
922
|
*/
|
|
922
923
|
Profanity?: Profanity;
|
|
923
924
|
}
|