Skip to content

Commit

Permalink
Publish v3.304.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Mar 31, 2023
1 parent 6308963 commit f86f5b8
Show file tree
Hide file tree
Showing 27 changed files with 178 additions and 12 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.304.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.303.0...v3.304.0) (2023-03-31)


### Features

* **client-internetmonitor:** This release adds a new feature for Amazon CloudWatch Internet Monitor that enables customers to deliver internet measurements to Amazon S3 buckets as well as CloudWatch Logs. ([e36cdb7](https://github.com/aws/aws-sdk-js-v3/commit/e36cdb778180fe8ab333ce63384dd4d374d6fc66))
* **client-sagemaker-featurestore-runtime:** In this release, you can now chose between soft delete and hard delete when calling the DeleteRecord API, so you have more flexibility when it comes to managing online store data. ([6037599](https://github.com/aws/aws-sdk-js-v3/commit/6037599e4b374065cd7c327d2dfbc5255afb2967))
* **client-sms:** Deprecating AWS Server Migration Service. ([4a0bb37](https://github.com/aws/aws-sdk-js-v3/commit/4a0bb37525717b6d07ef3fc9ef4351e17a36481f))
* **clients:** update client endpoints as of 2023-03-31 ([6308963](https://github.com/aws/aws-sdk-js-v3/commit/6308963afeafcf369302ddc780791b39bf5deb6e))





# [3.303.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.302.0...v3.303.0) (2023-03-30)


Expand Down
8 changes: 8 additions & 0 deletions clients/client-auto-scaling/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.304.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.303.0...v3.304.0) (2023-03-31)

**Note:** Version bump only for package @aws-sdk/client-auto-scaling





# [3.303.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.302.0...v3.303.0) (2023-03-30)


Expand Down
2 changes: 1 addition & 1 deletion clients/client-auto-scaling/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-auto-scaling",
"description": "AWS SDK for JavaScript Auto Scaling Client for Node.js, Browser and React Native",
"version": "3.303.0",
"version": "3.304.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,22 @@ export interface AttachTrafficSourcesCommandOutput extends AttachTrafficSourcesR
* <p>The service-linked role is not yet ready for use.</p>
*
*
* @example To attach a target group to an Auto Scaling group
* ```javascript
* // This example attaches the specified target group to the specified Auto Scaling group.
* const input = {
* "AutoScalingGroupName": "my-auto-scaling-group",
* "TrafficSources": [
* {
* "Identifier": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067"
* }
* ]
* };
* const command = new AttachTrafficSourcesCommand(input);
* await client.send(command);
* // example id: to-attach-a-target-group-to-an-auto-scaling-group-1680036570089
* ```
*
*/
export class AttachTrafficSourcesCommand extends $Command<
AttachTrafficSourcesCommandInput,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,29 @@ export interface DescribeTrafficSourcesCommandOutput extends DescribeTrafficSour
* instance, or load balancer).</p>
*
*
* @example To describe the target groups for an Auto Scaling group
* ```javascript
* // This example describes the target groups attached to the specified Auto Scaling group.
* const input = {
* "AutoScalingGroupName": "my-auto-scaling-group"
* };
* const command = new DescribeTrafficSourcesCommand(input);
* const response = await client.send(command);
* /* response ==
* {
* "NextToken": "",
* "TrafficSources": [
* {
* "Identifier": "arn:aws:vpc-lattice:us-west-2:123456789012:targetgroup/tg-0e2f2665eEXAMPLE",
* "State": "InService",
* "Type": "vpc-lattice"
* }
* ]
* }
* *\/
* // example id: to-describe-the-target-groups-for-an-auto-scaling-group-1680040714521
* ```
*
*/
export class DescribeTrafficSourcesCommand extends $Command<
DescribeTrafficSourcesCommandInput,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,22 @@ export interface DetachTrafficSourcesCommandOutput extends DetachTrafficSourcesR
* instance, or load balancer).</p>
*
*
* @example To detach a target group from an Auto Scaling group
* ```javascript
* // This example detaches the specified target group from the specified Auto Scaling group.
* const input = {
* "AutoScalingGroupName": "my-auto-scaling-group",
* "TrafficSources": [
* {
* "Identifier": "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067"
* }
* ]
* };
* const command = new DetachTrafficSourcesCommand(input);
* await client.send(command);
* // example id: to-detach-a-target-group-from-an-auto-scaling-group-1680040404169
* ```
*
*/
export class DetachTrafficSourcesCommand extends $Command<
DetachTrafficSourcesCommandInput,
Expand Down
8 changes: 8 additions & 0 deletions clients/client-ec2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.304.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.303.0...v3.304.0) (2023-03-31)

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





# [3.303.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.302.0...v3.303.0) (2023-03-30)


Expand Down
2 changes: 1 addition & 1 deletion clients/client-ec2/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-ec2",
"description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
"version": "3.303.0",
"version": "3.304.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-internetmonitor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.304.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.303.0...v3.304.0) (2023-03-31)


### Features

* **client-internetmonitor:** This release adds a new feature for Amazon CloudWatch Internet Monitor that enables customers to deliver internet measurements to Amazon S3 buckets as well as CloudWatch Logs. ([e36cdb7](https://github.com/aws/aws-sdk-js-v3/commit/e36cdb778180fe8ab333ce63384dd4d374d6fc66))





# [3.303.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.302.0...v3.303.0) (2023-03-30)

**Note:** Version bump only for package @aws-sdk/client-internetmonitor
Expand Down
2 changes: 1 addition & 1 deletion clients/client-internetmonitor/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-internetmonitor",
"description": "AWS SDK for JavaScript Internetmonitor Client for Node.js, Browser and React Native",
"version": "3.303.0",
"version": "3.304.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down
8 changes: 8 additions & 0 deletions clients/client-resiliencehub/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.304.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.303.0...v3.304.0) (2023-03-31)

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





# [3.303.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.302.0...v3.303.0) (2023-03-30)

**Note:** Version bump only for package @aws-sdk/client-resiliencehub
Expand Down
2 changes: 1 addition & 1 deletion clients/client-resiliencehub/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-resiliencehub",
"description": "AWS SDK for JavaScript Resiliencehub Client for Node.js, Browser and React Native",
"version": "3.303.0",
"version": "3.304.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down
8 changes: 8 additions & 0 deletions clients/client-s3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.304.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.303.0...v3.304.0) (2023-03-31)

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





# [3.303.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.302.0...v3.303.0) (2023-03-30)

**Note:** Version bump only for package @aws-sdk/client-s3
Expand Down
2 changes: 1 addition & 1 deletion clients/client-s3/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-s3",
"description": "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
"version": "3.303.0",
"version": "3.304.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-sagemaker-featurestore-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.304.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.303.0...v3.304.0) (2023-03-31)


### Features

* **client-sagemaker-featurestore-runtime:** In this release, you can now chose between soft delete and hard delete when calling the DeleteRecord API, so you have more flexibility when it comes to managing online store data. ([6037599](https://github.com/aws/aws-sdk-js-v3/commit/6037599e4b374065cd7c327d2dfbc5255afb2967))





# [3.303.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.302.0...v3.303.0) (2023-03-30)

**Note:** Version bump only for package @aws-sdk/client-sagemaker-featurestore-runtime
Expand Down
2 changes: 1 addition & 1 deletion clients/client-sagemaker-featurestore-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-sagemaker-featurestore-runtime",
"description": "AWS SDK for JavaScript Sagemaker Featurestore Runtime Client for Node.js, Browser and React Native",
"version": "3.303.0",
"version": "3.304.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-sms/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.304.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.303.0...v3.304.0) (2023-03-31)


### Features

* **client-sms:** Deprecating AWS Server Migration Service. ([4a0bb37](https://github.com/aws/aws-sdk-js-v3/commit/4a0bb37525717b6d07ef3fc9ef4351e17a36481f))





# [3.303.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.302.0...v3.303.0) (2023-03-30)

**Note:** Version bump only for package @aws-sdk/client-sms
Expand Down
2 changes: 1 addition & 1 deletion clients/client-sms/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-sms",
"description": "AWS SDK for JavaScript Sms Client for Node.js, Browser and React Native",
"version": "3.303.0",
"version": "3.304.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.303.0",
"version": "3.304.0",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
Expand Down
8 changes: 8 additions & 0 deletions lib/lib-storage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.304.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.303.0...v3.304.0) (2023-03-31)

**Note:** Version bump only for package @aws-sdk/lib-storage





# [3.303.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.302.0...v3.303.0) (2023-03-30)

**Note:** Version bump only for package @aws-sdk/lib-storage
Expand Down
2 changes: 1 addition & 1 deletion lib/lib-storage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/lib-storage",
"version": "3.303.0",
"version": "3.304.0",
"description": "Storage higher order operation",
"main": "./dist-cjs/index.js",
"module": "./dist-es/index.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/s3-presigned-post/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.304.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.303.0...v3.304.0) (2023-03-31)

**Note:** Version bump only for package @aws-sdk/s3-presigned-post





# [3.303.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.302.0...v3.303.0) (2023-03-30)

**Note:** Version bump only for package @aws-sdk/s3-presigned-post
Expand Down
2 changes: 1 addition & 1 deletion packages/s3-presigned-post/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/s3-presigned-post",
"version": "3.303.0",
"version": "3.304.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down
8 changes: 8 additions & 0 deletions packages/s3-request-presigner/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.304.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.303.0...v3.304.0) (2023-03-31)

**Note:** Version bump only for package @aws-sdk/s3-request-presigner





# [3.303.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.302.0...v3.303.0) (2023-03-30)

**Note:** Version bump only for package @aws-sdk/s3-request-presigner
Expand Down
2 changes: 1 addition & 1 deletion packages/s3-request-presigner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/s3-request-presigner",
"version": "3.303.0",
"version": "3.304.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down
8 changes: 8 additions & 0 deletions private/aws-client-api-test/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.304.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.303.0...v3.304.0) (2023-03-31)

**Note:** Version bump only for package @aws-sdk/aws-client-api-test





# [3.303.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.302.0...v3.303.0) (2023-03-30)

**Note:** Version bump only for package @aws-sdk/aws-client-api-test
Expand Down
2 changes: 1 addition & 1 deletion private/aws-client-api-test/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/aws-client-api-test",
"description": "Test suite for client interface stability",
"version": "3.303.0",
"version": "3.304.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down

0 comments on commit f86f5b8

Please sign in to comment.