@aws-sdk/client-polly 3.288.0 → 3.290.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.
@@ -32,6 +32,28 @@ export interface DeleteLexiconCommandOutput extends DeleteLexiconOutput, __Metad
32
32
  * @see {@link DeleteLexiconCommandOutput} for command's `response` shape.
33
33
  * @see {@link PollyClientResolvedConfig | config} for PollyClient's `config` shape.
34
34
  *
35
+ * @throws {@link LexiconNotFoundException} (client fault)
36
+ * <p>Amazon Polly can't find the specified lexicon. This could be caused by a
37
+ * lexicon that is missing, its name is misspelled or specifying a lexicon
38
+ * that is in a different region.</p>
39
+ * <p>Verify that the lexicon exists, is in the region (see <a>ListLexicons</a>) and that you spelled its name is spelled
40
+ * correctly. Then try again.</p>
41
+ *
42
+ * @throws {@link ServiceFailureException} (server fault)
43
+ * <p>An unknown condition has caused a service failure.</p>
44
+ *
45
+ *
46
+ * @example To delete a lexicon
47
+ * ```javascript
48
+ * // Deletes a specified pronunciation lexicon stored in an AWS Region.
49
+ * const input = {
50
+ * "Name": "example"
51
+ * };
52
+ * const command = new DeleteLexiconCommand(input);
53
+ * await client.send(command);
54
+ * // example id: to-delete-a-lexicon-1481922498332
55
+ * ```
56
+ *
35
57
  */
36
58
  export declare class DeleteLexiconCommand extends $Command<DeleteLexiconCommandInput, DeleteLexiconCommandOutput, PollyClientResolvedConfig> {
37
59
  readonly input: DeleteLexiconCommandInput;
@@ -44,6 +44,52 @@ export interface DescribeVoicesCommandOutput extends DescribeVoicesOutput, __Met
44
44
  * @see {@link DescribeVoicesCommandOutput} for command's `response` shape.
45
45
  * @see {@link PollyClientResolvedConfig | config} for PollyClient's `config` shape.
46
46
  *
47
+ * @throws {@link InvalidNextTokenException} (client fault)
48
+ * <p>The NextToken is invalid. Verify that it's spelled correctly, and
49
+ * then try again.</p>
50
+ *
51
+ * @throws {@link ServiceFailureException} (server fault)
52
+ * <p>An unknown condition has caused a service failure.</p>
53
+ *
54
+ *
55
+ * @example To describe available voices
56
+ * ```javascript
57
+ * // Returns the list of voices that are available for use when requesting speech synthesis. Displayed languages are those within the specified language code. If no language code is specified, voices for all available languages are displayed.
58
+ * const input = {
59
+ * "LanguageCode": "en-GB"
60
+ * };
61
+ * const command = new DescribeVoicesCommand(input);
62
+ * const response = await client.send(command);
63
+ * /* response ==
64
+ * {
65
+ * "Voices": [
66
+ * {
67
+ * "Gender": "Female",
68
+ * "Id": "Emma",
69
+ * "LanguageCode": "en-GB",
70
+ * "LanguageName": "British English",
71
+ * "Name": "Emma"
72
+ * },
73
+ * {
74
+ * "Gender": "Male",
75
+ * "Id": "Brian",
76
+ * "LanguageCode": "en-GB",
77
+ * "LanguageName": "British English",
78
+ * "Name": "Brian"
79
+ * },
80
+ * {
81
+ * "Gender": "Female",
82
+ * "Id": "Amy",
83
+ * "LanguageCode": "en-GB",
84
+ * "LanguageName": "British English",
85
+ * "Name": "Amy"
86
+ * }
87
+ * ]
88
+ * }
89
+ * *\/
90
+ * // example id: to-describe-available-voices-1482180557753
91
+ * ```
92
+ *
47
93
  */
48
94
  export declare class DescribeVoicesCommand extends $Command<DescribeVoicesCommandInput, DescribeVoicesCommandOutput, PollyClientResolvedConfig> {
49
95
  readonly input: DescribeVoicesCommandInput;
@@ -30,6 +30,44 @@ export interface GetLexiconCommandOutput extends GetLexiconOutput, __MetadataBea
30
30
  * @see {@link GetLexiconCommandOutput} for command's `response` shape.
31
31
  * @see {@link PollyClientResolvedConfig | config} for PollyClient's `config` shape.
32
32
  *
33
+ * @throws {@link LexiconNotFoundException} (client fault)
34
+ * <p>Amazon Polly can't find the specified lexicon. This could be caused by a
35
+ * lexicon that is missing, its name is misspelled or specifying a lexicon
36
+ * that is in a different region.</p>
37
+ * <p>Verify that the lexicon exists, is in the region (see <a>ListLexicons</a>) and that you spelled its name is spelled
38
+ * correctly. Then try again.</p>
39
+ *
40
+ * @throws {@link ServiceFailureException} (server fault)
41
+ * <p>An unknown condition has caused a service failure.</p>
42
+ *
43
+ *
44
+ * @example To retrieve a lexicon
45
+ * ```javascript
46
+ * // Returns the content of the specified pronunciation lexicon stored in an AWS Region.
47
+ * const input = {
48
+ * "Name": ""
49
+ * };
50
+ * const command = new GetLexiconCommand(input);
51
+ * const response = await client.send(command);
52
+ * /* response ==
53
+ * {
54
+ * "Lexicon": {
55
+ * "Content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<lexicon version=\"1.0\" \r\n xmlns=\"http://www.w3.org/2005/01/pronunciation-lexicon\"\r\n xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" \r\n xsi:schemaLocation=\"http://www.w3.org/2005/01/pronunciation-lexicon \r\n http://www.w3.org/TR/2007/CR-pronunciation-lexicon-20071212/pls.xsd\"\r\n alphabet=\"ipa\" \r\n xml:lang=\"en-US\">\r\n <lexeme>\r\n <grapheme>W3C</grapheme>\r\n <alias>World Wide Web Consortium</alias>\r\n </lexeme>\r\n</lexicon>",
56
+ * "Name": "example"
57
+ * },
58
+ * "LexiconAttributes": {
59
+ * "Alphabet": "ipa",
60
+ * "LanguageCode": "en-US",
61
+ * "LastModified": 1478542980.117,
62
+ * "LexemesCount": 1,
63
+ * "LexiconArn": "arn:aws:polly:us-east-1:123456789012:lexicon/example",
64
+ * "Size": 503
65
+ * }
66
+ * }
67
+ * *\/
68
+ * // example id: to-retrieve-a-lexicon-1481912870836
69
+ * ```
70
+ *
33
71
  */
34
72
  export declare class GetLexiconCommand extends $Command<GetLexiconCommandInput, GetLexiconCommandOutput, PollyClientResolvedConfig> {
35
73
  readonly input: GetLexiconCommandInput;
@@ -32,6 +32,18 @@ export interface GetSpeechSynthesisTaskCommandOutput extends GetSpeechSynthesisT
32
32
  * @see {@link GetSpeechSynthesisTaskCommandOutput} for command's `response` shape.
33
33
  * @see {@link PollyClientResolvedConfig | config} for PollyClient's `config` shape.
34
34
  *
35
+ * @throws {@link InvalidTaskIdException} (client fault)
36
+ * <p>The provided Task ID is not valid. Please provide a valid Task ID and
37
+ * try again.</p>
38
+ *
39
+ * @throws {@link ServiceFailureException} (server fault)
40
+ * <p>An unknown condition has caused a service failure.</p>
41
+ *
42
+ * @throws {@link SynthesisTaskNotFoundException} (client fault)
43
+ * <p>The Speech Synthesis task with requested Task ID cannot be
44
+ * found.</p>
45
+ *
46
+ *
35
47
  */
36
48
  export declare class GetSpeechSynthesisTaskCommand extends $Command<GetSpeechSynthesisTaskCommandInput, GetSpeechSynthesisTaskCommandOutput, PollyClientResolvedConfig> {
37
49
  readonly input: GetSpeechSynthesisTaskCommandInput;
@@ -29,6 +29,40 @@ export interface ListLexiconsCommandOutput extends ListLexiconsOutput, __Metadat
29
29
  * @see {@link ListLexiconsCommandOutput} for command's `response` shape.
30
30
  * @see {@link PollyClientResolvedConfig | config} for PollyClient's `config` shape.
31
31
  *
32
+ * @throws {@link InvalidNextTokenException} (client fault)
33
+ * <p>The NextToken is invalid. Verify that it's spelled correctly, and
34
+ * then try again.</p>
35
+ *
36
+ * @throws {@link ServiceFailureException} (server fault)
37
+ * <p>An unknown condition has caused a service failure.</p>
38
+ *
39
+ *
40
+ * @example To list all lexicons in a region
41
+ * ```javascript
42
+ * // Returns a list of pronunciation lexicons stored in an AWS Region.
43
+ * const input = {};
44
+ * const command = new ListLexiconsCommand(input);
45
+ * const response = await client.send(command);
46
+ * /* response ==
47
+ * {
48
+ * "Lexicons": [
49
+ * {
50
+ * "Attributes": {
51
+ * "Alphabet": "ipa",
52
+ * "LanguageCode": "en-US",
53
+ * "LastModified": 1478542980.117,
54
+ * "LexemesCount": 1,
55
+ * "LexiconArn": "arn:aws:polly:us-east-1:123456789012:lexicon/example",
56
+ * "Size": 503
57
+ * },
58
+ * "Name": "example"
59
+ * }
60
+ * ]
61
+ * }
62
+ * *\/
63
+ * // example id: to-list-all-lexicons-in-a-region-1481842106487
64
+ * ```
65
+ *
32
66
  */
33
67
  export declare class ListLexiconsCommand extends $Command<ListLexiconsCommandInput, ListLexiconsCommandOutput, PollyClientResolvedConfig> {
34
68
  readonly input: ListLexiconsCommandInput;
@@ -31,6 +31,14 @@ export interface ListSpeechSynthesisTasksCommandOutput extends ListSpeechSynthes
31
31
  * @see {@link ListSpeechSynthesisTasksCommandOutput} for command's `response` shape.
32
32
  * @see {@link PollyClientResolvedConfig | config} for PollyClient's `config` shape.
33
33
  *
34
+ * @throws {@link InvalidNextTokenException} (client fault)
35
+ * <p>The NextToken is invalid. Verify that it's spelled correctly, and
36
+ * then try again.</p>
37
+ *
38
+ * @throws {@link ServiceFailureException} (server fault)
39
+ * <p>An unknown condition has caused a service failure.</p>
40
+ *
41
+ *
34
42
  */
35
43
  export declare class ListSpeechSynthesisTasksCommand extends $Command<ListSpeechSynthesisTasksCommandInput, ListSpeechSynthesisTasksCommandOutput, PollyClientResolvedConfig> {
36
44
  readonly input: ListSpeechSynthesisTasksCommandInput;
@@ -34,6 +34,46 @@ export interface PutLexiconCommandOutput extends PutLexiconOutput, __MetadataBea
34
34
  * @see {@link PutLexiconCommandOutput} for command's `response` shape.
35
35
  * @see {@link PollyClientResolvedConfig | config} for PollyClient's `config` shape.
36
36
  *
37
+ * @throws {@link InvalidLexiconException} (client fault)
38
+ * <p>Amazon Polly can't find the specified lexicon. Verify that the lexicon's
39
+ * name is spelled correctly, and then try again.</p>
40
+ *
41
+ * @throws {@link LexiconSizeExceededException} (client fault)
42
+ * <p>The maximum size of the specified lexicon would be exceeded by this
43
+ * operation.</p>
44
+ *
45
+ * @throws {@link MaxLexemeLengthExceededException} (client fault)
46
+ * <p>The maximum size of the lexeme would be exceeded by this
47
+ * operation.</p>
48
+ *
49
+ * @throws {@link MaxLexiconsNumberExceededException} (client fault)
50
+ * <p>The maximum number of lexicons would be exceeded by this
51
+ * operation.</p>
52
+ *
53
+ * @throws {@link ServiceFailureException} (server fault)
54
+ * <p>An unknown condition has caused a service failure.</p>
55
+ *
56
+ * @throws {@link UnsupportedPlsAlphabetException} (client fault)
57
+ * <p>The alphabet specified by the lexicon is not a supported alphabet.
58
+ * Valid values are <code>x-sampa</code> and <code>ipa</code>.</p>
59
+ *
60
+ * @throws {@link UnsupportedPlsLanguageException} (client fault)
61
+ * <p>The language specified in the lexicon is unsupported. For a list of
62
+ * supported languages, see <a href="https://docs.aws.amazon.com/polly/latest/dg/API_LexiconAttributes.html">Lexicon Attributes</a>.</p>
63
+ *
64
+ *
65
+ * @example To save a lexicon
66
+ * ```javascript
67
+ * // Stores a pronunciation lexicon in an AWS Region.
68
+ * const input = {
69
+ * "Content": "file://example.pls",
70
+ * "Name": "W3C"
71
+ * };
72
+ * const command = new PutLexiconCommand(input);
73
+ * await client.send(command);
74
+ * // example id: to-save-a-lexicon-1482272584088
75
+ * ```
76
+ *
37
77
  */
38
78
  export declare class PutLexiconCommand extends $Command<PutLexiconCommandInput, PutLexiconCommandOutput, PollyClientResolvedConfig> {
39
79
  readonly input: PutLexiconCommandInput;
@@ -38,6 +38,63 @@ export interface StartSpeechSynthesisTaskCommandOutput extends StartSpeechSynthe
38
38
  * @see {@link StartSpeechSynthesisTaskCommandOutput} for command's `response` shape.
39
39
  * @see {@link PollyClientResolvedConfig | config} for PollyClient's `config` shape.
40
40
  *
41
+ * @throws {@link EngineNotSupportedException} (client fault)
42
+ * <p>This engine is not compatible with the voice that you have designated.
43
+ * Choose a new voice that is compatible with the engine or change the engine
44
+ * and restart the operation.</p>
45
+ *
46
+ * @throws {@link InvalidS3BucketException} (client fault)
47
+ * <p>The provided Amazon S3 bucket name is invalid. Please check your input
48
+ * with S3 bucket naming requirements and try again.</p>
49
+ *
50
+ * @throws {@link InvalidS3KeyException} (client fault)
51
+ * <p>The provided Amazon S3 key prefix is invalid. Please provide a valid
52
+ * S3 object key name.</p>
53
+ *
54
+ * @throws {@link InvalidSampleRateException} (client fault)
55
+ * <p>The specified sample rate is not valid.</p>
56
+ *
57
+ * @throws {@link InvalidSnsTopicArnException} (client fault)
58
+ * <p>The provided SNS topic ARN is invalid. Please provide a valid SNS
59
+ * topic ARN and try again.</p>
60
+ *
61
+ * @throws {@link InvalidSsmlException} (client fault)
62
+ * <p>The SSML you provided is invalid. Verify the SSML syntax, spelling
63
+ * of tags and values, and then try again.</p>
64
+ *
65
+ * @throws {@link LanguageNotSupportedException} (client fault)
66
+ * <p>The language specified is not currently supported by Amazon Polly in this
67
+ * capacity.</p>
68
+ *
69
+ * @throws {@link LexiconNotFoundException} (client fault)
70
+ * <p>Amazon Polly can't find the specified lexicon. This could be caused by a
71
+ * lexicon that is missing, its name is misspelled or specifying a lexicon
72
+ * that is in a different region.</p>
73
+ * <p>Verify that the lexicon exists, is in the region (see <a>ListLexicons</a>) and that you spelled its name is spelled
74
+ * correctly. Then try again.</p>
75
+ *
76
+ * @throws {@link MarksNotSupportedForFormatException} (client fault)
77
+ * <p>Speech marks are not supported for the <code>OutputFormat</code>
78
+ * selected. Speech marks are only available for content in <code>json</code>
79
+ * format.</p>
80
+ *
81
+ * @throws {@link ServiceFailureException} (server fault)
82
+ * <p>An unknown condition has caused a service failure.</p>
83
+ *
84
+ * @throws {@link SsmlMarksNotSupportedForTextTypeException} (client fault)
85
+ * <p>SSML speech marks are not supported for plain text-type
86
+ * input.</p>
87
+ *
88
+ * @throws {@link TextLengthExceededException} (client fault)
89
+ * <p>The value of the "Text" parameter is longer than the accepted
90
+ * limits. For the <code>SynthesizeSpeech</code> API, the limit for input
91
+ * text is a maximum of 6000 characters total, of which no more than 3000 can
92
+ * be billed characters. For the <code>StartSpeechSynthesisTask</code> API,
93
+ * the maximum is 200,000 characters, of which no more than 100,000 can be
94
+ * billed characters. SSML tags are not counted as billed
95
+ * characters.</p>
96
+ *
97
+ *
41
98
  */
42
99
  export declare class StartSpeechSynthesisTaskCommand extends $Command<StartSpeechSynthesisTaskCommandInput, StartSpeechSynthesisTaskCommandOutput, PollyClientResolvedConfig> {
43
100
  readonly input: StartSpeechSynthesisTaskCommandInput;
@@ -33,6 +33,76 @@ export interface SynthesizeSpeechCommandOutput extends __WithSdkStreamMixin<Synt
33
33
  * @see {@link SynthesizeSpeechCommandOutput} for command's `response` shape.
34
34
  * @see {@link PollyClientResolvedConfig | config} for PollyClient's `config` shape.
35
35
  *
36
+ * @throws {@link EngineNotSupportedException} (client fault)
37
+ * <p>This engine is not compatible with the voice that you have designated.
38
+ * Choose a new voice that is compatible with the engine or change the engine
39
+ * and restart the operation.</p>
40
+ *
41
+ * @throws {@link InvalidSampleRateException} (client fault)
42
+ * <p>The specified sample rate is not valid.</p>
43
+ *
44
+ * @throws {@link InvalidSsmlException} (client fault)
45
+ * <p>The SSML you provided is invalid. Verify the SSML syntax, spelling
46
+ * of tags and values, and then try again.</p>
47
+ *
48
+ * @throws {@link LanguageNotSupportedException} (client fault)
49
+ * <p>The language specified is not currently supported by Amazon Polly in this
50
+ * capacity.</p>
51
+ *
52
+ * @throws {@link LexiconNotFoundException} (client fault)
53
+ * <p>Amazon Polly can't find the specified lexicon. This could be caused by a
54
+ * lexicon that is missing, its name is misspelled or specifying a lexicon
55
+ * that is in a different region.</p>
56
+ * <p>Verify that the lexicon exists, is in the region (see <a>ListLexicons</a>) and that you spelled its name is spelled
57
+ * correctly. Then try again.</p>
58
+ *
59
+ * @throws {@link MarksNotSupportedForFormatException} (client fault)
60
+ * <p>Speech marks are not supported for the <code>OutputFormat</code>
61
+ * selected. Speech marks are only available for content in <code>json</code>
62
+ * format.</p>
63
+ *
64
+ * @throws {@link ServiceFailureException} (server fault)
65
+ * <p>An unknown condition has caused a service failure.</p>
66
+ *
67
+ * @throws {@link SsmlMarksNotSupportedForTextTypeException} (client fault)
68
+ * <p>SSML speech marks are not supported for plain text-type
69
+ * input.</p>
70
+ *
71
+ * @throws {@link TextLengthExceededException} (client fault)
72
+ * <p>The value of the "Text" parameter is longer than the accepted
73
+ * limits. For the <code>SynthesizeSpeech</code> API, the limit for input
74
+ * text is a maximum of 6000 characters total, of which no more than 3000 can
75
+ * be billed characters. For the <code>StartSpeechSynthesisTask</code> API,
76
+ * the maximum is 200,000 characters, of which no more than 100,000 can be
77
+ * billed characters. SSML tags are not counted as billed
78
+ * characters.</p>
79
+ *
80
+ *
81
+ * @example To synthesize speech
82
+ * ```javascript
83
+ * // Synthesizes plain text or SSML into a file of human-like speech.
84
+ * const input = {
85
+ * "LexiconNames": [
86
+ * "example"
87
+ * ],
88
+ * "OutputFormat": "mp3",
89
+ * "SampleRate": "8000",
90
+ * "Text": "All Gaul is divided into three parts",
91
+ * "TextType": "text",
92
+ * "VoiceId": "Joanna"
93
+ * };
94
+ * const command = new SynthesizeSpeechCommand(input);
95
+ * const response = await client.send(command);
96
+ * /* response ==
97
+ * {
98
+ * "AudioStream": "TEXT",
99
+ * "ContentType": "audio/mpeg",
100
+ * "RequestCharacters": 37
101
+ * }
102
+ * *\/
103
+ * // example id: to-synthesize-speech-1482186064046
104
+ * ```
105
+ *
36
106
  */
37
107
  export declare class SynthesizeSpeechCommand extends $Command<SynthesizeSpeechCommandInput, SynthesizeSpeechCommandOutput, PollyClientResolvedConfig> {
38
108
  readonly input: SynthesizeSpeechCommandInput;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-polly",
3
3
  "description": "AWS SDK for JavaScript Polly Client for Node.js, Browser and React Native",
4
- "version": "3.288.0",
4
+ "version": "3.290.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,39 +20,39 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.288.0",
24
- "@aws-sdk/config-resolver": "3.287.0",
25
- "@aws-sdk/credential-provider-node": "3.288.0",
26
- "@aws-sdk/fetch-http-handler": "3.282.0",
27
- "@aws-sdk/hash-node": "3.272.0",
28
- "@aws-sdk/invalid-dependency": "3.272.0",
29
- "@aws-sdk/middleware-content-length": "3.282.0",
30
- "@aws-sdk/middleware-endpoint": "3.282.0",
31
- "@aws-sdk/middleware-host-header": "3.282.0",
32
- "@aws-sdk/middleware-logger": "3.288.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.282.0",
34
- "@aws-sdk/middleware-retry": "3.287.0",
35
- "@aws-sdk/middleware-serde": "3.272.0",
36
- "@aws-sdk/middleware-signing": "3.282.0",
37
- "@aws-sdk/middleware-stack": "3.272.0",
38
- "@aws-sdk/middleware-user-agent": "3.282.0",
39
- "@aws-sdk/node-config-provider": "3.287.0",
40
- "@aws-sdk/node-http-handler": "3.282.0",
41
- "@aws-sdk/protocol-http": "3.282.0",
42
- "@aws-sdk/smithy-client": "3.279.0",
43
- "@aws-sdk/types": "3.272.0",
44
- "@aws-sdk/url-parser": "3.272.0",
23
+ "@aws-sdk/client-sts": "3.290.0",
24
+ "@aws-sdk/config-resolver": "3.290.0",
25
+ "@aws-sdk/credential-provider-node": "3.290.0",
26
+ "@aws-sdk/fetch-http-handler": "3.290.0",
27
+ "@aws-sdk/hash-node": "3.290.0",
28
+ "@aws-sdk/invalid-dependency": "3.290.0",
29
+ "@aws-sdk/middleware-content-length": "3.290.0",
30
+ "@aws-sdk/middleware-endpoint": "3.290.0",
31
+ "@aws-sdk/middleware-host-header": "3.290.0",
32
+ "@aws-sdk/middleware-logger": "3.290.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.290.0",
34
+ "@aws-sdk/middleware-retry": "3.290.0",
35
+ "@aws-sdk/middleware-serde": "3.290.0",
36
+ "@aws-sdk/middleware-signing": "3.290.0",
37
+ "@aws-sdk/middleware-stack": "3.290.0",
38
+ "@aws-sdk/middleware-user-agent": "3.290.0",
39
+ "@aws-sdk/node-config-provider": "3.290.0",
40
+ "@aws-sdk/node-http-handler": "3.290.0",
41
+ "@aws-sdk/protocol-http": "3.290.0",
42
+ "@aws-sdk/smithy-client": "3.290.0",
43
+ "@aws-sdk/types": "3.290.0",
44
+ "@aws-sdk/url-parser": "3.290.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.279.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.287.0",
50
- "@aws-sdk/util-endpoints": "3.272.0",
51
- "@aws-sdk/util-retry": "3.272.0",
52
- "@aws-sdk/util-stream-browser": "3.282.0",
53
- "@aws-sdk/util-stream-node": "3.282.0",
54
- "@aws-sdk/util-user-agent-browser": "3.282.0",
55
- "@aws-sdk/util-user-agent-node": "3.287.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.290.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.290.0",
50
+ "@aws-sdk/util-endpoints": "3.290.0",
51
+ "@aws-sdk/util-retry": "3.290.0",
52
+ "@aws-sdk/util-stream-browser": "3.290.0",
53
+ "@aws-sdk/util-stream-node": "3.290.0",
54
+ "@aws-sdk/util-user-agent-browser": "3.290.0",
55
+ "@aws-sdk/util-user-agent-node": "3.290.0",
56
56
  "@aws-sdk/util-utf8": "3.254.0",
57
57
  "tslib": "^2.3.1"
58
58
  },