Skip to content

Commit f922dc1

Browse files
author
awstools
committed
Publish v3.602.0
1 parent f9179c6 commit f922dc1

File tree

32 files changed

+279
-13
lines changed

32 files changed

+279
-13
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.602.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.601.0...v3.602.0) (2024-06-20)
7+
8+
9+
### Features
10+
11+
* **client-bedrock-runtime:** This release adds document support to Converse and ConverseStream APIs ([7f5bfb9](https://github.com/aws/aws-sdk-js-v3/commit/7f5bfb9e206cd3c529b3a18ac1a51dff54526172))
12+
* **client-codeartifact:** Add support for the Cargo package format. ([6d048ab](https://github.com/aws/aws-sdk-js-v3/commit/6d048ab50a46c56b06cb88685336d30d0f2081ef))
13+
* **client-compute-optimizer:** This release enables AWS Compute Optimizer to analyze and generate optimization recommendations for Amazon RDS MySQL and RDS PostgreSQL. ([1cf227f](https://github.com/aws/aws-sdk-js-v3/commit/1cf227f89097b9e4b40be9370e9a9d0588f5e4ac))
14+
* **client-cost-optimization-hub:** This release enables AWS Cost Optimization Hub to show cost optimization recommendations for Amazon RDS MySQL and RDS PostgreSQL. ([52a0e8f](https://github.com/aws/aws-sdk-js-v3/commit/52a0e8f8054525f71fb40da9d0b74137202c9514))
15+
* **client-glue:** Fix Glue paginators for Jobs, JobRuns, Triggers, Blueprints and Workflows. ([8741cd4](https://github.com/aws/aws-sdk-js-v3/commit/8741cd4af5ae92ff4566cbea275a6647559d37c0))
16+
* **client-ivs-realtime:** IVS Real-Time now offers customers the ability to record individual stage participants to S3. ([b3374d1](https://github.com/aws/aws-sdk-js-v3/commit/b3374d147c877fa5011951f89a314d999b8ab0fc))
17+
* **client-sagemaker:** Adds support for model references in Hub service, and adds support for cross-account access of Hubs ([1048205](https://github.com/aws/aws-sdk-js-v3/commit/10482051cc1f13c67f077e7258571fbd0ae8f230))
18+
* **clients:** update client endpoints as of 2024-06-20 ([f9179c6](https://github.com/aws/aws-sdk-js-v3/commit/f9179c6fbbf8babbea3d1fe6218440a39b250c9b))
19+
20+
21+
22+
23+
624
# [3.601.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.600.0...v3.601.0) (2024-06-19)
725

826

clients/client-artifact/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.602.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.601.0...v3.602.0) (2024-06-20)
7+
8+
**Note:** Version bump only for package @aws-sdk/client-artifact
9+
10+
11+
12+
13+
614
# [3.601.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.600.0...v3.601.0) (2024-06-19)
715

816

clients/client-artifact/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-artifact",
33
"description": "AWS SDK for JavaScript Artifact Client for Node.js, Browser and React Native",
4-
"version": "3.601.0",
4+
"version": "3.602.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "tsc -p tsconfig.cjs.json",

clients/client-artifact/src/commands/GetAccountSettingsCommand.ts

+16
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,22 @@ export interface GetAccountSettingsCommandOutput extends GetAccountSettingsRespo
7777
* <p>Base exception class for all service exceptions from Artifact service.</p>
7878
*
7979
* @public
80+
* @example Invoke GetAccountSettings operation
81+
* ```javascript
82+
* // Get the current account settings.
83+
* const input = {};
84+
* const command = new GetAccountSettingsCommand(input);
85+
* const response = await client.send(command);
86+
* /* response ==
87+
* {
88+
* "accountSettings": {
89+
* "notificationSubscriptionStatus": "SUBSCRIBED"
90+
* }
91+
* }
92+
* *\/
93+
* // example id: example-1
94+
* ```
95+
*
8096
*/
8197
export class GetAccountSettingsCommand extends $Command
8298
.classBuilder<

clients/client-artifact/src/commands/GetReportCommand.ts

+20
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,26 @@ export interface GetReportCommandOutput extends GetReportResponse, __MetadataBea
7979
* <p>Base exception class for all service exceptions from Artifact service.</p>
8080
*
8181
* @public
82+
* @example Invoke GetReport operation on the latest version of a specific report
83+
* ```javascript
84+
* // The GetReport operation is invoked on a reportId and on a optional version.
85+
* // Callers must provide a termToken, which is provided by the GetTermForReport
86+
* // operation. If callers do not provide a version, it will default to the
87+
* // report's latest version
88+
* const input = {
89+
* "reportId": "report-1hVFddebtfDNJAUf",
90+
* "termToken": "term-token-gPFEGk7CF4wS901w7ppYclt7"
91+
* };
92+
* const command = new GetReportCommand(input);
93+
* const response = await client.send(command);
94+
* /* response ==
95+
* {
96+
* "documentPresignedUrl": "<Presigned S3 URL>"
97+
* }
98+
* *\/
99+
* // example id: example-1
100+
* ```
101+
*
82102
*/
83103
export class GetReportCommand extends $Command
84104
.classBuilder<

clients/client-artifact/src/commands/GetReportMetadataCommand.ts

+32
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,38 @@ export interface GetReportMetadataCommandOutput extends GetReportMetadataRespons
9696
* <p>Base exception class for all service exceptions from Artifact service.</p>
9797
*
9898
* @public
99+
* @example Invoke GetReportMetadata operation on the latest version of a specific report
100+
* ```javascript
101+
* // The GetReportMetadata operation is invoked on a reportId and on a optional version.
102+
* // If callers do not provide a version, it will default to the report's latest version.
103+
* const input = {
104+
* "reportId": "report-bqhUJF3FrQZsMJpb"
105+
* };
106+
* const command = new GetReportMetadataCommand(input);
107+
* const response = await client.send(command);
108+
* /* response ==
109+
* {
110+
* "reportDetails": {
111+
* "version": 1,
112+
* "name": "Name of report",
113+
* "arn": "arn:aws:artifact:us-east-1::report/report-bqhUJF3FrQZsMJpb:1",
114+
* "category": "Artifact Category",
115+
* "companyName": "AWS",
116+
* "createdAt": "2022-05-27T23:17:00.343940Z",
117+
* "description": "Description of report",
118+
* "id": "report-bqhUJF3FrQZsMJpb",
119+
* "periodEnd": "2022-04-01T20:32:04Z",
120+
* "periodStart": "2022-04-01T20:32:04Z",
121+
* "productName": "Product of report",
122+
* "series": "Artifact Series",
123+
* "state": "PUBLISHED",
124+
* "termArn": "arn:aws:artifact:us-east-1::term/term-gLJGG12NyPtYcmtu:1"
125+
* }
126+
* }
127+
* *\/
128+
* // example id: example-1
129+
* ```
130+
*
99131
*/
100132
export class GetReportMetadataCommand extends $Command
101133
.classBuilder<

clients/client-artifact/src/commands/GetTermForReportCommand.ts

+18
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,24 @@ export interface GetTermForReportCommandOutput extends GetTermForReportResponse,
7979
* <p>Base exception class for all service exceptions from Artifact service.</p>
8080
*
8181
* @public
82+
* @example Invoke GetTermForReport operation on the latest version of a specific report
83+
* ```javascript
84+
* // The GetTermForReport operation is invoked on a reportId and on a optional version.
85+
* // If callers do not provide a version, it will default to the report's latest version.
86+
* const input = {
87+
* "reportId": "report-bqhUJF3FrQZsMJpb"
88+
* };
89+
* const command = new GetTermForReportCommand(input);
90+
* const response = await client.send(command);
91+
* /* response ==
92+
* {
93+
* "documentPresignedUrl": "<Presigned S3 URL>",
94+
* "termToken": "term-token-gPFEGk7CF4wS901w7ppYclt7"
95+
* }
96+
* *\/
97+
* // example id: example-1
98+
* ```
99+
*
82100
*/
83101
export class GetTermForReportCommand extends $Command
84102
.classBuilder<

clients/client-artifact/src/commands/ListReportsCommand.ts

+30
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,36 @@ export interface ListReportsCommandOutput extends ListReportsResponse, __Metadat
9494
* <p>Base exception class for all service exceptions from Artifact service.</p>
9595
*
9696
* @public
97+
* @example Invoke ListReports operation
98+
* ```javascript
99+
* // The ListReports operation returns a collection of report resources.
100+
* const input = {};
101+
* const command = new ListReportsCommand(input);
102+
* const response = await client.send(command);
103+
* /* response ==
104+
* {
105+
* "nextToken": "gPFEGk7CF4wS901w7ppYclt7gPFEGk7CF4wS901w7ppYclt7gPFEGk7CF4wS901w7ppYclt7",
106+
* "reports": [
107+
* {
108+
* "version": 1,
109+
* "name": "Name of report",
110+
* "arn": "arn:aws:artifact:us-east-1::report/report-bqhUJF3FrQZsMJpb",
111+
* "category": "Artifact Category",
112+
* "companyName": "AWS",
113+
* "description": "Description of report",
114+
* "id": "report-bqhUJF3FrQZsMJpb",
115+
* "periodEnd": "2022-04-01T20:32:04Z",
116+
* "periodStart": "2022-04-01T20:32:04Z",
117+
* "productName": "Product of report",
118+
* "series": "Artifact Series",
119+
* "state": "PUBLISHED"
120+
* }
121+
* ]
122+
* }
123+
* *\/
124+
* // example id: example-1
125+
* ```
126+
*
97127
*/
98128
export class ListReportsCommand extends $Command
99129
.classBuilder<

clients/client-artifact/src/commands/PutAccountSettingsCommand.ts

+18
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,24 @@ export interface PutAccountSettingsCommandOutput extends PutAccountSettingsRespo
7979
* <p>Base exception class for all service exceptions from Artifact service.</p>
8080
*
8181
* @public
82+
* @example Invoke PutAccountSettings operation
83+
* ```javascript
84+
* // Set the account settings.
85+
* const input = {
86+
* "notificationSubscriptionStatus": "SUBSCRIBED"
87+
* };
88+
* const command = new PutAccountSettingsCommand(input);
89+
* const response = await client.send(command);
90+
* /* response ==
91+
* {
92+
* "accountSettings": {
93+
* "notificationSubscriptionStatus": "SUBSCRIBED"
94+
* }
95+
* }
96+
* *\/
97+
* // example id: example-1
98+
* ```
99+
*
82100
*/
83101
export class PutAccountSettingsCommand extends $Command
84102
.classBuilder<

clients/client-bedrock-runtime/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.602.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.601.0...v3.602.0) (2024-06-20)
7+
8+
9+
### Features
10+
11+
* **client-bedrock-runtime:** This release adds document support to Converse and ConverseStream APIs ([7f5bfb9](https://github.com/aws/aws-sdk-js-v3/commit/7f5bfb9e206cd3c529b3a18ac1a51dff54526172))
12+
13+
14+
15+
16+
617
# [3.600.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.599.0...v3.600.0) (2024-06-18)
718

819

clients/client-bedrock-runtime/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-bedrock-runtime",
33
"description": "AWS SDK for JavaScript Bedrock Runtime Client for Node.js, Browser and React Native",
4-
"version": "3.600.0",
4+
"version": "3.602.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-runtime",

clients/client-codeartifact/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.602.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.601.0...v3.602.0) (2024-06-20)
7+
8+
9+
### Features
10+
11+
* **client-codeartifact:** Add support for the Cargo package format. ([6d048ab](https://github.com/aws/aws-sdk-js-v3/commit/6d048ab50a46c56b06cb88685336d30d0f2081ef))
12+
13+
14+
15+
16+
617
# [3.600.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.599.0...v3.600.0) (2024-06-18)
718

819
**Note:** Version bump only for package @aws-sdk/client-codeartifact

clients/client-codeartifact/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-codeartifact",
33
"description": "AWS SDK for JavaScript Codeartifact Client for Node.js, Browser and React Native",
4-
"version": "3.600.0",
4+
"version": "3.602.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "node ../../scripts/compilation/inline client-codeartifact",

clients/client-compute-optimizer/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.602.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.601.0...v3.602.0) (2024-06-20)
7+
8+
9+
### Features
10+
11+
* **client-compute-optimizer:** This release enables AWS Compute Optimizer to analyze and generate optimization recommendations for Amazon RDS MySQL and RDS PostgreSQL. ([1cf227f](https://github.com/aws/aws-sdk-js-v3/commit/1cf227f89097b9e4b40be9370e9a9d0588f5e4ac))
12+
13+
14+
15+
16+
617
# [3.600.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.599.0...v3.600.0) (2024-06-18)
718

819
**Note:** Version bump only for package @aws-sdk/client-compute-optimizer

clients/client-compute-optimizer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-compute-optimizer",
33
"description": "AWS SDK for JavaScript Compute Optimizer Client for Node.js, Browser and React Native",
4-
"version": "3.600.0",
4+
"version": "3.602.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "node ../../scripts/compilation/inline client-compute-optimizer",

clients/client-cost-optimization-hub/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.602.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.601.0...v3.602.0) (2024-06-20)
7+
8+
9+
### Features
10+
11+
* **client-cost-optimization-hub:** This release enables AWS Cost Optimization Hub to show cost optimization recommendations for Amazon RDS MySQL and RDS PostgreSQL. ([52a0e8f](https://github.com/aws/aws-sdk-js-v3/commit/52a0e8f8054525f71fb40da9d0b74137202c9514))
12+
13+
14+
15+
16+
617
# [3.600.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.599.0...v3.600.0) (2024-06-18)
718

819
**Note:** Version bump only for package @aws-sdk/client-cost-optimization-hub

clients/client-cost-optimization-hub/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-cost-optimization-hub",
33
"description": "AWS SDK for JavaScript Cost Optimization Hub Client for Node.js, Browser and React Native",
4-
"version": "3.600.0",
4+
"version": "3.602.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "node ../../scripts/compilation/inline client-cost-optimization-hub",

clients/client-dynamodb/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.602.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.601.0...v3.602.0) (2024-06-20)
7+
8+
**Note:** Version bump only for package @aws-sdk/client-dynamodb
9+
10+
11+
12+
13+
614
# [3.600.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.599.0...v3.600.0) (2024-06-18)
715

816
**Note:** Version bump only for package @aws-sdk/client-dynamodb

clients/client-dynamodb/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-dynamodb",
33
"description": "AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native",
4-
"version": "3.600.0",
4+
"version": "3.602.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "node ../../scripts/compilation/inline client-dynamodb",

clients/client-ivs-realtime/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.602.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.601.0...v3.602.0) (2024-06-20)
7+
8+
9+
### Features
10+
11+
* **client-ivs-realtime:** IVS Real-Time now offers customers the ability to record individual stage participants to S3. ([b3374d1](https://github.com/aws/aws-sdk-js-v3/commit/b3374d147c877fa5011951f89a314d999b8ab0fc))
12+
13+
14+
15+
16+
617
# [3.600.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.599.0...v3.600.0) (2024-06-18)
718

819
**Note:** Version bump only for package @aws-sdk/client-ivs-realtime

clients/client-ivs-realtime/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-ivs-realtime",
33
"description": "AWS SDK for JavaScript Ivs Realtime Client for Node.js, Browser and React Native",
4-
"version": "3.600.0",
4+
"version": "3.602.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "node ../../scripts/compilation/inline client-ivs-realtime",

0 commit comments

Comments
 (0)