From 84fd78ba51b3362b48ea983c263dd368b88f4287 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20=C5=A0tekl?= Date: Wed, 14 Aug 2024 22:57:34 +0200 Subject: [PATCH 1/9] fix(lib-dynamodb): missing `@smithy/core` dependency in `@aws-sdk/lib-dynamodb` (#6384) --- lib/lib-dynamodb/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/lib-dynamodb/package.json b/lib/lib-dynamodb/package.json index 52f6292f72e58..7e43fdf21a1d5 100644 --- a/lib/lib-dynamodb/package.json +++ b/lib/lib-dynamodb/package.json @@ -27,6 +27,7 @@ "license": "Apache-2.0", "dependencies": { "@aws-sdk/util-dynamodb": "*", + "@smithy/core": "^2.3.2", "@smithy/smithy-client": "^3.1.12", "@smithy/types": "^3.3.0", "tslib": "^2.6.2" From d7b161064452a259ebb26502a14ef17159cb1f90 Mon Sep 17 00:00:00 2001 From: George Fu Date: Thu, 15 Aug 2024 13:22:17 -0400 Subject: [PATCH 2/9] fix(credential-providers): avoid sharing http2 requestHandler with inner STS (#6389) --- .../client-sts/src/defaultStsRoleAssumers.ts | 12 ++++- .../test/defaultRoleAssumers.spec.ts | 49 +++++++++++++++++-- .../sts-client-defaultRoleAssumers.spec.ts | 35 +++++++++++-- .../sts-client-defaultStsRoleAssumers.ts | 12 ++++- 4 files changed, 94 insertions(+), 14 deletions(-) diff --git a/clients/client-sts/src/defaultStsRoleAssumers.ts b/clients/client-sts/src/defaultStsRoleAssumers.ts index f68235ce8eac6..9daf5da2e9128 100644 --- a/clients/client-sts/src/defaultStsRoleAssumers.ts +++ b/clients/client-sts/src/defaultStsRoleAssumers.ts @@ -101,11 +101,13 @@ export const getDefaultRoleAssumer = ( stsOptions?.parentClientConfig?.region, credentialProviderLogger ); + const isCompatibleRequestHandler = !isH2(requestHandler); + stsClient = new stsClientCtor({ // A hack to make sts client uses the credential in current closure. credentialDefaultProvider: () => async () => closureSourceCreds, region: resolvedRegion, - requestHandler: requestHandler as any, + requestHandler: isCompatibleRequestHandler ? (requestHandler as any) : undefined, logger: logger as any, }); } @@ -157,9 +159,11 @@ export const getDefaultRoleAssumerWithWebIdentity = ( stsOptions?.parentClientConfig?.region, credentialProviderLogger ); + const isCompatibleRequestHandler = !isH2(requestHandler); + stsClient = new stsClientCtor({ region: resolvedRegion, - requestHandler: requestHandler as any, + requestHandler: isCompatibleRequestHandler ? (requestHandler as any) : undefined, logger: logger as any, }); } @@ -206,3 +210,7 @@ export const decorateDefaultCredentialProvider = ), ...input, }); + +const isH2 = (requestHandler: any): boolean => { + return requestHandler?.metadata?.handlerProtocol === "h2"; +}; diff --git a/clients/client-sts/test/defaultRoleAssumers.spec.ts b/clients/client-sts/test/defaultRoleAssumers.spec.ts index 7cae7a622b12b..f1c369b01260b 100644 --- a/clients/client-sts/test/defaultRoleAssumers.spec.ts +++ b/clients/client-sts/test/defaultRoleAssumers.spec.ts @@ -1,6 +1,6 @@ // Please do not touch this file. It's generated from template in: // https://github.com/aws/aws-sdk-js-v3/blob/main/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/sts-client-defaultRoleAssumers.spec.ts -import { NodeHttpHandler, streamCollector } from "@smithy/node-http-handler"; +import { NodeHttp2Handler, NodeHttpHandler, streamCollector } from "@smithy/node-http-handler"; import { HttpResponse } from "@smithy/protocol-http"; import { Readable } from "stream"; @@ -25,8 +25,22 @@ jest.mock("@smithy/node-http-handler", () => { destroy() {} handle = mockHandle; } + class MockNodeHttp2Handler { + public metadata = { + handlerProtocol: "h2", + }; + static create(instanceOrOptions?: any) { + if (typeof instanceOrOptions?.handle === "function") { + return instanceOrOptions; + } + return new MockNodeHttp2Handler(); + } + destroy() {} + handle = mockHandle; + } return { NodeHttpHandler: MockNodeHttpHandler, + NodeHttp2Handler: MockNodeHttp2Handler, streamCollector: jest.fn(), }; }); @@ -95,7 +109,7 @@ describe("getDefaultRoleAssumer", () => { RoleArn: "arn:aws:foo", RoleSessionName: "session", }; - const sourceCred = { accessKeyId: "key", secretAccessKey: "secrete" }; + const sourceCred = { accessKeyId: "key", secretAccessKey: "secret" }; const assumedRole = await roleAssumer(sourceCred, params); expect(assumedRole.accountId).toEqual("123"); }); @@ -118,7 +132,7 @@ describe("getDefaultRoleAssumer", () => { RoleArn: "arn:aws:foo", RoleSessionName: "session", }; - const sourceCred = { accessKeyId: "key", secretAccessKey: "secrete" }; + const sourceCred = { accessKeyId: "key", secretAccessKey: "secret" }; await roleAssumer(sourceCred, params); expect(mockConstructorInput).toHaveBeenCalledTimes(1); expect(mockConstructorInput.mock.calls[0][0]).toMatchObject({ @@ -143,7 +157,7 @@ describe("getDefaultRoleAssumer", () => { RoleArn: "arn:aws:foo", RoleSessionName: "session", }; - const sourceCred = { accessKeyId: "key", secretAccessKey: "secrete" }; + const sourceCred = { accessKeyId: "key", secretAccessKey: "secret" }; await roleAssumer(sourceCred, params); expect(mockConstructorInput).toHaveBeenCalledTimes(1); expect(mockConstructorInput.mock.calls[0][0]).toMatchObject({ @@ -153,6 +167,31 @@ describe("getDefaultRoleAssumer", () => { }); }); + it("should not pass through an Http2 requestHandler", async () => { + const logger = console; + const region = "some-region"; + const handler = new NodeHttp2Handler(); + const roleAssumer = getDefaultRoleAssumer({ + parentClientConfig: { + region, + logger, + requestHandler: handler, + }, + }); + const params: AssumeRoleCommandInput = { + RoleArn: "arn:aws:foo", + RoleSessionName: "session", + }; + const sourceCred = { accessKeyId: "key", secretAccessKey: "secret" }; + await roleAssumer(sourceCred, params); + expect(mockConstructorInput).toHaveBeenCalledTimes(1); + expect(mockConstructorInput.mock.calls[0][0]).toMatchObject({ + logger, + requestHandler: undefined, + region, + }); + }); + it("should use the STS client middleware", async () => { const customMiddlewareFunction = jest.fn(); const roleAssumer = getDefaultRoleAssumer({}, [ @@ -169,7 +208,7 @@ describe("getDefaultRoleAssumer", () => { RoleArn: "arn:aws:foo", RoleSessionName: "session", }; - const sourceCred = { accessKeyId: "key", secretAccessKey: "secrete" }; + const sourceCred = { accessKeyId: "key", secretAccessKey: "secret" }; await Promise.all([roleAssumer(sourceCred, params), roleAssumer(sourceCred, params)]); expect(customMiddlewareFunction).toHaveBeenCalledTimes(2); // make sure the middleware is not added to stack multiple times. expect(customMiddlewareFunction).toHaveBeenNthCalledWith(1, expect.objectContaining({ input: params })); diff --git a/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/sts-client-defaultRoleAssumers.spec.ts b/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/sts-client-defaultRoleAssumers.spec.ts index d08478e213ad2..13eb424242adb 100644 --- a/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/sts-client-defaultRoleAssumers.spec.ts +++ b/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/sts-client-defaultRoleAssumers.spec.ts @@ -1,4 +1,4 @@ -import { NodeHttpHandler, streamCollector } from "@smithy/node-http-handler"; +import { NodeHttp2Handler, NodeHttpHandler, streamCollector } from "@smithy/node-http-handler"; import { HttpResponse } from "@smithy/protocol-http"; import { Readable } from "stream"; @@ -93,7 +93,7 @@ describe("getDefaultRoleAssumer", () => { RoleArn: "arn:aws:foo", RoleSessionName: "session", }; - const sourceCred = { accessKeyId: "key", secretAccessKey: "secrete" }; + const sourceCred = { accessKeyId: "key", secretAccessKey: "secret" }; const assumedRole = await roleAssumer(sourceCred, params); expect(assumedRole.accountId).toEqual("123"); }); @@ -116,7 +116,7 @@ describe("getDefaultRoleAssumer", () => { RoleArn: "arn:aws:foo", RoleSessionName: "session", }; - const sourceCred = { accessKeyId: "key", secretAccessKey: "secrete" }; + const sourceCred = { accessKeyId: "key", secretAccessKey: "secret" }; await roleAssumer(sourceCred, params); expect(mockConstructorInput).toHaveBeenCalledTimes(1); expect(mockConstructorInput.mock.calls[0][0]).toMatchObject({ @@ -141,7 +141,7 @@ describe("getDefaultRoleAssumer", () => { RoleArn: "arn:aws:foo", RoleSessionName: "session", }; - const sourceCred = { accessKeyId: "key", secretAccessKey: "secrete" }; + const sourceCred = { accessKeyId: "key", secretAccessKey: "secret" }; await roleAssumer(sourceCred, params); expect(mockConstructorInput).toHaveBeenCalledTimes(1); expect(mockConstructorInput.mock.calls[0][0]).toMatchObject({ @@ -151,6 +151,31 @@ describe("getDefaultRoleAssumer", () => { }); }); + it("should not pass through an Http2 requestHandler", async () => { + const logger = console; + const region = "some-region"; + const handler = new NodeHttp2Handler(); + const roleAssumer = getDefaultRoleAssumer({ + parentClientConfig: { + region, + logger, + requestHandler: handler, + }, + }); + const params: AssumeRoleCommandInput = { + RoleArn: "arn:aws:foo", + RoleSessionName: "session", + }; + const sourceCred = { accessKeyId: "key", secretAccessKey: "secret" }; + await roleAssumer(sourceCred, params); + expect(mockConstructorInput).toHaveBeenCalledTimes(1); + expect(mockConstructorInput.mock.calls[0][0]).toMatchObject({ + logger, + requestHandler: undefined, + region, + }); + }); + it("should use the STS client middleware", async () => { const customMiddlewareFunction = jest.fn(); const roleAssumer = getDefaultRoleAssumer({}, [ @@ -167,7 +192,7 @@ describe("getDefaultRoleAssumer", () => { RoleArn: "arn:aws:foo", RoleSessionName: "session", }; - const sourceCred = { accessKeyId: "key", secretAccessKey: "secrete" }; + const sourceCred = { accessKeyId: "key", secretAccessKey: "secret" }; await Promise.all([roleAssumer(sourceCred, params), roleAssumer(sourceCred, params)]); expect(customMiddlewareFunction).toHaveBeenCalledTimes(2); // make sure the middleware is not added to stack multiple times. expect(customMiddlewareFunction).toHaveBeenNthCalledWith(1, expect.objectContaining({ input: params })); diff --git a/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/sts-client-defaultStsRoleAssumers.ts b/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/sts-client-defaultStsRoleAssumers.ts index 1f1d66f01dc39..f1183d03e993d 100644 --- a/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/sts-client-defaultStsRoleAssumers.ts +++ b/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/sts-client-defaultStsRoleAssumers.ts @@ -98,11 +98,13 @@ export const getDefaultRoleAssumer = ( stsOptions?.parentClientConfig?.region, credentialProviderLogger ); + const isCompatibleRequestHandler = !isH2(requestHandler); + stsClient = new stsClientCtor({ // A hack to make sts client uses the credential in current closure. credentialDefaultProvider: () => async () => closureSourceCreds, region: resolvedRegion, - requestHandler: requestHandler as any, + requestHandler: isCompatibleRequestHandler ? (requestHandler as any) : undefined, logger: logger as any, }); } @@ -154,9 +156,11 @@ export const getDefaultRoleAssumerWithWebIdentity = ( stsOptions?.parentClientConfig?.region, credentialProviderLogger ); + const isCompatibleRequestHandler = !isH2(requestHandler); + stsClient = new stsClientCtor({ region: resolvedRegion, - requestHandler: requestHandler as any, + requestHandler: isCompatibleRequestHandler ? (requestHandler as any) : undefined, logger: logger as any, }); } @@ -203,3 +207,7 @@ export const decorateDefaultCredentialProvider = ), ...input, }); + +const isH2 = (requestHandler: any): boolean => { + return requestHandler?.metadata?.handlerProtocol === "h2"; +}; From 63cb133fcfedaf307e06c5f519aea1b58cdeb77b Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Thu, 15 Aug 2024 10:36:12 -0700 Subject: [PATCH 3/9] fix(util-endpoints): parseArn when resourcePath contains both delimiters (#6387) --- packages/util-endpoints/src/lib/aws/parseArn.spec.ts | 10 ++++++++++ packages/util-endpoints/src/lib/aws/parseArn.ts | 4 +--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/packages/util-endpoints/src/lib/aws/parseArn.spec.ts b/packages/util-endpoints/src/lib/aws/parseArn.spec.ts index 3b715868c92fe..16e0342dae985 100644 --- a/packages/util-endpoints/src/lib/aws/parseArn.spec.ts +++ b/packages/util-endpoints/src/lib/aws/parseArn.spec.ts @@ -74,6 +74,16 @@ describe(parseArn.name, () => { resourceId: ["myTopic"], }, ], + [ + "arn:aws:s3:us-west-2:123456789012:my:folder/my:file", + { + partition: "aws", + service: "s3", + region: "us-west-2", + accountId: "123456789012", + resourceId: ["my", "folder", "my", "file"], + }, + ], ]; it.each(VALID_TEST_CASES)("returns for valid arn %s", (input: string, outout: EndpointARN) => { diff --git a/packages/util-endpoints/src/lib/aws/parseArn.ts b/packages/util-endpoints/src/lib/aws/parseArn.ts index 99ce11f55c654..2c6078b647b57 100644 --- a/packages/util-endpoints/src/lib/aws/parseArn.ts +++ b/packages/util-endpoints/src/lib/aws/parseArn.ts @@ -17,9 +17,7 @@ export const parseArn = (value: string): EndpointARN | null => { if (arn !== "arn" || partition === "" || service === "" || resourcePath.join(ARN_DELIMITER) === "") return null; - const resourceId = resourcePath[0].includes(RESOURCE_DELIMITER) - ? resourcePath[0].split(RESOURCE_DELIMITER) - : resourcePath; + const resourceId = resourcePath.map((resource) => resource.split(RESOURCE_DELIMITER)).flat(); return { partition, From e56be6989649b228db0faf2798e772baefca0ff3 Mon Sep 17 00:00:00 2001 From: awstools Date: Thu, 15 Aug 2024 18:16:05 +0000 Subject: [PATCH 4/9] feat(client-ecs): This release introduces a new ContainerDefinition configuration to support the customer-managed keys for ECS container restart feature. --- .../commands/CreateCapacityProviderCommand.ts | 10 + .../src/commands/CreateClusterCommand.ts | 10 + .../src/commands/CreateServiceCommand.ts | 14 +- .../src/commands/CreateTaskSetCommand.ts | 12 +- .../commands/DeleteAccountSettingCommand.ts | 10 + .../src/commands/DeleteAttributesCommand.ts | 4 +- .../commands/DeleteCapacityProviderCommand.ts | 10 + .../src/commands/DeleteClusterCommand.ts | 10 + .../src/commands/DeleteServiceCommand.ts | 10 + .../commands/DeleteTaskDefinitionsCommand.ts | 17 + .../src/commands/DeleteTaskSetCommand.ts | 10 + .../DeregisterContainerInstanceCommand.ts | 10 + .../DeregisterTaskDefinitionCommand.ts | 17 + .../DescribeCapacityProvidersCommand.ts | 10 + .../src/commands/DescribeClustersCommand.ts | 10 + .../DescribeContainerInstancesCommand.ts | 10 + .../src/commands/DescribeServicesCommand.ts | 10 + .../commands/DescribeTaskDefinitionCommand.ts | 17 + .../src/commands/DescribeTaskSetsCommand.ts | 10 + .../src/commands/DescribeTasksCommand.ts | 10 + .../commands/DiscoverPollEndpointCommand.ts | 10 + .../src/commands/ExecuteCommandCommand.ts | 10 + .../src/commands/GetTaskProtectionCommand.ts | 10 + .../commands/ListAccountSettingsCommand.ts | 10 + .../src/commands/ListClustersCommand.ts | 10 + .../commands/ListContainerInstancesCommand.ts | 10 + .../ListServicesByNamespaceCommand.ts | 10 + .../src/commands/ListServicesCommand.ts | 10 + .../commands/ListTagsForResourceCommand.ts | 10 + .../ListTaskDefinitionFamiliesCommand.ts | 10 + .../commands/ListTaskDefinitionsCommand.ts | 10 + .../src/commands/ListTasksCommand.ts | 10 + .../src/commands/PutAccountSettingCommand.ts | 10 + .../PutAccountSettingDefaultCommand.ts | 10 + .../src/commands/PutAttributesCommand.ts | 4 +- .../PutClusterCapacityProvidersCommand.ts | 10 + .../RegisterContainerInstanceCommand.ts | 10 + .../commands/RegisterTaskDefinitionCommand.ts | 28 +- .../client-ecs/src/commands/RunTaskCommand.ts | 10 + .../src/commands/StartTaskCommand.ts | 10 + .../src/commands/StopTaskCommand.ts | 14 +- .../SubmitAttachmentStateChangesCommand.ts | 10 + .../SubmitContainerStateChangeCommand.ts | 10 + .../commands/SubmitTaskStateChangeCommand.ts | 10 + .../src/commands/TagResourceCommand.ts | 10 + .../src/commands/UntagResourceCommand.ts | 10 + .../commands/UpdateCapacityProviderCommand.ts | 10 + .../src/commands/UpdateClusterCommand.ts | 10 + .../commands/UpdateClusterSettingsCommand.ts | 10 + .../commands/UpdateContainerAgentCommand.ts | 10 + .../UpdateContainerInstancesStateCommand.ts | 12 +- .../src/commands/UpdateServiceCommand.ts | 10 + .../UpdateServicePrimaryTaskSetCommand.ts | 10 + .../commands/UpdateTaskProtectionCommand.ts | 10 + .../src/commands/UpdateTaskSetCommand.ts | 13 +- clients/client-ecs/src/models/index.ts | 1 + clients/client-ecs/src/models/models_0.ts | 520 ++++++++---------- clients/client-ecs/src/models/models_1.ts | 13 + .../client-ecs/src/protocols/Aws_json1_1.ts | 11 +- codegen/sdk-codegen/aws-models/ecs.json | 205 ++++--- 60 files changed, 968 insertions(+), 374 deletions(-) create mode 100644 clients/client-ecs/src/models/models_1.ts diff --git a/clients/client-ecs/src/commands/CreateCapacityProviderCommand.ts b/clients/client-ecs/src/commands/CreateCapacityProviderCommand.ts index d1c8acacf8573..cab7d7718c5a3 100644 --- a/clients/client-ecs/src/commands/CreateCapacityProviderCommand.ts +++ b/clients/client-ecs/src/commands/CreateCapacityProviderCommand.ts @@ -104,6 +104,16 @@ export interface CreateCapacityProviderCommandOutput extends CreateCapacityProvi *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/CreateClusterCommand.ts b/clients/client-ecs/src/commands/CreateClusterCommand.ts index e7b572f1a47b8..02f023ac27872 100644 --- a/clients/client-ecs/src/commands/CreateClusterCommand.ts +++ b/clients/client-ecs/src/commands/CreateClusterCommand.ts @@ -178,6 +178,16 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/CreateServiceCommand.ts b/clients/client-ecs/src/commands/CreateServiceCommand.ts index 34b727d2c0ddc..c5d204c34cc2e 100644 --- a/clients/client-ecs/src/commands/CreateServiceCommand.ts +++ b/clients/client-ecs/src/commands/CreateServiceCommand.ts @@ -108,8 +108,8 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met *

When creating a service that uses the EXTERNAL deployment controller, you * can specify only parameters that aren't controlled at the task set level. The only * required parameter is the service name. You control your services using the CreateTaskSet operation. For more information, see Amazon ECS deployment types in the Amazon Elastic Container Service Developer Guide.

- *

When the service scheduler launches new tasks, it determines task placement. For information - * about task placement and task placement strategies, see Amazon ECS + *

When the service scheduler launches new tasks, it determines task placement. For + * information about task placement and task placement strategies, see Amazon ECS * task placement in the Amazon Elastic Container Service Developer Guide *

*

Starting April 15, 2023, Amazon Web Services will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.

@@ -563,6 +563,16 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/CreateTaskSetCommand.ts b/clients/client-ecs/src/commands/CreateTaskSetCommand.ts index 9d95e71f829ea..5b446ca24185f 100644 --- a/clients/client-ecs/src/commands/CreateTaskSetCommand.ts +++ b/clients/client-ecs/src/commands/CreateTaskSetCommand.ts @@ -35,7 +35,7 @@ export interface CreateTaskSetCommandOutput extends CreateTaskSetResponse, __Met * *

On March 21, 2024, a change was made to resolve the task definition revision before authorization. When a task definition revision is not specified, authorization will occur using the latest revision of a task definition.

*
- *

For information about the maximum number of task sets and otther quotas, see Amazon ECS + *

For information about the maximum number of task sets and other quotas, see Amazon ECS * service quotas in the Amazon Elastic Container Service Developer Guide.

* @example * Use a bare-bones client and the command you need to make an API call. @@ -183,6 +183,16 @@ export interface CreateTaskSetCommandOutput extends CreateTaskSetResponse, __Met *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/DeleteAccountSettingCommand.ts b/clients/client-ecs/src/commands/DeleteAccountSettingCommand.ts index 8dc619fc9cce0..3d21967d05504 100644 --- a/clients/client-ecs/src/commands/DeleteAccountSettingCommand.ts +++ b/clients/client-ecs/src/commands/DeleteAccountSettingCommand.ts @@ -63,6 +63,16 @@ export interface DeleteAccountSettingCommandOutput extends DeleteAccountSettingR *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/DeleteAttributesCommand.ts b/clients/client-ecs/src/commands/DeleteAttributesCommand.ts index cc37319dccb7e..a7154e1f5b075 100644 --- a/clients/client-ecs/src/commands/DeleteAttributesCommand.ts +++ b/clients/client-ecs/src/commands/DeleteAttributesCommand.ts @@ -76,8 +76,8 @@ export interface DeleteAttributesCommandOutput extends DeleteAttributesResponse, * * @throws {@link TargetNotFoundException} (client fault) *

The specified target wasn't found. You can view your available container instances - * with ListContainerInstances. Amazon ECS container instances are - * cluster-specific and Region-specific.

+ * with ListContainerInstances. Amazon ECS container instances are cluster-specific and + * Region-specific.

* * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

diff --git a/clients/client-ecs/src/commands/DeleteCapacityProviderCommand.ts b/clients/client-ecs/src/commands/DeleteCapacityProviderCommand.ts index ca71d6aad79c2..8ad9005779843 100644 --- a/clients/client-ecs/src/commands/DeleteCapacityProviderCommand.ts +++ b/clients/client-ecs/src/commands/DeleteCapacityProviderCommand.ts @@ -94,6 +94,16 @@ export interface DeleteCapacityProviderCommandOutput extends DeleteCapacityProvi *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/DeleteClusterCommand.ts b/clients/client-ecs/src/commands/DeleteClusterCommand.ts index 78f9d06f0de3a..b05fbe5733dce 100644 --- a/clients/client-ecs/src/commands/DeleteClusterCommand.ts +++ b/clients/client-ecs/src/commands/DeleteClusterCommand.ts @@ -131,6 +131,16 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterContainsContainerInstancesException} (client fault) *

You can't delete a cluster that has registered container instances. First, deregister diff --git a/clients/client-ecs/src/commands/DeleteServiceCommand.ts b/clients/client-ecs/src/commands/DeleteServiceCommand.ts index eb5754ed872c0..c6c5091293324 100644 --- a/clients/client-ecs/src/commands/DeleteServiceCommand.ts +++ b/clients/client-ecs/src/commands/DeleteServiceCommand.ts @@ -348,6 +348,16 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/DeleteTaskDefinitionsCommand.ts b/clients/client-ecs/src/commands/DeleteTaskDefinitionsCommand.ts index 75046fed1c78c..68fb32b36664f 100644 --- a/clients/client-ecs/src/commands/DeleteTaskDefinitionsCommand.ts +++ b/clients/client-ecs/src/commands/DeleteTaskDefinitionsCommand.ts @@ -89,6 +89,13 @@ export interface DeleteTaskDefinitionsCommandOutput extends DeleteTaskDefinition * // }, * // ], * // essential: true || false, + * // restartPolicy: { // ContainerRestartPolicy + * // enabled: true || false, // required + * // ignoredExitCodes: [ // IntegerList + * // Number("int"), + * // ], + * // restartAttemptPeriod: Number("int"), + * // }, * // entryPoint: [ * // "STRING_VALUE", * // ], @@ -351,6 +358,16 @@ export interface DeleteTaskDefinitionsCommandOutput extends DeleteTaskDefinition *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/DeleteTaskSetCommand.ts b/clients/client-ecs/src/commands/DeleteTaskSetCommand.ts index 7888c3b56f250..1c1ce33942141 100644 --- a/clients/client-ecs/src/commands/DeleteTaskSetCommand.ts +++ b/clients/client-ecs/src/commands/DeleteTaskSetCommand.ts @@ -129,6 +129,16 @@ export interface DeleteTaskSetCommandOutput extends DeleteTaskSetResponse, __Met *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/DeregisterContainerInstanceCommand.ts b/clients/client-ecs/src/commands/DeregisterContainerInstanceCommand.ts index 292c4b49ead49..dc8a65a6822ea 100644 --- a/clients/client-ecs/src/commands/DeregisterContainerInstanceCommand.ts +++ b/clients/client-ecs/src/commands/DeregisterContainerInstanceCommand.ts @@ -152,6 +152,16 @@ export interface DeregisterContainerInstanceCommandOutput *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/DeregisterTaskDefinitionCommand.ts b/clients/client-ecs/src/commands/DeregisterTaskDefinitionCommand.ts index af68f8f0e9aae..5c771a1bea191 100644 --- a/clients/client-ecs/src/commands/DeregisterTaskDefinitionCommand.ts +++ b/clients/client-ecs/src/commands/DeregisterTaskDefinitionCommand.ts @@ -84,6 +84,13 @@ export interface DeregisterTaskDefinitionCommandOutput extends DeregisterTaskDef * // }, * // ], * // essential: true || false, + * // restartPolicy: { // ContainerRestartPolicy + * // enabled: true || false, // required + * // ignoredExitCodes: [ // IntegerList + * // Number("int"), + * // ], + * // restartAttemptPeriod: Number("int"), + * // }, * // entryPoint: [ * // "STRING_VALUE", * // ], @@ -335,6 +342,16 @@ export interface DeregisterTaskDefinitionCommandOutput extends DeregisterTaskDef *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/DescribeCapacityProvidersCommand.ts b/clients/client-ecs/src/commands/DescribeCapacityProvidersCommand.ts index 982c4a245fef8..4ab33faa407cd 100644 --- a/clients/client-ecs/src/commands/DescribeCapacityProvidersCommand.ts +++ b/clients/client-ecs/src/commands/DescribeCapacityProvidersCommand.ts @@ -97,6 +97,16 @@ export interface DescribeCapacityProvidersCommandOutput extends DescribeCapacity *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/DescribeClustersCommand.ts b/clients/client-ecs/src/commands/DescribeClustersCommand.ts index 7f08e74087edd..170cae2899834 100644 --- a/clients/client-ecs/src/commands/DescribeClustersCommand.ts +++ b/clients/client-ecs/src/commands/DescribeClustersCommand.ts @@ -140,6 +140,16 @@ export interface DescribeClustersCommandOutput extends DescribeClustersResponse, *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/DescribeContainerInstancesCommand.ts b/clients/client-ecs/src/commands/DescribeContainerInstancesCommand.ts index 35029fffe8ed6..8223837d8660b 100644 --- a/clients/client-ecs/src/commands/DescribeContainerInstancesCommand.ts +++ b/clients/client-ecs/src/commands/DescribeContainerInstancesCommand.ts @@ -151,6 +151,16 @@ export interface DescribeContainerInstancesCommandOutput extends DescribeContain *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/DescribeServicesCommand.ts b/clients/client-ecs/src/commands/DescribeServicesCommand.ts index bfa7606928cd5..85d3b70d7ce44 100644 --- a/clients/client-ecs/src/commands/DescribeServicesCommand.ts +++ b/clients/client-ecs/src/commands/DescribeServicesCommand.ts @@ -341,6 +341,16 @@ export interface DescribeServicesCommandOutput extends DescribeServicesResponse, *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/DescribeTaskDefinitionCommand.ts b/clients/client-ecs/src/commands/DescribeTaskDefinitionCommand.ts index 02dee9979ee0a..576bd44f0d891 100644 --- a/clients/client-ecs/src/commands/DescribeTaskDefinitionCommand.ts +++ b/clients/client-ecs/src/commands/DescribeTaskDefinitionCommand.ts @@ -77,6 +77,13 @@ export interface DescribeTaskDefinitionCommandOutput extends DescribeTaskDefinit * // }, * // ], * // essential: true || false, + * // restartPolicy: { // ContainerRestartPolicy + * // enabled: true || false, // required + * // ignoredExitCodes: [ // IntegerList + * // Number("int"), + * // ], + * // restartAttemptPeriod: Number("int"), + * // }, * // entryPoint: [ * // "STRING_VALUE", * // ], @@ -334,6 +341,16 @@ export interface DescribeTaskDefinitionCommandOutput extends DescribeTaskDefinit *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/DescribeTaskSetsCommand.ts b/clients/client-ecs/src/commands/DescribeTaskSetsCommand.ts index 2087ba458bd36..97885c31ede64 100644 --- a/clients/client-ecs/src/commands/DescribeTaskSetsCommand.ts +++ b/clients/client-ecs/src/commands/DescribeTaskSetsCommand.ts @@ -144,6 +144,16 @@ export interface DescribeTaskSetsCommandOutput extends DescribeTaskSetsResponse, *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/DescribeTasksCommand.ts b/clients/client-ecs/src/commands/DescribeTasksCommand.ts index 9f29e17c8fc28..17384f39ecd16 100644 --- a/clients/client-ecs/src/commands/DescribeTasksCommand.ts +++ b/clients/client-ecs/src/commands/DescribeTasksCommand.ts @@ -234,6 +234,16 @@ export interface DescribeTasksCommandOutput extends DescribeTasksResponse, __Met *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/DiscoverPollEndpointCommand.ts b/clients/client-ecs/src/commands/DiscoverPollEndpointCommand.ts index c5746b954abcf..6f7864e9d84b5 100644 --- a/clients/client-ecs/src/commands/DiscoverPollEndpointCommand.ts +++ b/clients/client-ecs/src/commands/DiscoverPollEndpointCommand.ts @@ -62,6 +62,16 @@ export interface DiscoverPollEndpointCommandOutput extends DiscoverPollEndpointR *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ServerException} (server fault) *

These errors are usually caused by a server issue.

diff --git a/clients/client-ecs/src/commands/ExecuteCommandCommand.ts b/clients/client-ecs/src/commands/ExecuteCommandCommand.ts index f5129bfe97571..71bea0bfead72 100644 --- a/clients/client-ecs/src/commands/ExecuteCommandCommand.ts +++ b/clients/client-ecs/src/commands/ExecuteCommandCommand.ts @@ -83,6 +83,16 @@ export interface ExecuteCommandCommandOutput extends ExecuteCommandResponse, __M *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/GetTaskProtectionCommand.ts b/clients/client-ecs/src/commands/GetTaskProtectionCommand.ts index 6364fda83f783..2e993c5f38faf 100644 --- a/clients/client-ecs/src/commands/GetTaskProtectionCommand.ts +++ b/clients/client-ecs/src/commands/GetTaskProtectionCommand.ts @@ -75,6 +75,16 @@ export interface GetTaskProtectionCommandOutput extends GetTaskProtectionRespons *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/ListAccountSettingsCommand.ts b/clients/client-ecs/src/commands/ListAccountSettingsCommand.ts index 5f975af4992d8..682fe29c60f1d 100644 --- a/clients/client-ecs/src/commands/ListAccountSettingsCommand.ts +++ b/clients/client-ecs/src/commands/ListAccountSettingsCommand.ts @@ -69,6 +69,16 @@ export interface ListAccountSettingsCommandOutput extends ListAccountSettingsRes *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/ListClustersCommand.ts b/clients/client-ecs/src/commands/ListClustersCommand.ts index d10e4d15c706b..4e09360d53d33 100644 --- a/clients/client-ecs/src/commands/ListClustersCommand.ts +++ b/clients/client-ecs/src/commands/ListClustersCommand.ts @@ -60,6 +60,16 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/ListContainerInstancesCommand.ts b/clients/client-ecs/src/commands/ListContainerInstancesCommand.ts index fdd113d2a2fc2..837a7433d1eaa 100644 --- a/clients/client-ecs/src/commands/ListContainerInstancesCommand.ts +++ b/clients/client-ecs/src/commands/ListContainerInstancesCommand.ts @@ -65,6 +65,16 @@ export interface ListContainerInstancesCommandOutput extends ListContainerInstan *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/ListServicesByNamespaceCommand.ts b/clients/client-ecs/src/commands/ListServicesByNamespaceCommand.ts index d2e3290e9b3ca..3554f36f33337 100644 --- a/clients/client-ecs/src/commands/ListServicesByNamespaceCommand.ts +++ b/clients/client-ecs/src/commands/ListServicesByNamespaceCommand.ts @@ -65,6 +65,16 @@ export interface ListServicesByNamespaceCommandOutput extends ListServicesByName *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/ListServicesCommand.ts b/clients/client-ecs/src/commands/ListServicesCommand.ts index 1b06362de3f27..994d478299918 100644 --- a/clients/client-ecs/src/commands/ListServicesCommand.ts +++ b/clients/client-ecs/src/commands/ListServicesCommand.ts @@ -64,6 +64,16 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/ListTagsForResourceCommand.ts b/clients/client-ecs/src/commands/ListTagsForResourceCommand.ts index 6baf7dbf9e1e5..0c552979b27a7 100644 --- a/clients/client-ecs/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ecs/src/commands/ListTagsForResourceCommand.ts @@ -61,6 +61,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/ListTaskDefinitionFamiliesCommand.ts b/clients/client-ecs/src/commands/ListTaskDefinitionFamiliesCommand.ts index 856671757f1ba..ae5ba9f9fadd6 100644 --- a/clients/client-ecs/src/commands/ListTaskDefinitionFamiliesCommand.ts +++ b/clients/client-ecs/src/commands/ListTaskDefinitionFamiliesCommand.ts @@ -68,6 +68,16 @@ export interface ListTaskDefinitionFamiliesCommandOutput extends ListTaskDefinit *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/ListTaskDefinitionsCommand.ts b/clients/client-ecs/src/commands/ListTaskDefinitionsCommand.ts index 0b56a4f0174a5..b4ebb02b5357f 100644 --- a/clients/client-ecs/src/commands/ListTaskDefinitionsCommand.ts +++ b/clients/client-ecs/src/commands/ListTaskDefinitionsCommand.ts @@ -65,6 +65,16 @@ export interface ListTaskDefinitionsCommandOutput extends ListTaskDefinitionsRes *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/ListTasksCommand.ts b/clients/client-ecs/src/commands/ListTasksCommand.ts index 63cd9b3731ad8..164c249343014 100644 --- a/clients/client-ecs/src/commands/ListTasksCommand.ts +++ b/clients/client-ecs/src/commands/ListTasksCommand.ts @@ -70,6 +70,16 @@ export interface ListTasksCommandOutput extends ListTasksResponse, __MetadataBea *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/PutAccountSettingCommand.ts b/clients/client-ecs/src/commands/PutAccountSettingCommand.ts index 370246ac3dca4..97d4729d53e0e 100644 --- a/clients/client-ecs/src/commands/PutAccountSettingCommand.ts +++ b/clients/client-ecs/src/commands/PutAccountSettingCommand.ts @@ -67,6 +67,16 @@ export interface PutAccountSettingCommandOutput extends PutAccountSettingRespons *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/PutAccountSettingDefaultCommand.ts b/clients/client-ecs/src/commands/PutAccountSettingDefaultCommand.ts index 250918126c6ef..081605d863b77 100644 --- a/clients/client-ecs/src/commands/PutAccountSettingDefaultCommand.ts +++ b/clients/client-ecs/src/commands/PutAccountSettingDefaultCommand.ts @@ -63,6 +63,16 @@ export interface PutAccountSettingDefaultCommandOutput extends PutAccountSetting *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/PutAttributesCommand.ts b/clients/client-ecs/src/commands/PutAttributesCommand.ts index 185532518e613..97e7086e9d857 100644 --- a/clients/client-ecs/src/commands/PutAttributesCommand.ts +++ b/clients/client-ecs/src/commands/PutAttributesCommand.ts @@ -84,8 +84,8 @@ export interface PutAttributesCommandOutput extends PutAttributesResponse, __Met * * @throws {@link TargetNotFoundException} (client fault) *

The specified target wasn't found. You can view your available container instances - * with ListContainerInstances. Amazon ECS container instances are - * cluster-specific and Region-specific.

+ * with ListContainerInstances. Amazon ECS container instances are cluster-specific and + * Region-specific.

* * @throws {@link ECSServiceException} *

Base exception class for all service exceptions from ECS service.

diff --git a/clients/client-ecs/src/commands/PutClusterCapacityProvidersCommand.ts b/clients/client-ecs/src/commands/PutClusterCapacityProvidersCommand.ts index 662f2ffd9205d..6540eba5601f9 100644 --- a/clients/client-ecs/src/commands/PutClusterCapacityProvidersCommand.ts +++ b/clients/client-ecs/src/commands/PutClusterCapacityProvidersCommand.ts @@ -151,6 +151,16 @@ export interface PutClusterCapacityProvidersCommandOutput *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/RegisterContainerInstanceCommand.ts b/clients/client-ecs/src/commands/RegisterContainerInstanceCommand.ts index 30fad1007bde5..7b37ae5a481cd 100644 --- a/clients/client-ecs/src/commands/RegisterContainerInstanceCommand.ts +++ b/clients/client-ecs/src/commands/RegisterContainerInstanceCommand.ts @@ -179,6 +179,16 @@ export interface RegisterContainerInstanceCommandOutput extends RegisterContaine *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/RegisterTaskDefinitionCommand.ts b/clients/client-ecs/src/commands/RegisterTaskDefinitionCommand.ts index ec0950a4ca30d..74ad0dd4d959c 100644 --- a/clients/client-ecs/src/commands/RegisterTaskDefinitionCommand.ts +++ b/clients/client-ecs/src/commands/RegisterTaskDefinitionCommand.ts @@ -39,9 +39,7 @@ export interface RegisterTaskDefinitionCommandOutput extends RegisterTaskDefinit * policy that's associated with the role. For more information, see IAM * Roles for Tasks in the Amazon Elastic Container Service Developer Guide.

*

You can specify a Docker networking mode for the containers in your task definition - * with the networkMode parameter. The available network modes correspond to - * those described in Network - * settings in the Docker run reference. If you specify the awsvpc + * with the networkMode parameter. If you specify the awsvpc * network mode, the task is allocated an elastic network interface, and you must specify a * NetworkConfiguration when you create a service or run a task with * the task definition. For more information, see Task Networking @@ -81,6 +79,13 @@ export interface RegisterTaskDefinitionCommandOutput extends RegisterTaskDefinit * }, * ], * essential: true || false, + * restartPolicy: { // ContainerRestartPolicy + * enabled: true || false, // required + * ignoredExitCodes: [ // IntegerList + * Number("int"), + * ], + * restartAttemptPeriod: Number("int"), + * }, * entryPoint: [ * "STRING_VALUE", * ], @@ -333,6 +338,13 @@ export interface RegisterTaskDefinitionCommandOutput extends RegisterTaskDefinit * // }, * // ], * // essential: true || false, + * // restartPolicy: { // ContainerRestartPolicy + * // enabled: true || false, // required + * // ignoredExitCodes: [ // IntegerList + * // Number("int"), + * // ], + * // restartAttemptPeriod: Number("int"), + * // }, * // entryPoint: [ * // "STRING_VALUE", * // ], @@ -590,6 +602,16 @@ export interface RegisterTaskDefinitionCommandOutput extends RegisterTaskDefinit *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/RunTaskCommand.ts b/clients/client-ecs/src/commands/RunTaskCommand.ts index 7b13358bbd45c..e3d8270ccae8f 100644 --- a/clients/client-ecs/src/commands/RunTaskCommand.ts +++ b/clients/client-ecs/src/commands/RunTaskCommand.ts @@ -386,6 +386,16 @@ export interface RunTaskCommandOutput extends RunTaskResponse, __MetadataBearer *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/StartTaskCommand.ts b/clients/client-ecs/src/commands/StartTaskCommand.ts index eade8a0cd359c..7d0794305f25b 100644 --- a/clients/client-ecs/src/commands/StartTaskCommand.ts +++ b/clients/client-ecs/src/commands/StartTaskCommand.ts @@ -333,6 +333,16 @@ export interface StartTaskCommandOutput extends StartTaskResponse, __MetadataBea *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/StopTaskCommand.ts b/clients/client-ecs/src/commands/StopTaskCommand.ts index 5e1017155cc3a..99ba27e5e0553 100644 --- a/clients/client-ecs/src/commands/StopTaskCommand.ts +++ b/clients/client-ecs/src/commands/StopTaskCommand.ts @@ -35,8 +35,8 @@ export interface StopTaskCommandOutput extends StopTaskResponse, __MetadataBeare * SIGKILL value is sent and the containers are forcibly stopped. If the * container handles the SIGTERM value gracefully and exits within 30 seconds * from receiving it, no SIGKILL value is sent.

- *

For Windows containers, POSIX signals do not work and runtime stops the container by sending - * a CTRL_SHUTDOWN_EVENT. For more information, see Unable to react to graceful shutdown + *

For Windows containers, POSIX signals do not work and runtime stops the container by + * sending a CTRL_SHUTDOWN_EVENT. For more information, see Unable to react to graceful shutdown * of (Windows) container #25982 on GitHub.

* *

The default 30-second timeout can be configured on the Amazon ECS container agent with @@ -232,6 +232,16 @@ export interface StopTaskCommandOutput extends StopTaskResponse, __MetadataBeare *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/SubmitAttachmentStateChangesCommand.ts b/clients/client-ecs/src/commands/SubmitAttachmentStateChangesCommand.ts index af515fe7334e2..ac0e4ab0d15b2 100644 --- a/clients/client-ecs/src/commands/SubmitAttachmentStateChangesCommand.ts +++ b/clients/client-ecs/src/commands/SubmitAttachmentStateChangesCommand.ts @@ -73,6 +73,16 @@ export interface SubmitAttachmentStateChangesCommandOutput *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/SubmitContainerStateChangeCommand.ts b/clients/client-ecs/src/commands/SubmitContainerStateChangeCommand.ts index 84f76366bdd88..965c08044c56b 100644 --- a/clients/client-ecs/src/commands/SubmitContainerStateChangeCommand.ts +++ b/clients/client-ecs/src/commands/SubmitContainerStateChangeCommand.ts @@ -78,6 +78,16 @@ export interface SubmitContainerStateChangeCommandOutput extends SubmitContainer *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ServerException} (server fault) *

These errors are usually caused by a server issue.

diff --git a/clients/client-ecs/src/commands/SubmitTaskStateChangeCommand.ts b/clients/client-ecs/src/commands/SubmitTaskStateChangeCommand.ts index 679ea2e6fa66b..5659834cefc5e 100644 --- a/clients/client-ecs/src/commands/SubmitTaskStateChangeCommand.ts +++ b/clients/client-ecs/src/commands/SubmitTaskStateChangeCommand.ts @@ -102,6 +102,16 @@ export interface SubmitTaskStateChangeCommandOutput extends SubmitTaskStateChang *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/TagResourceCommand.ts b/clients/client-ecs/src/commands/TagResourceCommand.ts index 5aaf38df237e5..c478cd833d67d 100644 --- a/clients/client-ecs/src/commands/TagResourceCommand.ts +++ b/clients/client-ecs/src/commands/TagResourceCommand.ts @@ -63,6 +63,16 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/UntagResourceCommand.ts b/clients/client-ecs/src/commands/UntagResourceCommand.ts index 7bc1903ca6d78..44ca0c7f9a0e1 100644 --- a/clients/client-ecs/src/commands/UntagResourceCommand.ts +++ b/clients/client-ecs/src/commands/UntagResourceCommand.ts @@ -57,6 +57,16 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/UpdateCapacityProviderCommand.ts b/clients/client-ecs/src/commands/UpdateCapacityProviderCommand.ts index 1942e3590578d..9fa1ee5f05b8c 100644 --- a/clients/client-ecs/src/commands/UpdateCapacityProviderCommand.ts +++ b/clients/client-ecs/src/commands/UpdateCapacityProviderCommand.ts @@ -91,6 +91,16 @@ export interface UpdateCapacityProviderCommandOutput extends UpdateCapacityProvi *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter isn't valid. Review the available parameters for the API diff --git a/clients/client-ecs/src/commands/UpdateClusterCommand.ts b/clients/client-ecs/src/commands/UpdateClusterCommand.ts index 4e107e51c41f0..3f164d0118b2d 100644 --- a/clients/client-ecs/src/commands/UpdateClusterCommand.ts +++ b/clients/client-ecs/src/commands/UpdateClusterCommand.ts @@ -152,6 +152,16 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResponse, __Met *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/UpdateClusterSettingsCommand.ts b/clients/client-ecs/src/commands/UpdateClusterSettingsCommand.ts index 757d8f3432657..4fdf0630a742e 100644 --- a/clients/client-ecs/src/commands/UpdateClusterSettingsCommand.ts +++ b/clients/client-ecs/src/commands/UpdateClusterSettingsCommand.ts @@ -132,6 +132,16 @@ export interface UpdateClusterSettingsCommandOutput extends UpdateClusterSetting *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/UpdateContainerAgentCommand.ts b/clients/client-ecs/src/commands/UpdateContainerAgentCommand.ts index 86d94a569c595..c9cb8adfb9d0e 100644 --- a/clients/client-ecs/src/commands/UpdateContainerAgentCommand.ts +++ b/clients/client-ecs/src/commands/UpdateContainerAgentCommand.ts @@ -154,6 +154,16 @@ export interface UpdateContainerAgentCommandOutput extends UpdateContainerAgentR *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/UpdateContainerInstancesStateCommand.ts b/clients/client-ecs/src/commands/UpdateContainerInstancesStateCommand.ts index f2538565f3f9c..52ba5580c6290 100644 --- a/clients/client-ecs/src/commands/UpdateContainerInstancesStateCommand.ts +++ b/clients/client-ecs/src/commands/UpdateContainerInstancesStateCommand.ts @@ -78,7 +78,7 @@ export interface UpdateContainerInstancesStateCommandOutput *

Any PENDING or RUNNING tasks that do not belong to a service * aren't affected. You must wait for them to finish or stop them manually.

*

A container instance has completed draining when it has no more RUNNING - * tasks. You can verify this using ListTasks.

+ * tasks. You can verify this using ListTasks.

*

When a container instance has been drained, you can set a container instance to * ACTIVE status and once it has reached that status the Amazon ECS scheduler * can begin scheduling tasks on the instance again.

@@ -201,6 +201,16 @@ export interface UpdateContainerInstancesStateCommandOutput *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/UpdateServiceCommand.ts b/clients/client-ecs/src/commands/UpdateServiceCommand.ts index 28eaba8bdd3f3..9416699a2241e 100644 --- a/clients/client-ecs/src/commands/UpdateServiceCommand.ts +++ b/clients/client-ecs/src/commands/UpdateServiceCommand.ts @@ -602,6 +602,16 @@ export interface UpdateServiceCommandOutput extends UpdateServiceResponse, __Met *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/UpdateServicePrimaryTaskSetCommand.ts b/clients/client-ecs/src/commands/UpdateServicePrimaryTaskSetCommand.ts index 08e2de8a37fcd..6794cba10a782 100644 --- a/clients/client-ecs/src/commands/UpdateServicePrimaryTaskSetCommand.ts +++ b/clients/client-ecs/src/commands/UpdateServicePrimaryTaskSetCommand.ts @@ -133,6 +133,16 @@ export interface UpdateServicePrimaryTaskSetCommandOutput *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/UpdateTaskProtectionCommand.ts b/clients/client-ecs/src/commands/UpdateTaskProtectionCommand.ts index 2236b11f9df8d..8c8af456b1ce3 100644 --- a/clients/client-ecs/src/commands/UpdateTaskProtectionCommand.ts +++ b/clients/client-ecs/src/commands/UpdateTaskProtectionCommand.ts @@ -103,6 +103,16 @@ export interface UpdateTaskProtectionCommandOutput extends UpdateTaskProtectionR *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/commands/UpdateTaskSetCommand.ts b/clients/client-ecs/src/commands/UpdateTaskSetCommand.ts index a312a183d6ff6..5dac762f1c129 100644 --- a/clients/client-ecs/src/commands/UpdateTaskSetCommand.ts +++ b/clients/client-ecs/src/commands/UpdateTaskSetCommand.ts @@ -6,7 +6,8 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTaskSetRequest, UpdateTaskSetResponse } from "../models/models_0"; +import { UpdateTaskSetRequest } from "../models/models_0"; +import { UpdateTaskSetResponse } from "../models/models_1"; import { de_UpdateTaskSetCommand, se_UpdateTaskSetCommand } from "../protocols/Aws_json1_1"; /** @@ -133,6 +134,16 @@ export interface UpdateTaskSetCommandOutput extends UpdateTaskSetResponse, __Met *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* * @throws {@link ClusterNotFoundException} (client fault) *

The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.

diff --git a/clients/client-ecs/src/models/index.ts b/clients/client-ecs/src/models/index.ts index 9eaceb12865f8..1657800f73ce5 100644 --- a/clients/client-ecs/src/models/index.ts +++ b/clients/client-ecs/src/models/index.ts @@ -1,2 +1,3 @@ // smithy-typescript generated code export * from "./models_0"; +export * from "./models_1"; diff --git a/clients/client-ecs/src/models/models_0.ts b/clients/client-ecs/src/models/models_0.ts index ecd0c438903a5..d59c3f8d774b9 100644 --- a/clients/client-ecs/src/models/models_0.ts +++ b/clients/client-ecs/src/models/models_0.ts @@ -45,6 +45,16 @@ export type AgentUpdateStatus = (typeof AgentUpdateStatus)[keyof typeof AgentUpd *

These errors are usually caused by a client action. This client action might be using * an action or resource on behalf of a user that doesn't have permissions to use the * action or resource. Or, it might be specifying an identifier that isn't valid.

+ *

The following list includes additional causes for the error:

+ *
    + *
  • + *

    The RunTask could not be processed because you use managed + * scaling and there is a capacity error because the quota of tasks in the + * PROVISIONING per cluster has been reached. For information + * about the service quotas, see Amazon ECS + * service quotas.

    + *
  • + *
* @public */ export class ClientException extends __BaseException { @@ -707,12 +717,11 @@ export interface ClusterConfiguration { * FARGATE_SPOT capacity providers. The Fargate capacity providers are * available to all accounts and only need to be associated with a cluster to be used in a * capacity provider strategy.

- *

With FARGATE_SPOT, you can run interruption - * tolerant tasks at a rate that's discounted compared to the FARGATE price. - * FARGATE_SPOT runs tasks on spare compute capacity. When Amazon Web Services needs the - * capacity back, your tasks are interrupted with a two-minute warning. - * FARGATE_SPOT only supports Linux tasks with the X86_64 architecture on - * platform version 1.3.0 or later.

+ *

With FARGATE_SPOT, you can run interruption tolerant tasks at a rate + * that's discounted compared to the FARGATE price. FARGATE_SPOT + * runs tasks on spare compute capacity. When Amazon Web Services needs the capacity back, your tasks are + * interrupted with a two-minute warning. FARGATE_SPOT only supports Linux + * tasks with the X86_64 architecture on platform version 1.3.0 or later.

*

A capacity provider strategy may contain a maximum of 6 capacity providers.

* @public */ @@ -1477,15 +1486,13 @@ export interface DeploymentConfiguration { * the task towards the minimum healthy percent total.

* * - *

The default value for a replica service for - * minimumHealthyPercent is 100%. The default - * minimumHealthyPercent value for a service using - * the DAEMON service schedule is 0% for the CLI, - * the Amazon Web Services SDKs, and the APIs and 50% for the Amazon Web Services Management Console.

+ *

The default value for a replica service for minimumHealthyPercent is + * 100%. The default minimumHealthyPercent value for a service using the + * DAEMON service schedule is 0% for the CLI, the Amazon Web Services SDKs, and the + * APIs and 50% for the Amazon Web Services Management Console.

*

The minimum number of healthy tasks during a deployment is the - * desiredCount multiplied by the - * minimumHealthyPercent/100, rounded up to the - * nearest integer value.

+ * desiredCount multiplied by the minimumHealthyPercent/100, + * rounded up to the nearest integer value.

*

If a service is using either the blue/green (CODE_DEPLOY) or * EXTERNAL deployment types and is running tasks that use the * EC2 launch type, the minimum healthy @@ -1651,8 +1658,7 @@ export type AssignPublicIp = (typeof AssignPublicIp)[keyof typeof AssignPublicIp /** *

An object representing the networking details for a task or service. For example - * awsvpcConfiguration=\{subnets=["subnet-12344321"],securityGroups=["sg-12344321"]\} - *

+ * awsVpcConfiguration=\{subnets=["subnet-12344321"],securityGroups=["sg-12344321"]\}.

* @public */ export interface AwsVpcConfiguration { @@ -1883,16 +1889,12 @@ export interface Secret { /** *

The log configuration for the container. This parameter maps to LogConfig - * in the Create a container section of the Docker Remote API and the - * --log-driver option to - * docker - * run - * .

+ * in the docker create-container command and the + * --log-driver option to docker + * run.

*

By default, containers use the same logging driver that the Docker daemon uses. * However, the container might use a different logging driver than the Docker daemon by - * specifying a log driver configuration in the container definition. For more information - * about the options for different supported log drivers, see Configure logging - * drivers in the Docker documentation.

+ * specifying a log driver configuration in the container definition.

*

Understand the following when specifying a log configuration for your * containers.

*
    @@ -1904,9 +1906,8 @@ export interface Secret { * splunk, and awsfirelens.

    *

    For tasks hosted on Amazon EC2 instances, the supported log drivers are * awslogs, fluentd, gelf, - * json-file, journald, - * logentries,syslog, splunk, and - * awsfirelens.

    + * json-file, journald,syslog, + * splunk, and awsfirelens.

    * *
  • *

    This parameter requires version 1.18 of the Docker Remote API or greater on @@ -1936,12 +1937,12 @@ export interface LogConfiguration { * splunk, and awsfirelens.

    *

    For tasks hosted on Amazon EC2 instances, the supported log drivers are * awslogs, fluentd, gelf, - * json-file, journald, - * logentries,syslog, splunk, and - * awsfirelens.

    - *

    For more information about using the awslogs log driver, see Using - * the awslogs log driver in the Amazon Elastic Container Service Developer Guide.

    - *

    For more information about using the awsfirelens log driver, see Custom log routing in the Amazon Elastic Container Service Developer Guide.

    + * json-file, journald, syslog, + * splunk, and awsfirelens.

    + *

    For more information about using the awslogs log driver, see Send + * Amazon ECS logs to CloudWatch in the Amazon Elastic Container Service Developer Guide.

    + *

    For more information about using the awsfirelens log driver, see Send + * Amazon ECS logs to an Amazon Web Services service or Amazon Web Services Partner.

    * *

    If you have a custom driver that isn't listed, you can fork the Amazon ECS container * agent project that's available @@ -2183,16 +2184,12 @@ export interface ServiceConnectConfiguration { /** *

    The log configuration for the container. This parameter maps to LogConfig - * in the Create a container section of the Docker Remote API and the - * --log-driver option to - * docker - * run - * .

    + * in the docker create-container command and the + * --log-driver option to docker + * run.

    *

    By default, containers use the same logging driver that the Docker daemon uses. * However, the container might use a different logging driver than the Docker daemon by - * specifying a log driver configuration in the container definition. For more information - * about the options for different supported log drivers, see Configure logging - * drivers in the Docker documentation.

    + * specifying a log driver configuration in the container definition.

    *

    Understand the following when specifying a log configuration for your * containers.

    *
      @@ -2204,9 +2201,8 @@ export interface ServiceConnectConfiguration { * splunk, and awsfirelens.

      *

      For tasks hosted on Amazon EC2 instances, the supported log drivers are * awslogs, fluentd, gelf, - * json-file, journald, - * logentries,syslog, splunk, and - * awsfirelens.

      + * json-file, journald,syslog, + * splunk, and awsfirelens.

      * *
    • *

      This parameter requires version 1.18 of the Docker Remote API or greater on @@ -2646,8 +2642,8 @@ export interface CreateServiceRequest { * infrastructure.

      * *

      Fargate Spot infrastructure is available for use but a capacity provider - * strategy must be used. For more information, see Fargate capacity providers in the - * Amazon ECS Developer Guide.

      + * strategy must be used. For more information, see Fargate capacity providers in the Amazon ECS + * Developer Guide.

      *
      *

      The EC2 launch type runs your tasks on Amazon EC2 instances registered to your * cluster.

      @@ -2675,7 +2671,8 @@ export interface CreateServiceRequest { *

      The platform version that your tasks in the service are running on. A platform version * is specified only for tasks using the Fargate launch type. If one isn't * specified, the LATEST platform version is used. For more information, see - * Fargate platform versions in the Amazon Elastic Container Service Developer Guide.

      + * Fargate platform + * versions in the Amazon Elastic Container Service Developer Guide.

      * @public */ platformVersion?: string; @@ -2746,8 +2743,8 @@ export interface CreateServiceRequest { *

      If you do not use an Elastic Load Balancing, we recommend that you use the startPeriod in * the task definition health check parameters. For more information, see Health * check.

      - *

      If your service's tasks take a while to start and respond to Elastic Load Balancing health checks, you can - * specify a health check grace period of up to 2,147,483,647 seconds (about 69 years). + *

      If your service's tasks take a while to start and respond to Elastic Load Balancing health checks, you + * can specify a health check grace period of up to 2,147,483,647 seconds (about 69 years). * During that time, the Amazon ECS service scheduler ignores health check status. This grace * period can prevent the service scheduler from marking tasks as unhealthy and stopping * them before they have time to come up.

      @@ -2848,7 +2845,9 @@ export interface CreateServiceRequest { *

      Specifies whether to propagate the tags from the task definition to the task. If no * value is specified, the tags aren't propagated. Tags can only be propagated to the task * during task creation. To add tags to a task after task creation, use the TagResource API action.

      - *

      You must set this to a value other than NONE when you use Cost Explorer. For more information, see Amazon ECS usage reports in the Amazon Elastic Container Service Developer Guide.

      + *

      You must set this to a value other than NONE when you use Cost Explorer. + * For more information, see Amazon ECS usage reports + * in the Amazon Elastic Container Service Developer Guide.

      *

      The default is NONE.

      * @public */ @@ -2890,7 +2889,8 @@ export interface CreateServiceRequest { */ export interface DeploymentEphemeralStorage { /** - *

      Specify an Key Management Service key ID to encrypt the ephemeral storage for deployment.

      + *

      Specify an Key Management Service key ID to encrypt the ephemeral storage for + * deployment.

      * @public */ kmsKeyId?: string; @@ -4207,8 +4207,8 @@ export interface DeleteAttributesResponse { /** *

      The specified target wasn't found. You can view your available container instances - * with ListContainerInstances. Amazon ECS container instances are - * cluster-specific and Region-specific.

      + * with ListContainerInstances. Amazon ECS container instances are cluster-specific and + * Region-specific.

      * @public */ export class TargetNotFoundException extends __BaseException { @@ -4538,8 +4538,10 @@ export type EnvironmentFileType = (typeof EnvironmentFileType)[keyof typeof Envi * parameter in a container definition, they take precedence over the variables contained * within an environment file. If multiple environment files are specified that contain the * same variable, they're processed from the top down. We recommend that you use unique - * variable names. For more information, see Use a file to pass environment variables to a container in the Amazon Elastic Container Service Developer Guide.

      - *

      Environment variable files are objects in Amazon S3 and all Amazon S3 security considerations apply.

      + * variable names. For more information, see Use a file to pass + * environment variables to a container in the Amazon Elastic Container Service Developer Guide.

      + *

      Environment variable files are objects in Amazon S3 and all Amazon S3 security considerations + * apply.

      *

      You must use the following platforms for the Fargate launch type:

      *
        *
      • @@ -4572,8 +4574,8 @@ export interface EnvironmentFile { value: string | undefined; /** - *

        The file type to use. Environment files are objects in Amazon S3. The only supported value is - * s3.

        + *

        The file type to use. Environment files are objects in Amazon S3. The only supported value + * is s3.

        * @public */ type: EnvironmentFileType | undefined; @@ -4648,7 +4650,7 @@ export interface FirelensConfiguration { *

        An object representing a container health check. Health check parameters that are * specified in a container definition override any Docker health checks that exist in the * container image (such as those specified in a parent image or from the image's - * Dockerfile). This configuration maps to the HEALTHCHECK parameter of docker run.

        + * Dockerfile). This configuration maps to the HEALTHCHECK parameter of docker run.

        * *

        The Amazon ECS container agent only monitors and reports on the health checks specified * in the task definition. Amazon ECS does not monitor Docker health checks that are @@ -4761,17 +4763,18 @@ export interface FirelensConfiguration { *

        The following are notes about container health check support:

        *
          *
        • - *

          If the Amazon ECS container agent becomes disconnected from the Amazon ECS service, this won't - * cause a container to transition to an UNHEALTHY status. This is by design, - * to ensure that containers remain running during agent restarts or temporary - * unavailability. The health check status is the "last heard from" response from the Amazon ECS - * agent, so if the container was considered HEALTHY prior to the disconnect, - * that status will remain until the agent reconnects and another health check occurs. - * There are no assumptions made about the status of the container health checks.

          + *

          If the Amazon ECS container agent becomes disconnected from the Amazon ECS service, this + * won't cause a container to transition to an UNHEALTHY status. This + * is by design, to ensure that containers remain running during agent restarts or + * temporary unavailability. The health check status is the "last heard from" + * response from the Amazon ECS agent, so if the container was considered + * HEALTHY prior to the disconnect, that status will remain until + * the agent reconnects and another health check occurs. There are no assumptions + * made about the status of the container health checks.

          *
        • *
        • - *

          Container health checks require version 1.17.0 or greater of the Amazon ECS - * container agent. For more information, see Updating the + *

          Container health checks require version 1.17.0 or greater of the + * Amazon ECS container agent. For more information, see Updating the * Amazon ECS container agent.

          *
        • *
        • @@ -4803,8 +4806,7 @@ export interface HealthCheck { * CMD-SHELL, curl -f http://localhost/ || exit 1 *

          *

          An exit code of 0 indicates success, and non-zero exit code indicates failure. For - * more information, see HealthCheck in the Create a container - * section of the Docker Remote API.

          + * more information, see HealthCheck in tthe docker create-container command

          * @public */ command: string[] | undefined; @@ -4846,19 +4848,16 @@ export interface HealthCheck { } /** - *

          The Linux capabilities to add or remove from the default Docker configuration for a container defined in the task definition. For more information about the default capabilities - * and the non-default available capabilities, see Runtime privilege and Linux capabilities in the Docker run - * reference. For more detailed information about these Linux capabilities, + *

          The Linux capabilities to add or remove from the default Docker configuration for a container defined in the task definition. For more detailed information about these Linux capabilities, * see the capabilities(7) Linux manual page.

          * @public */ export interface KernelCapabilities { /** *

          The Linux capabilities for the container that have been added to the default - * configuration provided by Docker. This parameter maps to CapAdd in the - * Create a container section of the Docker Remote API and the - * --cap-add option to docker - * run.

          + * configuration provided by Docker. This parameter maps to CapAdd in the docker create-container command and the + * --cap-add option to docker + * run.

          * *

          Tasks launched on Fargate only support adding the SYS_PTRACE kernel * capability.

          @@ -4878,10 +4877,9 @@ export interface KernelCapabilities { /** *

          The Linux capabilities for the container that have been removed from the default - * configuration provided by Docker. This parameter maps to CapDrop in the - * Create a container section of the Docker Remote API and the - * --cap-drop option to docker - * run.

          + * configuration provided by Docker. This parameter maps to CapDrop in the docker create-container command and the + * --cap-drop option to docker + * run.

          *

          Valid values: "ALL" | "AUDIT_CONTROL" | "AUDIT_WRITE" | "BLOCK_SUSPEND" | * "CHOWN" | "DAC_OVERRIDE" | "DAC_READ_SEARCH" | "FOWNER" | "FSETID" | "IPC_LOCK" | * "IPC_OWNER" | "KILL" | "LEASE" | "LINUX_IMMUTABLE" | "MAC_ADMIN" | "MAC_OVERRIDE" | @@ -4988,8 +4986,7 @@ export interface LinuxParameters { /** *

          Any host devices to expose to the container. This parameter maps to - * Devices in the Create a container section of the - * Docker Remote API and the --device option to docker run.

          + * Devices in tthe docker create-container command and the --device option to docker run.

          * *

          If you're using tasks that use the Fargate launch type, the * devices parameter isn't supported.

          @@ -5008,8 +5005,8 @@ export interface LinuxParameters { /** *

          The value for the size (in MiB) of the /dev/shm volume. This parameter - * maps to the --shm-size option to docker - * run.

          + * maps to the --shm-size option to docker + * run.

          * *

          If you are using tasks that use the Fargate launch type, the * sharedMemorySize parameter is not supported.

          @@ -5020,7 +5017,7 @@ export interface LinuxParameters { /** *

          The container path, mount options, and size (in MiB) of the tmpfs mount. This - * parameter maps to the --tmpfs option to docker run.

          + * parameter maps to the --tmpfs option to docker run.

          * *

          If you're using tasks that use the Fargate launch type, the * tmpfs parameter isn't supported.

          @@ -5056,7 +5053,7 @@ export interface LinuxParameters { * 0 and 100. If the swappiness parameter is not * specified, a default value of 60 is used. If a value is not specified for * maxSwap then this parameter is ignored. This parameter maps to the - * --memory-swappiness option to docker run.

          + * --memory-swappiness option to docker run.

          * *

          If you're using tasks that use the Fargate launch type, the * swappiness parameter isn't supported.

          @@ -5133,12 +5130,9 @@ export type TransportProtocol = (typeof TransportProtocol)[keyof typeof Transpor * hostPort can be left blank or it must be the same value as the * containerPort.

          *

          Most fields of this parameter (containerPort, hostPort, - * protocol) maps to PortBindings in the - * Create a container section of the Docker Remote API and the - * --publish option to - * docker - * run - * . If the network mode of a task definition is set to + * protocol) maps to PortBindings in the docker create-container command and the + * --publish option to docker + * run. If the network mode of a task definition is set to * host, host ports must either be undefined or match the container port * in the port mapping.

          * @@ -5357,12 +5351,12 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType]; export interface ResourceRequirement { /** *

          The value for the specified resource type.

          - *

          When the type is GPU, the value is the number of physical GPUs the - * Amazon ECS container agent reserves for the container. The number of GPUs that's reserved for - * all containers in a task can't exceed the number of available GPUs on the container - * instance that the task is launched on.

          - *

          When the type is InferenceAccelerator, the value matches - * the deviceName for an InferenceAccelerator specified in a task definition.

          + *

          When the type is GPU, the value is the number of physical + * GPUs the Amazon ECS container agent reserves for the container. The number + * of GPUs that's reserved for all containers in a task can't exceed the number of + * available GPUs on the container instance that the task is launched on.

          + *

          When the type is InferenceAccelerator, the value matches the + * deviceName for an InferenceAccelerator specified in a task definition.

          * @public */ value: string | undefined; @@ -5374,10 +5368,43 @@ export interface ResourceRequirement { type: ResourceType | undefined; } +/** + *

          You can enable a restart policy for each container defined in your + * task definition, to overcome transient failures faster and maintain task availability. When you + * enable a restart policy for a container, Amazon ECS can restart the container if it exits, without needing to replace + * the task. For more information, see Restart individual containers + * in Amazon ECS tasks with container restart policies in the Amazon Elastic Container Service Developer Guide.

          + * @public + */ +export interface ContainerRestartPolicy { + /** + *

          Specifies whether a restart policy is enabled for the + * container.

          + * @public + */ + enabled: boolean | undefined; + + /** + *

          A list of exit codes that Amazon ECS will ignore and not attempt a restart on. You can specify a maximum of 50 container exit + * codes. By default, Amazon ECS does not ignore + * any exit codes.

          + * @public + */ + ignoredExitCodes?: number[]; + + /** + *

          A period of time (in seconds) that the container must run for before a restart can be attempted. A container can be + * restarted only once every restartAttemptPeriod seconds. If a container isn't able to run for this time period and exits early, it will not be restarted. You can set a minimum + * restartAttemptPeriod of 60 seconds and a maximum restartAttemptPeriod of 1800 seconds. + * By default, a container must run for 300 seconds before it can be restarted.

          + * @public + */ + restartAttemptPeriod?: number; +} + /** *

          A list of namespaced kernel parameters to set in the container. This parameter maps to - * Sysctls in the Create a container section of the - * Docker Remote API and the --sysctl option to docker run. For example, you can configure + * Sysctls in tthe docker create-container command and the --sysctl option to docker run. For example, you can configure * net.ipv4.tcp_keepalive_time setting to maintain longer lived * connections.

          *

          We don't recommend that you specify network-related systemControls @@ -5478,7 +5505,7 @@ export type UlimitName = (typeof UlimitName)[keyof typeof UlimitName]; * the nofile resource limit parameter which Fargate * overrides. The nofile resource limit sets a restriction on * the number of open files that a container can use. The default - * nofile soft limit is 1024 and the default hard limit + * nofile soft limit is 65535 and the default hard limit * is 65535.

          *

          You can specify the ulimit settings for a container in a task * definition.

          @@ -5535,10 +5562,9 @@ export interface ContainerDefinition { *

          The name of a container. If you're linking multiple containers together in a task * definition, the name of one container can be entered in the * links of another container to connect the containers. - * Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed. This parameter maps to name in the - * Create a container section of the Docker Remote API and the - * --name option to docker - * run.

          + * Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed. This parameter maps to name in tthe docker create-container command and the + * --name option to docker + * run.

          * @public */ name?: string; @@ -5550,10 +5576,9 @@ export interface ContainerDefinition { * repository-url/image:tag *
          or * repository-url/image@digest - * . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the - * Create a container section of the Docker Remote API and the - * IMAGE parameter of docker - * run.

          + * . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the docker create-container command and the + * IMAGE parameter of docker + * run.

          *
            *
          • *

            When a new task starts, the Amazon ECS container agent pulls the latest version of @@ -5594,8 +5619,7 @@ export interface ContainerDefinition { /** *

            The number of cpu units reserved for the container. This parameter maps - * to CpuShares in the Create a container section of the - * Docker Remote API and the --cpu-shares option to docker run.

            + * to CpuShares in the docker create-container commandand the --cpu-shares option to docker run.

            *

            This field is optional for tasks using the Fargate launch type, and the * only requirement is that the total amount of CPU reserved for all containers within a * task be lower than the task-level cpu value.

            @@ -5614,12 +5638,11 @@ export interface ContainerDefinition { * to higher CPU usage if the other container was not using it. If both tasks were 100% * active all of the time, they would be limited to 512 CPU units.

            *

            On Linux container instances, the Docker daemon on the container instance uses the CPU - * value to calculate the relative CPU share ratios for running containers. For more - * information, see CPU share - * constraint in the Docker documentation. The minimum valid CPU share value - * that the Linux kernel allows is 2. However, the CPU parameter isn't required, and you - * can use CPU values below 2 in your container definitions. For CPU values below 2 - * (including null), the behavior varies based on your Amazon ECS container agent + * value to calculate the relative CPU share ratios for running containers. The minimum valid CPU share value + * that the Linux kernel allows is 2, and the + * maximum valid CPU share value that the Linux kernel allows is 262144. However, the CPU parameter isn't required, and you + * can use CPU values below 2 or above 262144 in your container definitions. For CPU values below 2 + * (including null) or above 262144, the behavior varies based on your Amazon ECS container agent * version:

            *
              *
            • @@ -5634,6 +5657,12 @@ export interface ContainerDefinition { * Agent versions greater than or equal to 1.2.0: * Null, zero, and CPU values of 1 are passed to Docker as 2.

              *
            • + *
            • + *

              + * Agent versions greater than or equal to + * 1.84.0: CPU values greater than 256 vCPU are passed to Docker as + * 256, which is equivalent to 262144 CPU shares.

              + *
            • *
            *

            On Windows container instances, the CPU limit is enforced as an absolute limit, or a * quota. Windows containers only have access to the specified amount of CPU that's @@ -5648,8 +5677,7 @@ export interface ContainerDefinition { * to exceed the memory specified here, the container is killed. The total amount of memory * reserved for all containers within a task must be lower than the task * memory value, if one is specified. This parameter maps to - * Memory in the Create a container section of the - * Docker Remote API and the --memory option to docker run.

            + * Memory in thethe docker create-container command and the --memory option to docker run.

            *

            If using the Fargate launch type, this parameter is optional.

            *

            If using the EC2 launch type, you must specify either a task-level * memory value or a container-level memory value. If you specify both a container-level @@ -5672,8 +5700,7 @@ export interface ContainerDefinition { * However, your container can consume more memory when it needs to, up to either the hard * limit specified with the memory parameter (if applicable), or all of the * available memory on the container instance, whichever comes first. This parameter maps - * to MemoryReservation in the Create a container section of - * the Docker Remote API and the --memory-reservation option to docker run.

            + * to MemoryReservation in the the docker create-container command and the --memory-reservation option to docker run.

            *

            If a task-level memory value is not specified, you must specify a non-zero integer for * one or both of memory or memoryReservation in a container * definition. If you specify both, memory must be greater than @@ -5700,12 +5727,9 @@ export interface ContainerDefinition { * without the need for port mappings. This parameter is only supported if the network mode * of a task definition is bridge. The name:internalName * construct is analogous to name:alias in Docker links. - * Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed. For more information about linking Docker containers, go to - * Legacy container links - * in the Docker documentation. This parameter maps to Links in the - * Create a container section of the Docker Remote API and the - * --link option to docker - * run.

            + * Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed.. This parameter maps to Links in the docker create-container command and the + * --link option to docker + * run.

            * *

            This parameter is not supported for Windows containers.

            *
            @@ -5729,9 +5753,9 @@ export interface ContainerDefinition { * localhost. There's no loopback for port mappings on Windows, so you * can't access a container's mapped port from the host itself.

            *

            This parameter maps to PortBindings in the - * Create a container section of the Docker Remote API and the - * --publish option to docker - * run. If the network mode of a task definition is set to none, + * the docker create-container command and the + * --publish option to docker + * run. If the network mode of a task definition is set to none, * then you can't specify port mappings. If the network mode of a task definition is set to * host, then host ports must either be undefined or they must match the * container port in the port mapping.

            @@ -5762,6 +5786,13 @@ export interface ContainerDefinition { */ essential?: boolean; + /** + *

            The restart policy for a container. When you set up a restart policy, Amazon ECS can restart the container without needing to replace the + * task. For more information, see Restart individual containers in Amazon ECS tasks with container restart policies in the Amazon Elastic Container Service Developer Guide.

            + * @public + */ + restartPolicy?: ContainerRestartPolicy; + /** * *

            Early versions of the Amazon ECS container agent don't properly handle @@ -5770,17 +5801,16 @@ export interface ContainerDefinition { * arguments as command array items instead.

            *
            *

            The entry point that's passed to the container. This parameter maps to - * Entrypoint in the Create a container section of the - * Docker Remote API and the --entrypoint option to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#entrypoint.

            + * Entrypoint in tthe docker create-container command and the --entrypoint option to docker run.

            * @public */ entryPoint?: string[]; /** *

            The command that's passed to the container. This parameter maps to Cmd in - * the Create a container section of the Docker Remote API and the - * COMMAND parameter to docker - * run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd. If there are multiple arguments, each + * the docker create-container command and the + * COMMAND parameter to docker + * run. If there are multiple arguments, each * argument is a separated string in the array.

            * @public */ @@ -5788,8 +5818,7 @@ export interface ContainerDefinition { /** *

            The environment variables to pass to a container. This parameter maps to - * Env in the Create a container section of the - * Docker Remote API and the --env option to docker run.

            + * Env in the docker create-container command and the --env option to docker run.

            * *

            We don't recommend that you use plaintext environment variables for sensitive * information, such as credential data.

            @@ -5800,13 +5829,11 @@ export interface ContainerDefinition { /** *

            A list of files containing the environment variables to pass to a container. This - * parameter maps to the --env-file option to docker run.

            + * parameter maps to the --env-file option to docker run.

            *

            You can specify up to ten environment files. The file must have a .env * file extension. Each line in an environment file contains an environment variable in * VARIABLE=VALUE format. Lines beginning with # are treated - * as comments and are ignored. For more information about the environment variable file - * syntax, see Declare default - * environment variables in file.

            + * as comments and are ignored.

            *

            If there are environment variables specified using the environment * parameter in a container definition, they take precedence over the variables contained * within an environment file. If multiple environment files are specified that contain the @@ -5819,8 +5846,7 @@ export interface ContainerDefinition { /** *

            The mount points for data volumes in your container.

            - *

            This parameter maps to Volumes in the Create a container - * section of the Docker Remote API and the --volume option to docker run.

            + *

            This parameter maps to Volumes in the the docker create-container command and the --volume option to docker run.

            *

            Windows containers can mount whole directories on the same drive as * $env:ProgramData. Windows containers can't mount directories on a * different drive, and mount point can't be across drives.

            @@ -5830,8 +5856,7 @@ export interface ContainerDefinition { /** *

            Data volumes to mount from another container. This parameter maps to - * VolumesFrom in the Create a container section of the - * Docker Remote API and the --volumes-from option to docker run.

            + * VolumesFrom in tthe docker create-container command and the --volumes-from option to docker run.

            * @public */ volumesFrom?: VolumeFrom[]; @@ -5914,7 +5939,7 @@ export interface ContainerDefinition { * later, then they contain the required versions of the container agent and * ecs-init. For more information, see Amazon ECS-optimized Linux AMI * in the Amazon Elastic Container Service Developer Guide.

            - *

            The valid values are 2-120 seconds.

            + *

            The valid values for Fargate are 2-120 seconds.

            * @public */ startTimeout?: number; @@ -5954,9 +5979,9 @@ export interface ContainerDefinition { /** *

            The hostname to use for your container. This parameter maps to Hostname - * in the Create a container section of the Docker Remote API and the - * --hostname option to docker - * run.

            + * in thethe docker create-container command and the + * --hostname option to docker + * run.

            * *

            The hostname parameter is not supported if you're using the * awsvpc network mode.

            @@ -5966,10 +5991,9 @@ export interface ContainerDefinition { hostname?: string; /** - *

            The user to use inside the container. This parameter maps to User in the - * Create a container section of the Docker Remote API and the - * --user option to docker - * run.

            + *

            The user to use inside the container. This parameter maps to User in the docker create-container command and the + * --user option to docker + * run.

            * *

            When running tasks using the host network mode, don't run containers * using the root user (UID 0). We recommend using a non-root user for better @@ -6018,16 +6042,14 @@ export interface ContainerDefinition { /** *

            The working directory to run commands inside the container in. This parameter maps to - * WorkingDir in the Create a container section of the - * Docker Remote API and the --workdir option to docker run.

            + * WorkingDir in the docker create-container command and the --workdir option to docker run.

            * @public */ workingDirectory?: string; /** *

            When this parameter is true, networking is off within the container. This parameter - * maps to NetworkDisabled in the Create a container section - * of the Docker Remote API.

            + * maps to NetworkDisabled in the docker create-container command.

            * *

            This parameter is not supported for Windows containers.

            *
            @@ -6038,8 +6060,7 @@ export interface ContainerDefinition { /** *

            When this parameter is true, the container is given elevated privileges on the host * container instance (similar to the root user). This parameter maps to - * Privileged in the Create a container section of the - * Docker Remote API and the --privileged option to docker run.

            + * Privileged in the the docker create-container command and the --privileged option to docker run

            * *

            This parameter is not supported for Windows containers or tasks run on Fargate.

            *
            @@ -6049,10 +6070,9 @@ export interface ContainerDefinition { /** *

            When this parameter is true, the container is given read-only access to its root file - * system. This parameter maps to ReadonlyRootfs in the - * Create a container section of the Docker Remote API and the - * --read-only option to docker - * run.

            + * system. This parameter maps to ReadonlyRootfs in the docker create-container command and the + * --read-only option to docker + * run.

            * *

            This parameter is not supported for Windows containers.

            *
            @@ -6062,8 +6082,7 @@ export interface ContainerDefinition { /** *

            A list of DNS servers that are presented to the container. This parameter maps to - * Dns in the Create a container section of the - * Docker Remote API and the --dns option to docker run.

            + * Dns in the the docker create-container command and the --dns option to docker run.

            * *

            This parameter is not supported for Windows containers.

            *
            @@ -6073,8 +6092,7 @@ export interface ContainerDefinition { /** *

            A list of DNS search domains that are presented to the container. This parameter maps - * to DnsSearch in the Create a container section of the - * Docker Remote API and the --dns-search option to docker run.

            + * to DnsSearch in the docker create-container command and the --dns-search option to docker run.

            * *

            This parameter is not supported for Windows containers.

            *
            @@ -6084,10 +6102,9 @@ export interface ContainerDefinition { /** *

            A list of hostnames and IP address mappings to append to the /etc/hosts - * file on the container. This parameter maps to ExtraHosts in the - * Create a container section of the Docker Remote API and the - * --add-host option to docker - * run.

            + * file on the container. This parameter maps to ExtraHosts in the docker create-container command and the + * --add-host option to docker + * run.

            * *

            This parameter isn't supported for Windows containers or tasks that use the * awsvpc network mode.

            @@ -6097,9 +6114,7 @@ export interface ContainerDefinition { extraHosts?: HostEntry[]; /** - *

            A list of strings to provide custom configuration for multiple security systems. For - * more information about valid values, see Docker - * Run Security Configuration. This field isn't valid for containers in tasks + *

            A list of strings to provide custom configuration for multiple security systems. This field isn't valid for containers in tasks * using the Fargate launch type.

            *

            For Linux tasks on EC2, this parameter can be used to reference custom * labels for SELinux and AppArmor multi-level security systems.

            @@ -6108,10 +6123,9 @@ export interface ContainerDefinition { * For more information, see Using gMSAs for Windows * Containers and Using gMSAs for Linux * Containers in the Amazon Elastic Container Service Developer Guide.

            - *

            This parameter maps to SecurityOpt in the - * Create a container section of the Docker Remote API and the - * --security-opt option to docker - * run.

            + *

            This parameter maps to SecurityOpt in the docker create-container command and the + * --security-opt option to docker + * run.

            * *

            The Amazon ECS container agent running on a container instance must register with the * ECS_SELINUX_CAPABLE=true or ECS_APPARMOR_CAPABLE=true @@ -6119,8 +6133,6 @@ export interface ContainerDefinition { * security options. For more information, see Amazon ECS Container * Agent Configuration in the Amazon Elastic Container Service Developer Guide.

            *
            - *

            For more information about valid values, see Docker - * Run Security Configuration.

            *

            Valid values: "no-new-privileges" | "apparmor:PROFILE" | "label:value" | * "credentialspec:CredentialSpecFilePath"

            * @public @@ -6130,24 +6142,21 @@ export interface ContainerDefinition { /** *

            When this parameter is true, you can deploy containerized applications * that require stdin or a tty to be allocated. This parameter - * maps to OpenStdin in the Create a container section of the - * Docker Remote API and the --interactive option to docker run.

            + * maps to OpenStdin in the docker create-container command and the --interactive option to docker run.

            * @public */ interactive?: boolean; /** *

            When this parameter is true, a TTY is allocated. This parameter maps to - * Tty in the Create a container section of the - * Docker Remote API and the --tty option to docker run.

            + * Tty in tthe docker create-container command and the --tty option to docker run.

            * @public */ pseudoTerminal?: boolean; /** *

            A key/value map of labels to add to the container. This parameter maps to - * Labels in the Create a container section of the - * Docker Remote API and the --label option to docker run. This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '\{\{.Server.APIVersion\}\}' + * Labels in the docker create-container command and the --label option to docker run. This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '\{\{.Server.APIVersion\}\}' *

            * @public */ @@ -6156,15 +6165,14 @@ export interface ContainerDefinition { /** *

            A list of ulimits to set in the container. If a ulimit value * is specified in a task definition, it overrides the default values set by Docker. This - * parameter maps to Ulimits in the Create a container section - * of the Docker Remote API and the --ulimit option to docker run. Valid naming values are displayed + * parameter maps to Ulimits in tthe docker create-container command and the --ulimit option to docker run. Valid naming values are displayed * in the Ulimit data type.

            *

            Amazon ECS tasks hosted on Fargate use the default * resource limit values set by the operating system with the exception of * the nofile resource limit parameter which Fargate * overrides. The nofile resource limit sets a restriction on * the number of open files that a container can use. The default - * nofile soft limit is 1024 and the default hard limit + * nofile soft limit is 65535 and the default hard limit * is 65535.

            *

            This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '\{\{.Server.APIVersion\}\}' *

            @@ -6177,17 +6185,14 @@ export interface ContainerDefinition { /** *

            The log configuration specification for the container.

            - *

            This parameter maps to LogConfig in the - * Create a container section of the Docker Remote API and the - * --log-driver option to docker - * run. By default, containers use the same logging driver that the Docker + *

            This parameter maps to LogConfig in the docker create-container command and the + * --log-driver option to docker + * run. By default, containers use the same logging driver that the Docker * daemon uses. However the container can use a different logging driver than the Docker * daemon by specifying a log driver with this parameter in the container definition. To * use a different logging driver for a container, the log system must be configured * properly on the container instance (or on a different log server for remote logging - * options). For more information about the options for different supported log drivers, - * see Configure - * logging drivers in the Docker documentation.

            + * options).

            * *

            Amazon ECS currently supports a subset of the logging drivers available to the Docker * daemon (shown in the LogConfiguration data type). Additional log @@ -6209,18 +6214,16 @@ export interface ContainerDefinition { /** *

            The container health check command and associated configuration parameters for the - * container. This parameter maps to HealthCheck in the - * Create a container section of the Docker Remote API and the - * HEALTHCHECK parameter of docker - * run.

            + * container. This parameter maps to HealthCheck in the docker create-container command and the + * HEALTHCHECK parameter of docker + * run.

            * @public */ healthCheck?: HealthCheck; /** *

            A list of namespaced kernel parameters to set in the container. This parameter maps to - * Sysctls in the Create a container section of the - * Docker Remote API and the --sysctl option to docker run. For example, you can configure + * Sysctls in tthe docker create-container command and the --sysctl option to docker run. For example, you can configure * net.ipv4.tcp_keepalive_time setting to maintain longer lived * connections.

            * @public @@ -6303,8 +6306,8 @@ export interface ContainerDefinition { */ export interface EphemeralStorage { /** - *

            The total amount, in GiB, of ephemeral storage to set for the task. The minimum supported - * value is 20 GiB and the maximum supported value is + *

            The total amount, in GiB, of ephemeral storage to set for the task. The minimum + * supported value is 20 GiB and the maximum supported value is * 200 GiB.

            * @public */ @@ -6621,29 +6624,25 @@ export interface DockerVolumeConfiguration { * by Docker because it is used for task placement. If the driver was installed using the * Docker plugin CLI, use docker plugin ls to retrieve the driver name from * your container instance. If the driver was installed using another method, use Docker - * plugin discovery to retrieve the driver name. For more information, see Docker - * plugin discovery. This parameter maps to Driver in the - * Create a volume section of the Docker Remote API and the - * xxdriver option to docker - * volume create.

            + * plugin discovery to retrieve the driver name. This parameter maps to Driver in the docker create-container command and the + * xxdriver option to docker + * volume create.

            * @public */ driver?: string; /** *

            A map of Docker driver-specific options passed through. This parameter maps to - * DriverOpts in the Create a volume section of the - * Docker Remote API and the xxopt option to docker - * volume create.

            + * DriverOpts in the docker create-volume command and the xxopt option to docker + * volume create.

            * @public */ driverOpts?: Record; /** *

            Custom metadata to add to your Docker volume. This parameter maps to - * Labels in the Create a volume section of the - * Docker Remote API and the xxlabel option to docker - * volume create.

            + * Labels in the docker create-container command and the xxlabel option to docker + * volume create.

            * @public */ labels?: Record; @@ -6949,21 +6948,16 @@ export interface TaskDefinition { /** *

            The short name or full Amazon Resource Name (ARN) of the Identity and Access Management role that grants containers in the - * task permission to call Amazon Web Services APIs on your behalf. For more information, see Amazon ECS - * Task Role in the Amazon Elastic Container Service Developer Guide.

            - *

            IAM roles for tasks on Windows require that the -EnableTaskIAMRole - * option is set when you launch the Amazon ECS-optimized Windows AMI. Your containers must also run some - * configuration code to use the feature. For more information, see Windows IAM roles - * for tasks in the Amazon Elastic Container Service Developer Guide.

            + * task permission to call Amazon Web Services APIs on your behalf. For informationabout the required + * IAM roles for Amazon ECS, see IAM + * roles for Amazon ECS in the Amazon Elastic Container Service Developer Guide.

            * @public */ taskRoleArn?: string; /** *

            The Amazon Resource Name (ARN) of the task execution role that grants the Amazon ECS container agent - * permission to make Amazon Web Services API calls on your behalf. The task execution IAM role is required - * depending on the requirements of your task. For more information, see Amazon ECS task - * execution IAM role in the Amazon Elastic Container Service Developer Guide.

            + * permission to make Amazon Web Services API calls on your behalf. For informationabout the required IAM roles for Amazon ECS, see IAM roles for Amazon ECS in the Amazon Elastic Container Service Developer Guide.

            * @public */ executionRoleArn?: string; @@ -6990,13 +6984,11 @@ export interface TaskDefinition { * to use a non-root user.

            *
            *

            If the network mode is awsvpc, the task is allocated an elastic network - * interface, and you must specify a NetworkConfiguration value when you create + * interface, and you must specify a NetworkConfiguration value when you create * a service or run a task with the task definition. For more information, see Task Networking in the * Amazon Elastic Container Service Developer Guide.

            *

            If the network mode is host, you cannot run multiple instantiations of the * same task on a single container instance when port mappings are used.

            - *

            For more information, see Network - * settings in the Docker run reference.

            * @public */ networkMode?: NetworkMode; @@ -7081,6 +7073,9 @@ export interface TaskDefinition { * this field is optional. Any value can be used. If you use the Fargate launch type, this * field is required. You must use one of the following values. The value that you choose * determines your range of valid values for the memory parameter.

            + *

            If you use the EC2 launch type, this field is optional. Supported values + * are between 128 CPU units (0.125 vCPUs) and 10240 + * CPU units (10 vCPUs).

            *

            The CPU units cannot be less than 1 vCPU when you use Windows containers on * Fargate.

            *
              @@ -7174,12 +7169,9 @@ export interface TaskDefinition { *

              If task is specified, all containers within the specified * task share the same process namespace.

              *

              If no value is specified, the - * default is a private namespace for each container. For more information, - * see PID settings in the Docker run - * reference.

              + * default is a private namespace for each container.

              *

              If the host PID mode is used, there's a heightened risk - * of undesired process namespace exposure. For more information, see - * Docker security.

              + * of undesired process namespace exposure.

              * *

              This parameter is not supported for Windows containers.

              *
              @@ -7202,12 +7194,9 @@ export interface TaskDefinition { * share the same IPC resources. If none is specified, then IPC resources * within the containers of a task are private and not shared with other containers in a * task or on the container instance. If no value is specified, then the IPC resource - * namespace sharing depends on the Docker daemon setting on the container instance. For - * more information, see IPC - * settings in the Docker run reference.

              + * namespace sharing depends on the Docker daemon setting on the container instance.

              *

              If the host IPC mode is used, be aware that there is a heightened risk of - * undesired IPC namespace expose. For more information, see Docker - * security.

              + * undesired IPC namespace expose.

              *

              If you are setting namespaced kernel parameters using systemControls for * the containers in the task, the following will apply to your IPC resource namespace. For * more information, see System @@ -8477,14 +8466,15 @@ export interface Container { export interface TaskEphemeralStorage { /** *

              The total amount, in GiB, of the ephemeral storage to set for the task. The minimum - * supported value is 20 GiB and the maximum supported value is
 200 - * GiB.

              + * supported value is 20 GiB and the maximum supported value is + * 200 GiB.

              * @public */ sizeInGiB?: number; /** - *

              Specify an Key Management Service key ID to encrypt the ephemeral storage for the task.

              + *

              Specify an Key Management Service key ID to encrypt the ephemeral storage for the + * task.

              * @public */ kmsKeyId?: string; @@ -10799,9 +10789,7 @@ export interface RegisterTaskDefinitionRequest { /** *

              The Amazon Resource Name (ARN) of the task execution role that grants the Amazon ECS container agent - * permission to make Amazon Web Services API calls on your behalf. The task execution IAM role is required - * depending on the requirements of your task. For more information, see Amazon ECS task - * execution IAM role in the Amazon Elastic Container Service Developer Guide.

              + * permission to make Amazon Web Services API calls on your behalf. For informationabout the required IAM roles for Amazon ECS, see IAM roles for Amazon ECS in the Amazon Elastic Container Service Developer Guide.

              * @public */ executionRoleArn?: string; @@ -10828,13 +10816,11 @@ export interface RegisterTaskDefinitionRequest { * to use a non-root user.

              * *

              If the network mode is awsvpc, the task is allocated an elastic network - * interface, and you must specify a NetworkConfiguration value when you create + * interface, and you must specify a NetworkConfiguration value when you create * a service or run a task with the task definition. For more information, see Task Networking in the * Amazon Elastic Container Service Developer Guide.

              *

              If the network mode is host, you cannot run multiple instantiations of the * same task on a single container instance when port mappings are used.

              - *

              For more information, see Network - * settings in the Docker run reference.

              * @public */ networkMode?: NetworkMode; @@ -11018,12 +11004,9 @@ export interface RegisterTaskDefinitionRequest { *

              If task is specified, all containers within the specified * task share the same process namespace.

              *

              If no value is specified, the - * default is a private namespace for each container. For more information, - * see PID settings in the Docker run - * reference.

              + * default is a private namespace for each container.

              *

              If the host PID mode is used, there's a heightened risk - * of undesired process namespace exposure. For more information, see - * Docker security.

              + * of undesired process namespace exposure.

              * *

              This parameter is not supported for Windows containers.

              *
              @@ -11046,12 +11029,9 @@ export interface RegisterTaskDefinitionRequest { * share the same IPC resources. If none is specified, then IPC resources * within the containers of a task are private and not shared with other containers in a * task or on the container instance. If no value is specified, then the IPC resource - * namespace sharing depends on the Docker daemon setting on the container instance. For - * more information, see IPC - * settings in the Docker run reference.

              + * namespace sharing depends on the Docker daemon setting on the container instance.

              *

              If the host IPC mode is used, be aware that there is a heightened risk of - * undesired IPC namespace expose. For more information, see Docker - * security.

              + * undesired IPC namespace expose.

              *

              If you are setting namespaced kernel parameters using systemControls for * the containers in the task, the following will apply to your IPC resource namespace. For * more information, see System @@ -11569,9 +11549,9 @@ export interface RunTaskRequest { *

              An optional tag specified when a task is started. For example, if you automatically * trigger a task to run a batch process job, you could apply a unique identifier for that * job to your task with the startedBy parameter. You can then identify which - * tasks belong to that job by filtering the results of a ListTasks call - * with the startedBy value. Up to 128 letters (uppercase and lowercase), - * numbers, hyphens (-), and underscores (_) are allowed.

              + * tasks belong to that job by filtering the results of a ListTasks call with + * the startedBy value. Up to 128 letters (uppercase and lowercase), numbers, + * hyphens (-), forward slash (/), and underscores (_) are allowed.

              *

              If a task is started by an Amazon ECS service, then the startedBy parameter * contains the deployment ID of the service that starts it.

              * @public @@ -11627,8 +11607,8 @@ export interface RunTaskRequest { *

              To specify a specific revision, include the revision number in the ARN. For example, * to specify revision 2, use * arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:2.

              - *

              To specify all revisions, use the wildcard (*) in the ARN. For example, to specify all - * revisions, use + *

              To specify all revisions, use the wildcard (*) in the ARN. For example, to specify + * all revisions, use * arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:*.

              *

              For more information, see Policy Resources for Amazon ECS in the Amazon Elastic Container Service Developer Guide.

              * @public @@ -11659,7 +11639,6 @@ export interface RunTaskResponse { /** *

              A full description of the tasks that were run. The tasks that were successfully placed * on your cluster are described here.

              - *

              * @public */ tasks?: Task[]; @@ -11753,9 +11732,9 @@ export interface StartTaskRequest { *

              An optional tag specified when a task is started. For example, if you automatically * trigger a task to run a batch process job, you could apply a unique identifier for that * job to your task with the startedBy parameter. You can then identify which - * tasks belong to that job by filtering the results of a ListTasks call - * with the startedBy value. Up to 36 letters (uppercase and lowercase), - * numbers, hyphens (-), and underscores (_) are allowed.

              + * tasks belong to that job by filtering the results of a ListTasks call with + * the startedBy value. Up to 36 letters (uppercase and lowercase), numbers, + * hyphens (-), forward slash (/), and underscores (_) are allowed.

              *

              If a task is started by an Amazon ECS service, the startedBy parameter * contains the deployment ID of the service that starts it.

              * @public @@ -12863,17 +12842,6 @@ export interface UpdateTaskSetRequest { scale: Scale | undefined; } -/** - * @public - */ -export interface UpdateTaskSetResponse { - /** - *

              Details about the task set.

              - * @public - */ - taskSet?: TaskSet; -} - /** * @internal */ diff --git a/clients/client-ecs/src/models/models_1.ts b/clients/client-ecs/src/models/models_1.ts new file mode 100644 index 0000000000000..fd0da70788da8 --- /dev/null +++ b/clients/client-ecs/src/models/models_1.ts @@ -0,0 +1,13 @@ +// smithy-typescript generated code +import { TaskSet } from "./models_0"; + +/** + * @public + */ +export interface UpdateTaskSetResponse { + /** + *

              Details about the task set.

              + * @public + */ + taskSet?: TaskSet; +} diff --git a/clients/client-ecs/src/protocols/Aws_json1_1.ts b/clients/client-ecs/src/protocols/Aws_json1_1.ts index 1fee3b94304f6..f4104f54aff4d 100644 --- a/clients/client-ecs/src/protocols/Aws_json1_1.ts +++ b/clients/client-ecs/src/protocols/Aws_json1_1.ts @@ -198,6 +198,7 @@ import { ContainerInstanceField, ContainerInstanceHealthStatus, ContainerOverride, + ContainerRestartPolicy, ContainerStateChange, CreateCapacityProviderRequest, CreateClusterRequest, @@ -370,11 +371,11 @@ import { UpdateTaskProtectionRequest, UpdateTaskProtectionResponse, UpdateTaskSetRequest, - UpdateTaskSetResponse, VersionInfo, Volume, VolumeFrom, } from "../models/models_0"; +import { UpdateTaskSetResponse } from "../models/models_1"; /** * serializeAws_json1_1CreateCapacityProviderCommand @@ -2772,6 +2773,8 @@ const de_UpdateInProgressExceptionRes = async ( // se_ContainerOverrides omitted. +// se_ContainerRestartPolicy omitted. + // se_ContainerStateChange omitted. // se_ContainerStateChanges omitted. @@ -2903,6 +2906,8 @@ const se_CreateTaskSetRequest = (input: CreateTaskSetRequest, context: __SerdeCo // se_InferenceAccelerators omitted. +// se_IntegerList omitted. + // se_KernelCapabilities omitted. // se_KeyValuePair omitted. @@ -3353,6 +3358,8 @@ const de_ContainerInstances = (output: any, context: __SerdeContext): ContainerI // de_ContainerOverrides omitted. +// de_ContainerRestartPolicy omitted. + /** * deserializeAws_json1_1Containers */ @@ -3652,6 +3659,8 @@ const de_InstanceHealthCheckResultList = (output: any, context: __SerdeContext): return retVal; }; +// de_IntegerList omitted. + // de_InvalidParameterException omitted. // de_KernelCapabilities omitted. diff --git a/codegen/sdk-codegen/aws-models/ecs.json b/codegen/sdk-codegen/aws-models/ecs.json index 6f4fad9674ec2..bfcc1fe5e4983 100644 --- a/codegen/sdk-codegen/aws-models/ecs.json +++ b/codegen/sdk-codegen/aws-models/ecs.json @@ -1518,7 +1518,7 @@ } }, "traits": { - "smithy.api#documentation": "

              An object representing the networking details for a task or service. For example\n\t\t\t\tawsvpcConfiguration={subnets=[\"subnet-12344321\"],securityGroups=[\"sg-12344321\"]}\n

              " + "smithy.api#documentation": "

              An object representing the networking details for a task or service. For example\n\t\t\t\tawsVpcConfiguration={subnets=[\"subnet-12344321\"],securityGroups=[\"sg-12344321\"]}.

              " } }, "com.amazonaws.ecs#BlockedException": { @@ -1681,7 +1681,7 @@ } }, "traits": { - "smithy.api#documentation": "

              The details of a capacity provider strategy. A capacity provider strategy can be set\n\t\t\twhen using the RunTask or CreateCluster APIs or as\n\t\t\tthe default capacity provider strategy for a cluster with the CreateCluster API.

              \n

              Only capacity providers that are already associated with a cluster and have an\n\t\t\t\tACTIVE or UPDATING status can be used in a capacity\n\t\t\tprovider strategy. The PutClusterCapacityProviders API is used to\n\t\t\tassociate a capacity provider with a cluster.

              \n

              If specifying a capacity provider that uses an Auto Scaling group, the capacity\n\t\t\tprovider must already be created. New Auto Scaling group capacity providers can be\n\t\t\tcreated with the CreateCapacityProvider API operation.

              \n

              To use a Fargate capacity provider, specify either the FARGATE or\n\t\t\t\tFARGATE_SPOT capacity providers. The Fargate capacity providers are\n\t\t\tavailable to all accounts and only need to be associated with a cluster to be used in a\n\t\t\tcapacity provider strategy.

              \n

              With FARGATE_SPOT, you can run interruption\n\t\t\ttolerant tasks at a rate that's discounted compared to the FARGATE price.\n\t\t\t\tFARGATE_SPOT runs tasks on spare compute capacity. When Amazon Web Services needs the\n\t\t\tcapacity back, your tasks are interrupted with a two-minute warning.\n\t\t\t\tFARGATE_SPOT only supports Linux tasks with the X86_64 architecture on\n\t\t\tplatform version 1.3.0 or later.

              \n

              A capacity provider strategy may contain a maximum of 6 capacity providers.

              " + "smithy.api#documentation": "

              The details of a capacity provider strategy. A capacity provider strategy can be set\n\t\t\twhen using the RunTask or CreateCluster APIs or as\n\t\t\tthe default capacity provider strategy for a cluster with the CreateCluster API.

              \n

              Only capacity providers that are already associated with a cluster and have an\n\t\t\t\tACTIVE or UPDATING status can be used in a capacity\n\t\t\tprovider strategy. The PutClusterCapacityProviders API is used to\n\t\t\tassociate a capacity provider with a cluster.

              \n

              If specifying a capacity provider that uses an Auto Scaling group, the capacity\n\t\t\tprovider must already be created. New Auto Scaling group capacity providers can be\n\t\t\tcreated with the CreateCapacityProvider API operation.

              \n

              To use a Fargate capacity provider, specify either the FARGATE or\n\t\t\t\tFARGATE_SPOT capacity providers. The Fargate capacity providers are\n\t\t\tavailable to all accounts and only need to be associated with a cluster to be used in a\n\t\t\tcapacity provider strategy.

              \n

              With FARGATE_SPOT, you can run interruption tolerant tasks at a rate\n\t\t\tthat's discounted compared to the FARGATE price. FARGATE_SPOT\n\t\t\truns tasks on spare compute capacity. When Amazon Web Services needs the capacity back, your tasks are\n\t\t\tinterrupted with a two-minute warning. FARGATE_SPOT only supports Linux\n\t\t\ttasks with the X86_64 architecture on platform version 1.3.0 or later.

              \n

              A capacity provider strategy may contain a maximum of 6 capacity providers.

              " } }, "com.amazonaws.ecs#CapacityProviderStrategyItemBase": { @@ -1762,7 +1762,7 @@ } }, "traits": { - "smithy.api#documentation": "

              These errors are usually caused by a client action. This client action might be using\n\t\t\tan action or resource on behalf of a user that doesn't have permissions to use the\n\t\t\taction or resource. Or, it might be specifying an identifier that isn't valid.

              ", + "smithy.api#documentation": "

              These errors are usually caused by a client action. This client action might be using\n\t\t\tan action or resource on behalf of a user that doesn't have permissions to use the\n\t\t\taction or resource. Or, it might be specifying an identifier that isn't valid.

              \n

              The following list includes additional causes for the error:

              \n
                \n
              • \n

                The RunTask could not be processed because you use managed\n\t\t\t\t\tscaling and there is a capacity error because the quota of tasks in the\n\t\t\t\t\t\tPROVISIONING per cluster has been reached. For information\n\t\t\t\t\tabout the service quotas, see Amazon ECS\n\t\t\t\t\t\tservice quotas.

                \n
              • \n
              ", "smithy.api#error": "client" } }, @@ -2279,13 +2279,13 @@ "name": { "target": "com.amazonaws.ecs#String", "traits": { - "smithy.api#documentation": "

              The name of a container. If you're linking multiple containers together in a task\n\t\t\tdefinition, the name of one container can be entered in the\n\t\t\t\tlinks of another container to connect the containers.\n\t\t\tUp to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed. This parameter maps to name in the\n\t\t\tCreate a container section of the Docker Remote API and the\n\t\t\t\t--name option to docker\n\t\t\trun.

              " + "smithy.api#documentation": "

              The name of a container. If you're linking multiple containers together in a task\n\t\t\tdefinition, the name of one container can be entered in the\n\t\t\t\tlinks of another container to connect the containers.\n\t\t\tUp to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed. This parameter maps to name in tthe docker create-container command and the\n\t\t\t\t--name option to docker\n\t\t\trun.

              " } }, "image": { "target": "com.amazonaws.ecs#String", "traits": { - "smithy.api#documentation": "

              The image used to start a container. This string is passed directly to the Docker\n\t\t\tdaemon. By default, images in the Docker Hub registry are available. Other repositories\n\t\t\tare specified with either \n repository-url/image:tag\n or \n repository-url/image@digest\n . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the\n\t\t\tCreate a container section of the Docker Remote API and the\n\t\t\t\tIMAGE parameter of docker\n\t\t\t\trun.

              \n
                \n
              • \n

                When a new task starts, the Amazon ECS container agent pulls the latest version of\n\t\t\t\t\tthe specified image and tag for the container to use. However, subsequent\n\t\t\t\t\tupdates to a repository image aren't propagated to already running tasks.

                \n
              • \n
              • \n

                Images in Amazon ECR repositories can be specified by either using the full\n\t\t\t\t\t\tregistry/repository:tag or\n\t\t\t\t\t\tregistry/repository@digest. For example,\n\t\t\t\t\t\t012345678910.dkr.ecr..amazonaws.com/:latest\n\t\t\t\t\tor\n\t\t\t\t\t\t012345678910.dkr.ecr..amazonaws.com/@sha256:94afd1f2e64d908bc90dbca0035a5b567EXAMPLE.\n\t\t\t\t

                \n
              • \n
              • \n

                Images in official repositories on Docker Hub use a single name (for example,\n\t\t\t\t\t\tubuntu or mongo).

                \n
              • \n
              • \n

                Images in other repositories on Docker Hub are qualified with an organization\n\t\t\t\t\tname (for example, amazon/amazon-ecs-agent).

                \n
              • \n
              • \n

                Images in other online repositories are qualified further by a domain name\n\t\t\t\t\t(for example, quay.io/assemblyline/ubuntu).

                \n
              • \n
              " + "smithy.api#documentation": "

              The image used to start a container. This string is passed directly to the Docker\n\t\t\tdaemon. By default, images in the Docker Hub registry are available. Other repositories\n\t\t\tare specified with either \n repository-url/image:tag\n or \n repository-url/image@digest\n . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the docker create-container command and the\n\t\t\t\tIMAGE parameter of docker\n\t\t\t\trun.

              \n
                \n
              • \n

                When a new task starts, the Amazon ECS container agent pulls the latest version of\n\t\t\t\t\tthe specified image and tag for the container to use. However, subsequent\n\t\t\t\t\tupdates to a repository image aren't propagated to already running tasks.

                \n
              • \n
              • \n

                Images in Amazon ECR repositories can be specified by either using the full\n\t\t\t\t\t\tregistry/repository:tag or\n\t\t\t\t\t\tregistry/repository@digest. For example,\n\t\t\t\t\t\t012345678910.dkr.ecr..amazonaws.com/:latest\n\t\t\t\t\tor\n\t\t\t\t\t\t012345678910.dkr.ecr..amazonaws.com/@sha256:94afd1f2e64d908bc90dbca0035a5b567EXAMPLE.\n\t\t\t\t

                \n
              • \n
              • \n

                Images in official repositories on Docker Hub use a single name (for example,\n\t\t\t\t\t\tubuntu or mongo).

                \n
              • \n
              • \n

                Images in other repositories on Docker Hub are qualified with an organization\n\t\t\t\t\tname (for example, amazon/amazon-ecs-agent).

                \n
              • \n
              • \n

                Images in other online repositories are qualified further by a domain name\n\t\t\t\t\t(for example, quay.io/assemblyline/ubuntu).

                \n
              • \n
              " } }, "repositoryCredentials": { @@ -2298,31 +2298,31 @@ "target": "com.amazonaws.ecs#Integer", "traits": { "smithy.api#default": 0, - "smithy.api#documentation": "

              The number of cpu units reserved for the container. This parameter maps\n\t\t\tto CpuShares in the Create a container section of the\n\t\t\tDocker Remote API and the --cpu-shares option to docker run.

              \n

              This field is optional for tasks using the Fargate launch type, and the\n\t\t\tonly requirement is that the total amount of CPU reserved for all containers within a\n\t\t\ttask be lower than the task-level cpu value.

              \n \n

              You can determine the number of CPU units that are available per EC2 instance type\n\t\t\t\tby multiplying the vCPUs listed for that instance type on the Amazon EC2 Instances detail page\n\t\t\t\tby 1,024.

              \n
              \n

              Linux containers share unallocated CPU units with other containers on the container\n\t\t\tinstance with the same ratio as their allocated amount. For example, if you run a\n\t\t\tsingle-container task on a single-core instance type with 512 CPU units specified for\n\t\t\tthat container, and that's the only task running on the container instance, that\n\t\t\tcontainer could use the full 1,024 CPU unit share at any given time. However, if you\n\t\t\tlaunched another copy of the same task on that container instance, each task is\n\t\t\tguaranteed a minimum of 512 CPU units when needed. Moreover, each container could float\n\t\t\tto higher CPU usage if the other container was not using it. If both tasks were 100%\n\t\t\tactive all of the time, they would be limited to 512 CPU units.

              \n

              On Linux container instances, the Docker daemon on the container instance uses the CPU\n\t\t\tvalue to calculate the relative CPU share ratios for running containers. For more\n\t\t\tinformation, see CPU share\n\t\t\t\tconstraint in the Docker documentation. The minimum valid CPU share value\n\t\t\tthat the Linux kernel allows is 2. However, the CPU parameter isn't required, and you\n\t\t\tcan use CPU values below 2 in your container definitions. For CPU values below 2\n\t\t\t(including null), the behavior varies based on your Amazon ECS container agent\n\t\t\tversion:

              \n
                \n
              • \n

                \n Agent versions less than or equal to 1.1.0:\n\t\t\t\t\tNull and zero CPU values are passed to Docker as 0, which Docker then converts\n\t\t\t\t\tto 1,024 CPU shares. CPU values of 1 are passed to Docker as 1, which the Linux\n\t\t\t\t\tkernel converts to two CPU shares.

                \n
              • \n
              • \n

                \n Agent versions greater than or equal to 1.2.0:\n\t\t\t\t\tNull, zero, and CPU values of 1 are passed to Docker as 2.

                \n
              • \n
              \n

              On Windows container instances, the CPU limit is enforced as an absolute limit, or a\n\t\t\tquota. Windows containers only have access to the specified amount of CPU that's\n\t\t\tdescribed in the task definition. A null or zero CPU value is passed to Docker as\n\t\t\t\t0, which Windows interprets as 1% of one CPU.

              " + "smithy.api#documentation": "

              The number of cpu units reserved for the container. This parameter maps\n\t\t\tto CpuShares in the docker create-container commandand the --cpu-shares option to docker run.

              \n

              This field is optional for tasks using the Fargate launch type, and the\n\t\t\tonly requirement is that the total amount of CPU reserved for all containers within a\n\t\t\ttask be lower than the task-level cpu value.

              \n \n

              You can determine the number of CPU units that are available per EC2 instance type\n\t\t\t\tby multiplying the vCPUs listed for that instance type on the Amazon EC2 Instances detail page\n\t\t\t\tby 1,024.

              \n
              \n

              Linux containers share unallocated CPU units with other containers on the container\n\t\t\tinstance with the same ratio as their allocated amount. For example, if you run a\n\t\t\tsingle-container task on a single-core instance type with 512 CPU units specified for\n\t\t\tthat container, and that's the only task running on the container instance, that\n\t\t\tcontainer could use the full 1,024 CPU unit share at any given time. However, if you\n\t\t\tlaunched another copy of the same task on that container instance, each task is\n\t\t\tguaranteed a minimum of 512 CPU units when needed. Moreover, each container could float\n\t\t\tto higher CPU usage if the other container was not using it. If both tasks were 100%\n\t\t\tactive all of the time, they would be limited to 512 CPU units.

              \n

              On Linux container instances, the Docker daemon on the container instance uses the CPU\n\t\t\tvalue to calculate the relative CPU share ratios for running containers. The minimum valid CPU share value\n\t\t\tthat the Linux kernel allows is 2, and the\n\t\t\tmaximum valid CPU share value that the Linux kernel allows is 262144. However, the CPU parameter isn't required, and you\n\t\t\tcan use CPU values below 2 or above 262144 in your container definitions. For CPU values below 2\n\t\t\t(including null) or above 262144, the behavior varies based on your Amazon ECS container agent\n\t\t\tversion:

              \n
                \n
              • \n

                \n Agent versions less than or equal to 1.1.0:\n\t\t\t\t\tNull and zero CPU values are passed to Docker as 0, which Docker then converts\n\t\t\t\t\tto 1,024 CPU shares. CPU values of 1 are passed to Docker as 1, which the Linux\n\t\t\t\t\tkernel converts to two CPU shares.

                \n
              • \n
              • \n

                \n Agent versions greater than or equal to 1.2.0:\n\t\t\t\t\tNull, zero, and CPU values of 1 are passed to Docker as 2.

                \n
              • \n
              • \n

                \n Agent versions greater than or equal to\n\t\t\t\t\t\t1.84.0: CPU values greater than 256 vCPU are passed to Docker as\n\t\t\t\t\t256, which is equivalent to 262144 CPU shares.

                \n
              • \n
              \n

              On Windows container instances, the CPU limit is enforced as an absolute limit, or a\n\t\t\tquota. Windows containers only have access to the specified amount of CPU that's\n\t\t\tdescribed in the task definition. A null or zero CPU value is passed to Docker as\n\t\t\t\t0, which Windows interprets as 1% of one CPU.

              " } }, "memory": { "target": "com.amazonaws.ecs#BoxedInteger", "traits": { - "smithy.api#documentation": "

              The amount (in MiB) of memory to present to the container. If your container attempts\n\t\t\tto exceed the memory specified here, the container is killed. The total amount of memory\n\t\t\treserved for all containers within a task must be lower than the task\n\t\t\t\tmemory value, if one is specified. This parameter maps to\n\t\t\t\tMemory in the Create a container section of the\n\t\t\tDocker Remote API and the --memory option to docker run.

              \n

              If using the Fargate launch type, this parameter is optional.

              \n

              If using the EC2 launch type, you must specify either a task-level\n\t\t\tmemory value or a container-level memory value. If you specify both a container-level\n\t\t\t\tmemory and memoryReservation value, memory\n\t\t\tmust be greater than memoryReservation. If you specify\n\t\t\t\tmemoryReservation, then that value is subtracted from the available\n\t\t\tmemory resources for the container instance where the container is placed. Otherwise,\n\t\t\tthe value of memory is used.

              \n

              The Docker 20.10.0 or later daemon reserves a minimum of 6 MiB of memory for a\n\t\t\tcontainer. So, don't specify less than 6 MiB of memory for your containers.

              \n

              The Docker 19.03.13-ce or earlier daemon reserves a minimum of 4 MiB of memory for a\n\t\t\tcontainer. So, don't specify less than 4 MiB of memory for your containers.

              " + "smithy.api#documentation": "

              The amount (in MiB) of memory to present to the container. If your container attempts\n\t\t\tto exceed the memory specified here, the container is killed. The total amount of memory\n\t\t\treserved for all containers within a task must be lower than the task\n\t\t\t\tmemory value, if one is specified. This parameter maps to\n\t\t\tMemory in thethe docker create-container command and the --memory option to docker run.

              \n

              If using the Fargate launch type, this parameter is optional.

              \n

              If using the EC2 launch type, you must specify either a task-level\n\t\t\tmemory value or a container-level memory value. If you specify both a container-level\n\t\t\t\tmemory and memoryReservation value, memory\n\t\t\tmust be greater than memoryReservation. If you specify\n\t\t\t\tmemoryReservation, then that value is subtracted from the available\n\t\t\tmemory resources for the container instance where the container is placed. Otherwise,\n\t\t\tthe value of memory is used.

              \n

              The Docker 20.10.0 or later daemon reserves a minimum of 6 MiB of memory for a\n\t\t\tcontainer. So, don't specify less than 6 MiB of memory for your containers.

              \n

              The Docker 19.03.13-ce or earlier daemon reserves a minimum of 4 MiB of memory for a\n\t\t\tcontainer. So, don't specify less than 4 MiB of memory for your containers.

              " } }, "memoryReservation": { "target": "com.amazonaws.ecs#BoxedInteger", "traits": { - "smithy.api#documentation": "

              The soft limit (in MiB) of memory to reserve for the container. When system memory is\n\t\t\tunder heavy contention, Docker attempts to keep the container memory to this soft limit.\n\t\t\tHowever, your container can consume more memory when it needs to, up to either the hard\n\t\t\tlimit specified with the memory parameter (if applicable), or all of the\n\t\t\tavailable memory on the container instance, whichever comes first. This parameter maps\n\t\t\tto MemoryReservation in the Create a container section of\n\t\t\tthe Docker Remote API and the --memory-reservation option to docker run.

              \n

              If a task-level memory value is not specified, you must specify a non-zero integer for\n\t\t\tone or both of memory or memoryReservation in a container\n\t\t\tdefinition. If you specify both, memory must be greater than\n\t\t\t\tmemoryReservation. If you specify memoryReservation, then\n\t\t\tthat value is subtracted from the available memory resources for the container instance\n\t\t\twhere the container is placed. Otherwise, the value of memory is\n\t\t\tused.

              \n

              For example, if your container normally uses 128 MiB of memory, but occasionally\n\t\t\tbursts to 256 MiB of memory for short periods of time, you can set a\n\t\t\t\tmemoryReservation of 128 MiB, and a memory hard limit of\n\t\t\t300 MiB. This configuration would allow the container to only reserve 128 MiB of memory\n\t\t\tfrom the remaining resources on the container instance, but also allow the container to\n\t\t\tconsume more memory resources when needed.

              \n

              The Docker 20.10.0 or later daemon reserves a minimum of 6 MiB of memory for a\n\t\t\tcontainer. So, don't specify less than 6 MiB of memory for your containers.

              \n

              The Docker 19.03.13-ce or earlier daemon reserves a minimum of 4 MiB of memory for a\n\t\t\tcontainer. So, don't specify less than 4 MiB of memory for your containers.

              " + "smithy.api#documentation": "

              The soft limit (in MiB) of memory to reserve for the container. When system memory is\n\t\t\tunder heavy contention, Docker attempts to keep the container memory to this soft limit.\n\t\t\tHowever, your container can consume more memory when it needs to, up to either the hard\n\t\t\tlimit specified with the memory parameter (if applicable), or all of the\n\t\t\tavailable memory on the container instance, whichever comes first. This parameter maps\n\t\t\tto MemoryReservation in the the docker create-container command and the --memory-reservation option to docker run.

              \n

              If a task-level memory value is not specified, you must specify a non-zero integer for\n\t\t\tone or both of memory or memoryReservation in a container\n\t\t\tdefinition. If you specify both, memory must be greater than\n\t\t\t\tmemoryReservation. If you specify memoryReservation, then\n\t\t\tthat value is subtracted from the available memory resources for the container instance\n\t\t\twhere the container is placed. Otherwise, the value of memory is\n\t\t\tused.

              \n

              For example, if your container normally uses 128 MiB of memory, but occasionally\n\t\t\tbursts to 256 MiB of memory for short periods of time, you can set a\n\t\t\t\tmemoryReservation of 128 MiB, and a memory hard limit of\n\t\t\t300 MiB. This configuration would allow the container to only reserve 128 MiB of memory\n\t\t\tfrom the remaining resources on the container instance, but also allow the container to\n\t\t\tconsume more memory resources when needed.

              \n

              The Docker 20.10.0 or later daemon reserves a minimum of 6 MiB of memory for a\n\t\t\tcontainer. So, don't specify less than 6 MiB of memory for your containers.

              \n

              The Docker 19.03.13-ce or earlier daemon reserves a minimum of 4 MiB of memory for a\n\t\t\tcontainer. So, don't specify less than 4 MiB of memory for your containers.

              " } }, "links": { "target": "com.amazonaws.ecs#StringList", "traits": { - "smithy.api#documentation": "

              The links parameter allows containers to communicate with each other\n\t\t\twithout the need for port mappings. This parameter is only supported if the network mode\n\t\t\tof a task definition is bridge. The name:internalName\n\t\t\tconstruct is analogous to name:alias in Docker links.\n\t\t\tUp to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed. For more information about linking Docker containers, go to\n\t\t\t\tLegacy container links\n\t\t\tin the Docker documentation. This parameter maps to Links in the\n\t\t\tCreate a container section of the Docker Remote API and the\n\t\t\t\t--link option to docker\n\t\t\trun.

              \n \n

              This parameter is not supported for Windows containers.

              \n
              \n \n

              Containers that are collocated on a single container instance may be able to\n\t\t\t\tcommunicate with each other without requiring links or host port mappings. Network\n\t\t\t\tisolation is achieved on the container instance using security groups and VPC\n\t\t\t\tsettings.

              \n
              " + "smithy.api#documentation": "

              The links parameter allows containers to communicate with each other\n\t\t\twithout the need for port mappings. This parameter is only supported if the network mode\n\t\t\tof a task definition is bridge. The name:internalName\n\t\t\tconstruct is analogous to name:alias in Docker links.\n\t\t\tUp to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed.. This parameter maps to Links in the docker create-container command and the\n\t\t\t\t--link option to docker\n\t\t\trun.

              \n \n

              This parameter is not supported for Windows containers.

              \n
              \n \n

              Containers that are collocated on a single container instance may be able to\n\t\t\t\tcommunicate with each other without requiring links or host port mappings. Network\n\t\t\t\tisolation is achieved on the container instance using security groups and VPC\n\t\t\t\tsettings.

              \n
              " } }, "portMappings": { "target": "com.amazonaws.ecs#PortMappingList", "traits": { - "smithy.api#documentation": "

              The list of port mappings for the container. Port mappings allow containers to access\n\t\t\tports on the host container instance to send or receive traffic.

              \n

              For task definitions that use the awsvpc network mode, only specify the\n\t\t\t\tcontainerPort. The hostPort can be left blank or it must\n\t\t\tbe the same value as the containerPort.

              \n

              Port mappings on Windows use the NetNAT gateway address rather than\n\t\t\t\tlocalhost. There's no loopback for port mappings on Windows, so you\n\t\t\tcan't access a container's mapped port from the host itself.

              \n

              This parameter maps to PortBindings in the\n\t\t\tCreate a container section of the Docker Remote API and the\n\t\t\t\t--publish option to docker\n\t\t\t\trun. If the network mode of a task definition is set to none,\n\t\t\tthen you can't specify port mappings. If the network mode of a task definition is set to\n\t\t\t\thost, then host ports must either be undefined or they must match the\n\t\t\tcontainer port in the port mapping.

              \n \n

              After a task reaches the RUNNING status, manual and automatic host\n\t\t\t\tand container port assignments are visible in the Network\n\t\t\t\t\tBindings section of a container description for a selected task in\n\t\t\t\tthe Amazon ECS console. The assignments are also visible in the\n\t\t\t\t\tnetworkBindings section DescribeTasks\n\t\t\t\tresponses.

              \n
              " + "smithy.api#documentation": "

              The list of port mappings for the container. Port mappings allow containers to access\n\t\t\tports on the host container instance to send or receive traffic.

              \n

              For task definitions that use the awsvpc network mode, only specify the\n\t\t\t\tcontainerPort. The hostPort can be left blank or it must\n\t\t\tbe the same value as the containerPort.

              \n

              Port mappings on Windows use the NetNAT gateway address rather than\n\t\t\t\tlocalhost. There's no loopback for port mappings on Windows, so you\n\t\t\tcan't access a container's mapped port from the host itself.

              \n

              This parameter maps to PortBindings in the\n\t\t\tthe docker create-container command and the\n\t\t\t\t--publish option to docker\n\t\t\t\trun. If the network mode of a task definition is set to none,\n\t\t\tthen you can't specify port mappings. If the network mode of a task definition is set to\n\t\t\t\thost, then host ports must either be undefined or they must match the\n\t\t\tcontainer port in the port mapping.

              \n \n

              After a task reaches the RUNNING status, manual and automatic host\n\t\t\t\tand container port assignments are visible in the Network\n\t\t\t\t\tBindings section of a container description for a selected task in\n\t\t\t\tthe Amazon ECS console. The assignments are also visible in the\n\t\t\t\t\tnetworkBindings section DescribeTasks\n\t\t\t\tresponses.

              \n
              " } }, "essential": { @@ -2331,40 +2331,46 @@ "smithy.api#documentation": "

              If the essential parameter of a container is marked as true,\n\t\t\tand that container fails or stops for any reason, all other containers that are part of\n\t\t\tthe task are stopped. If the essential parameter of a container is marked\n\t\t\tas false, its failure doesn't affect the rest of the containers in a task.\n\t\t\tIf this parameter is omitted, a container is assumed to be essential.

              \n

              All tasks must have at least one essential container. If you have an application\n\t\t\tthat's composed of multiple containers, group containers that are used for a common\n\t\t\tpurpose into components, and separate the different components into multiple task\n\t\t\tdefinitions. For more information, see Application\n\t\t\t\tArchitecture in the Amazon Elastic Container Service Developer Guide.

              " } }, + "restartPolicy": { + "target": "com.amazonaws.ecs#ContainerRestartPolicy", + "traits": { + "smithy.api#documentation": "

              The restart policy for a container. When you set up a restart policy, Amazon ECS can restart the container without needing to replace the\n\t\t\ttask. For more information, see Restart individual containers in Amazon ECS tasks with container restart policies in the Amazon Elastic Container Service Developer Guide.

              " + } + }, "entryPoint": { "target": "com.amazonaws.ecs#StringList", "traits": { - "smithy.api#documentation": "\n

              Early versions of the Amazon ECS container agent don't properly handle\n\t\t\t\t\tentryPoint parameters. If you have problems using\n\t\t\t\t\tentryPoint, update your container agent or enter your commands and\n\t\t\t\targuments as command array items instead.

              \n
              \n

              The entry point that's passed to the container. This parameter maps to\n\t\t\t\tEntrypoint in the Create a container section of the\n\t\t\tDocker Remote API and the --entrypoint option to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#entrypoint.

              " + "smithy.api#documentation": "\n

              Early versions of the Amazon ECS container agent don't properly handle\n\t\t\t\t\tentryPoint parameters. If you have problems using\n\t\t\t\t\tentryPoint, update your container agent or enter your commands and\n\t\t\t\targuments as command array items instead.

              \n
              \n

              The entry point that's passed to the container. This parameter maps to\n\t\t\tEntrypoint in tthe docker create-container command and the --entrypoint option to docker run.

              " } }, "command": { "target": "com.amazonaws.ecs#StringList", "traits": { - "smithy.api#documentation": "

              The command that's passed to the container. This parameter maps to Cmd in\n\t\t\tthe Create a container section of the Docker Remote API and the\n\t\t\t\tCOMMAND parameter to docker\n\t\t\t\trun. For more information, see https://docs.docker.com/engine/reference/builder/#cmd. If there are multiple arguments, each\n\t\t\targument is a separated string in the array.

              " + "smithy.api#documentation": "

              The command that's passed to the container. This parameter maps to Cmd in\n\t\t\tthe docker create-container command and the\n\t\t\t\tCOMMAND parameter to docker\n\t\t\t\trun. If there are multiple arguments, each\n\t\t\targument is a separated string in the array.

              " } }, "environment": { "target": "com.amazonaws.ecs#EnvironmentVariables", "traits": { - "smithy.api#documentation": "

              The environment variables to pass to a container. This parameter maps to\n\t\t\t\tEnv in the Create a container section of the\n\t\t\tDocker Remote API and the --env option to docker run.

              \n \n

              We don't recommend that you use plaintext environment variables for sensitive\n\t\t\t\tinformation, such as credential data.

              \n
              " + "smithy.api#documentation": "

              The environment variables to pass to a container. This parameter maps to\n\t\t\tEnv in the docker create-container command and the --env option to docker run.

              \n \n

              We don't recommend that you use plaintext environment variables for sensitive\n\t\t\t\tinformation, such as credential data.

              \n
              " } }, "environmentFiles": { "target": "com.amazonaws.ecs#EnvironmentFiles", "traits": { - "smithy.api#documentation": "

              A list of files containing the environment variables to pass to a container. This\n\t\t\tparameter maps to the --env-file option to docker run.

              \n

              You can specify up to ten environment files. The file must have a .env\n\t\t\tfile extension. Each line in an environment file contains an environment variable in\n\t\t\t\tVARIABLE=VALUE format. Lines beginning with # are treated\n\t\t\tas comments and are ignored. For more information about the environment variable file\n\t\t\tsyntax, see Declare default\n\t\t\t\tenvironment variables in file.

              \n

              If there are environment variables specified using the environment\n\t\t\tparameter in a container definition, they take precedence over the variables contained\n\t\t\twithin an environment file. If multiple environment files are specified that contain the\n\t\t\tsame variable, they're processed from the top down. We recommend that you use unique\n\t\t\tvariable names. For more information, see Specifying Environment\n\t\t\t\tVariables in the Amazon Elastic Container Service Developer Guide.

              " + "smithy.api#documentation": "

              A list of files containing the environment variables to pass to a container. This\n\t\t\tparameter maps to the --env-file option to docker run.

              \n

              You can specify up to ten environment files. The file must have a .env\n\t\t\tfile extension. Each line in an environment file contains an environment variable in\n\t\t\t\tVARIABLE=VALUE format. Lines beginning with # are treated\n\t\t\tas comments and are ignored.

              \n

              If there are environment variables specified using the environment\n\t\t\tparameter in a container definition, they take precedence over the variables contained\n\t\t\twithin an environment file. If multiple environment files are specified that contain the\n\t\t\tsame variable, they're processed from the top down. We recommend that you use unique\n\t\t\tvariable names. For more information, see Specifying Environment\n\t\t\t\tVariables in the Amazon Elastic Container Service Developer Guide.

              " } }, "mountPoints": { "target": "com.amazonaws.ecs#MountPointList", "traits": { - "smithy.api#documentation": "

              The mount points for data volumes in your container.

              \n

              This parameter maps to Volumes in the Create a container\n\t\t\tsection of the Docker Remote API and the --volume option to docker run.

              \n

              Windows containers can mount whole directories on the same drive as\n\t\t\t\t$env:ProgramData. Windows containers can't mount directories on a\n\t\t\tdifferent drive, and mount point can't be across drives.

              " + "smithy.api#documentation": "

              The mount points for data volumes in your container.

              \n

              This parameter maps to Volumes in the the docker create-container command and the --volume option to docker run.

              \n

              Windows containers can mount whole directories on the same drive as\n\t\t\t\t$env:ProgramData. Windows containers can't mount directories on a\n\t\t\tdifferent drive, and mount point can't be across drives.

              " } }, "volumesFrom": { "target": "com.amazonaws.ecs#VolumeFromList", "traits": { - "smithy.api#documentation": "

              Data volumes to mount from another container. This parameter maps to\n\t\t\t\tVolumesFrom in the Create a container section of the\n\t\t\tDocker Remote API and the --volumes-from option to docker run.

              " + "smithy.api#documentation": "

              Data volumes to mount from another container. This parameter maps to\n\t\t\tVolumesFrom in tthe docker create-container command and the --volumes-from option to docker run.

              " } }, "linuxParameters": { @@ -2388,7 +2394,7 @@ "startTimeout": { "target": "com.amazonaws.ecs#BoxedInteger", "traits": { - "smithy.api#documentation": "

              Time duration (in seconds) to wait before giving up on resolving dependencies for a\n\t\t\tcontainer. For example, you specify two containers in a task definition with containerA\n\t\t\thaving a dependency on containerB reaching a COMPLETE,\n\t\t\tSUCCESS, or HEALTHY status. If a startTimeout\n\t\t\tvalue is specified for containerB and it doesn't reach the desired status within that\n\t\t\ttime then containerA gives up and not start. This results in the task transitioning to a\n\t\t\t\tSTOPPED state.

              \n \n

              When the ECS_CONTAINER_START_TIMEOUT container agent configuration\n\t\t\t\tvariable is used, it's enforced independently from this start timeout value.

              \n
              \n

              For tasks using the Fargate launch type, the task or service requires\n\t\t\tthe following platforms:

              \n
                \n
              • \n

                Linux platform version 1.3.0 or later.

                \n
              • \n
              • \n

                Windows platform version 1.0.0 or later.

                \n
              • \n
              \n

              For tasks using the EC2 launch type, your container instances require at\n\t\t\tleast version 1.26.0 of the container agent to use a container start\n\t\t\ttimeout value. However, we recommend using the latest container agent version. For\n\t\t\tinformation about checking your agent version and updating to the latest version, see\n\t\t\t\tUpdating the Amazon ECS\n\t\t\t\tContainer Agent in the Amazon Elastic Container Service Developer Guide. If you're using an Amazon ECS-optimized Linux AMI,\n\t\t\tyour instance needs at least version 1.26.0-1 of the ecs-init\n\t\t\tpackage. If your container instances are launched from version 20190301 or\n\t\t\tlater, then they contain the required versions of the container agent and\n\t\t\t\tecs-init. For more information, see Amazon ECS-optimized Linux AMI\n\t\t\tin the Amazon Elastic Container Service Developer Guide.

              \n

              The valid values are 2-120 seconds.

              " + "smithy.api#documentation": "

              Time duration (in seconds) to wait before giving up on resolving dependencies for a\n\t\t\tcontainer. For example, you specify two containers in a task definition with containerA\n\t\t\thaving a dependency on containerB reaching a COMPLETE,\n\t\t\tSUCCESS, or HEALTHY status. If a startTimeout\n\t\t\tvalue is specified for containerB and it doesn't reach the desired status within that\n\t\t\ttime then containerA gives up and not start. This results in the task transitioning to a\n\t\t\t\tSTOPPED state.

              \n \n

              When the ECS_CONTAINER_START_TIMEOUT container agent configuration\n\t\t\t\tvariable is used, it's enforced independently from this start timeout value.

              \n
              \n

              For tasks using the Fargate launch type, the task or service requires\n\t\t\tthe following platforms:

              \n
                \n
              • \n

                Linux platform version 1.3.0 or later.

                \n
              • \n
              • \n

                Windows platform version 1.0.0 or later.

                \n
              • \n
              \n

              For tasks using the EC2 launch type, your container instances require at\n\t\t\tleast version 1.26.0 of the container agent to use a container start\n\t\t\ttimeout value. However, we recommend using the latest container agent version. For\n\t\t\tinformation about checking your agent version and updating to the latest version, see\n\t\t\t\tUpdating the Amazon ECS\n\t\t\t\tContainer Agent in the Amazon Elastic Container Service Developer Guide. If you're using an Amazon ECS-optimized Linux AMI,\n\t\t\tyour instance needs at least version 1.26.0-1 of the ecs-init\n\t\t\tpackage. If your container instances are launched from version 20190301 or\n\t\t\tlater, then they contain the required versions of the container agent and\n\t\t\t\tecs-init. For more information, see Amazon ECS-optimized Linux AMI\n\t\t\tin the Amazon Elastic Container Service Developer Guide.

              \n

              The valid values for Fargate are 2-120 seconds.

              " } }, "stopTimeout": { @@ -2400,103 +2406,103 @@ "hostname": { "target": "com.amazonaws.ecs#String", "traits": { - "smithy.api#documentation": "

              The hostname to use for your container. This parameter maps to Hostname\n\t\t\tin the Create a container section of the Docker Remote API and the\n\t\t\t\t--hostname option to docker\n\t\t\t\trun.

              \n \n

              The hostname parameter is not supported if you're using the\n\t\t\t\t\tawsvpc network mode.

              \n
              " + "smithy.api#documentation": "

              The hostname to use for your container. This parameter maps to Hostname\n\t\t\tin thethe docker create-container command and the\n\t\t\t\t--hostname option to docker\n\t\t\t\trun.

              \n \n

              The hostname parameter is not supported if you're using the\n\t\t\t\t\tawsvpc network mode.

              \n
              " } }, "user": { "target": "com.amazonaws.ecs#String", "traits": { - "smithy.api#documentation": "

              The user to use inside the container. This parameter maps to User in the\n\t\t\tCreate a container section of the Docker Remote API and the\n\t\t\t\t--user option to docker\n\t\t\trun.

              \n \n

              When running tasks using the host network mode, don't run containers\n\t\t\t\tusing the root user (UID 0). We recommend using a non-root user for better\n\t\t\t\tsecurity.

              \n
              \n

              You can specify the user using the following formats. If specifying a UID\n\t\t\tor GID, you must specify it as a positive integer.

              \n
                \n
              • \n

                \n user\n

                \n
              • \n
              • \n

                \n user:group\n

                \n
              • \n
              • \n

                \n uid\n

                \n
              • \n
              • \n

                \n uid:gid\n

                \n
              • \n
              • \n

                \n user:gid\n

                \n
              • \n
              • \n

                \n uid:group\n

                \n
              • \n
              \n \n

              This parameter is not supported for Windows containers.

              \n
              " + "smithy.api#documentation": "

              The user to use inside the container. This parameter maps to User in the docker create-container command and the\n\t\t\t\t--user option to docker\n\t\t\trun.

              \n \n

              When running tasks using the host network mode, don't run containers\n\t\t\t\tusing the root user (UID 0). We recommend using a non-root user for better\n\t\t\t\tsecurity.

              \n
              \n

              You can specify the user using the following formats. If specifying a UID\n\t\t\tor GID, you must specify it as a positive integer.

              \n
                \n
              • \n

                \n user\n

                \n
              • \n
              • \n

                \n user:group\n

                \n
              • \n
              • \n

                \n uid\n

                \n
              • \n
              • \n

                \n uid:gid\n

                \n
              • \n
              • \n

                \n user:gid\n

                \n
              • \n
              • \n

                \n uid:group\n

                \n
              • \n
              \n \n

              This parameter is not supported for Windows containers.

              \n
              " } }, "workingDirectory": { "target": "com.amazonaws.ecs#String", "traits": { - "smithy.api#documentation": "

              The working directory to run commands inside the container in. This parameter maps to\n\t\t\t\tWorkingDir in the Create a container section of the\n\t\t\tDocker Remote API and the --workdir option to docker run.

              " + "smithy.api#documentation": "

              The working directory to run commands inside the container in. This parameter maps to\n\t\t\tWorkingDir in the docker create-container command and the --workdir option to docker run.

              " } }, "disableNetworking": { "target": "com.amazonaws.ecs#BoxedBoolean", "traits": { - "smithy.api#documentation": "

              When this parameter is true, networking is off within the container. This parameter\n\t\t\tmaps to NetworkDisabled in the Create a container section\n\t\t\tof the Docker Remote API.

              \n \n

              This parameter is not supported for Windows containers.

              \n
              " + "smithy.api#documentation": "

              When this parameter is true, networking is off within the container. This parameter\n\t\t\tmaps to NetworkDisabled in the docker create-container command.

              \n \n

              This parameter is not supported for Windows containers.

              \n
              " } }, "privileged": { "target": "com.amazonaws.ecs#BoxedBoolean", "traits": { - "smithy.api#documentation": "

              When this parameter is true, the container is given elevated privileges on the host\n\t\t\tcontainer instance (similar to the root user). This parameter maps to\n\t\t\t\tPrivileged in the Create a container section of the\n\t\t\tDocker Remote API and the --privileged option to docker run.

              \n \n

              This parameter is not supported for Windows containers or tasks run on Fargate.

              \n
              " + "smithy.api#documentation": "

              When this parameter is true, the container is given elevated privileges on the host\n\t\t\tcontainer instance (similar to the root user). This parameter maps to\n\t\t\tPrivileged in the the docker create-container command and the --privileged option to docker run

              \n \n

              This parameter is not supported for Windows containers or tasks run on Fargate.

              \n
              " } }, "readonlyRootFilesystem": { "target": "com.amazonaws.ecs#BoxedBoolean", "traits": { - "smithy.api#documentation": "

              When this parameter is true, the container is given read-only access to its root file\n\t\t\tsystem. This parameter maps to ReadonlyRootfs in the\n\t\t\tCreate a container section of the Docker Remote API and the\n\t\t\t\t--read-only option to docker\n\t\t\t\trun.

              \n \n

              This parameter is not supported for Windows containers.

              \n
              " + "smithy.api#documentation": "

              When this parameter is true, the container is given read-only access to its root file\n\t\t\tsystem. This parameter maps to ReadonlyRootfs in the docker create-container command and the\n\t\t\t\t--read-only option to docker\n\t\t\t\trun.

              \n \n

              This parameter is not supported for Windows containers.

              \n
              " } }, "dnsServers": { "target": "com.amazonaws.ecs#StringList", "traits": { - "smithy.api#documentation": "

              A list of DNS servers that are presented to the container. This parameter maps to\n\t\t\t\tDns in the Create a container section of the\n\t\t\tDocker Remote API and the --dns option to docker run.

              \n \n

              This parameter is not supported for Windows containers.

              \n
              " + "smithy.api#documentation": "

              A list of DNS servers that are presented to the container. This parameter maps to\n\t\t\tDns in the the docker create-container command and the --dns option to docker run.

              \n \n

              This parameter is not supported for Windows containers.

              \n
              " } }, "dnsSearchDomains": { "target": "com.amazonaws.ecs#StringList", "traits": { - "smithy.api#documentation": "

              A list of DNS search domains that are presented to the container. This parameter maps\n\t\t\tto DnsSearch in the Create a container section of the\n\t\t\tDocker Remote API and the --dns-search option to docker run.

              \n \n

              This parameter is not supported for Windows containers.

              \n
              " + "smithy.api#documentation": "

              A list of DNS search domains that are presented to the container. This parameter maps\n\t\t\tto DnsSearch in the docker create-container command and the --dns-search option to docker run.

              \n \n

              This parameter is not supported for Windows containers.

              \n
              " } }, "extraHosts": { "target": "com.amazonaws.ecs#HostEntryList", "traits": { - "smithy.api#documentation": "

              A list of hostnames and IP address mappings to append to the /etc/hosts\n\t\t\tfile on the container. This parameter maps to ExtraHosts in the\n\t\t\tCreate a container section of the Docker Remote API and the\n\t\t\t\t--add-host option to docker\n\t\t\t\trun.

              \n \n

              This parameter isn't supported for Windows containers or tasks that use the\n\t\t\t\t\tawsvpc network mode.

              \n
              " + "smithy.api#documentation": "

              A list of hostnames and IP address mappings to append to the /etc/hosts\n\t\t\tfile on the container. This parameter maps to ExtraHosts in the docker create-container command and the\n\t\t\t\t--add-host option to docker\n\t\t\t\trun.

              \n \n

              This parameter isn't supported for Windows containers or tasks that use the\n\t\t\t\t\tawsvpc network mode.

              \n
              " } }, "dockerSecurityOptions": { "target": "com.amazonaws.ecs#StringList", "traits": { - "smithy.api#documentation": "

              A list of strings to provide custom configuration for multiple security systems. For\n\t\t\tmore information about valid values, see Docker\n\t\t\t\tRun Security Configuration. This field isn't valid for containers in tasks\n\t\t\tusing the Fargate launch type.

              \n

              For Linux tasks on EC2, this parameter can be used to reference custom\n\t\t\tlabels for SELinux and AppArmor multi-level security systems.

              \n

              For any tasks on EC2, this parameter can be used to reference a\n\t\t\tcredential spec file that configures a container for Active Directory authentication.\n\t\t\tFor more information, see Using gMSAs for Windows\n\t\t\t\tContainers and Using gMSAs for Linux\n\t\t\t\tContainers in the Amazon Elastic Container Service Developer Guide.

              \n

              This parameter maps to SecurityOpt in the\n\t\t\tCreate a container section of the Docker Remote API and the\n\t\t\t\t--security-opt option to docker\n\t\t\t\trun.

              \n \n

              The Amazon ECS container agent running on a container instance must register with the\n\t\t\t\t\tECS_SELINUX_CAPABLE=true or ECS_APPARMOR_CAPABLE=true\n\t\t\t\tenvironment variables before containers placed on that instance can use these\n\t\t\t\tsecurity options. For more information, see Amazon ECS Container\n\t\t\t\t\tAgent Configuration in the Amazon Elastic Container Service Developer Guide.

              \n
              \n

              For more information about valid values, see Docker\n\t\t\t\tRun Security Configuration.

              \n

              Valid values: \"no-new-privileges\" | \"apparmor:PROFILE\" | \"label:value\" |\n\t\t\t\"credentialspec:CredentialSpecFilePath\"

              " + "smithy.api#documentation": "

              A list of strings to provide custom configuration for multiple security systems. This field isn't valid for containers in tasks\n\t\t\tusing the Fargate launch type.

              \n

              For Linux tasks on EC2, this parameter can be used to reference custom\n\t\t\tlabels for SELinux and AppArmor multi-level security systems.

              \n

              For any tasks on EC2, this parameter can be used to reference a\n\t\t\tcredential spec file that configures a container for Active Directory authentication.\n\t\t\tFor more information, see Using gMSAs for Windows\n\t\t\t\tContainers and Using gMSAs for Linux\n\t\t\t\tContainers in the Amazon Elastic Container Service Developer Guide.

              \n

              This parameter maps to SecurityOpt in the docker create-container command and the\n\t\t\t\t--security-opt option to docker\n\t\t\t\trun.

              \n \n

              The Amazon ECS container agent running on a container instance must register with the\n\t\t\t\t\tECS_SELINUX_CAPABLE=true or ECS_APPARMOR_CAPABLE=true\n\t\t\t\tenvironment variables before containers placed on that instance can use these\n\t\t\t\tsecurity options. For more information, see Amazon ECS Container\n\t\t\t\t\tAgent Configuration in the Amazon Elastic Container Service Developer Guide.

              \n
              \n

              Valid values: \"no-new-privileges\" | \"apparmor:PROFILE\" | \"label:value\" |\n\t\t\t\"credentialspec:CredentialSpecFilePath\"

              " } }, "interactive": { "target": "com.amazonaws.ecs#BoxedBoolean", "traits": { - "smithy.api#documentation": "

              When this parameter is true, you can deploy containerized applications\n\t\t\tthat require stdin or a tty to be allocated. This parameter\n\t\t\tmaps to OpenStdin in the Create a container section of the\n\t\t\tDocker Remote API and the --interactive option to docker run.

              " + "smithy.api#documentation": "

              When this parameter is true, you can deploy containerized applications\n\t\t\tthat require stdin or a tty to be allocated. This parameter\n\t\t\tmaps to OpenStdin in the docker create-container command and the --interactive option to docker run.

              " } }, "pseudoTerminal": { "target": "com.amazonaws.ecs#BoxedBoolean", "traits": { - "smithy.api#documentation": "

              When this parameter is true, a TTY is allocated. This parameter maps to\n\t\t\t\tTty in the Create a container section of the\n\t\t\tDocker Remote API and the --tty option to docker run.

              " + "smithy.api#documentation": "

              When this parameter is true, a TTY is allocated. This parameter maps to\n\t\t\tTty in tthe docker create-container command and the --tty option to docker run.

              " } }, "dockerLabels": { "target": "com.amazonaws.ecs#DockerLabelsMap", "traits": { - "smithy.api#documentation": "

              A key/value map of labels to add to the container. This parameter maps to\n\t\t\t\tLabels in the Create a container section of the\n\t\t\tDocker Remote API and the --label option to docker run. This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'\n

              " + "smithy.api#documentation": "

              A key/value map of labels to add to the container. This parameter maps to\n\t\t\tLabels in the docker create-container command and the --label option to docker run. This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'\n

              " } }, "ulimits": { "target": "com.amazonaws.ecs#UlimitList", "traits": { - "smithy.api#documentation": "

              A list of ulimits to set in the container. If a ulimit value\n\t\t\tis specified in a task definition, it overrides the default values set by Docker. This\n\t\t\tparameter maps to Ulimits in the Create a container section\n\t\t\tof the Docker Remote API and the --ulimit option to docker run. Valid naming values are displayed\n\t\t\tin the Ulimit data type.

              \n

              Amazon ECS tasks hosted on Fargate use the default\n\t\t\t\t\t\t\tresource limit values set by the operating system with the exception of\n\t\t\t\t\t\t\tthe nofile resource limit parameter which Fargate\n\t\t\t\t\t\t\toverrides. The nofile resource limit sets a restriction on\n\t\t\t\t\t\t\tthe number of open files that a container can use. The default\n\t\t\t\t\t\t\t\tnofile soft limit is 1024 and the default hard limit\n\t\t\t\t\t\t\tis 65535.

              \n

              This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'\n

              \n \n

              This parameter is not supported for Windows containers.

              \n
              " + "smithy.api#documentation": "

              A list of ulimits to set in the container. If a ulimit value\n\t\t\tis specified in a task definition, it overrides the default values set by Docker. This\n\t\t\tparameter maps to Ulimits in tthe docker create-container command and the --ulimit option to docker run. Valid naming values are displayed\n\t\t\tin the Ulimit data type.

              \n

              Amazon ECS tasks hosted on Fargate use the default\n\t\t\t\t\t\t\tresource limit values set by the operating system with the exception of\n\t\t\t\t\t\t\tthe nofile resource limit parameter which Fargate\n\t\t\t\t\t\t\toverrides. The nofile resource limit sets a restriction on\n\t\t\t\t\t\t\tthe number of open files that a container can use. The default\n\t\t\t\t\t\t\t\tnofile soft limit is 65535 and the default hard limit\n\t\t\t\t\t\t\tis 65535.

              \n

              This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'\n

              \n \n

              This parameter is not supported for Windows containers.

              \n
              " } }, "logConfiguration": { "target": "com.amazonaws.ecs#LogConfiguration", "traits": { - "smithy.api#documentation": "

              The log configuration specification for the container.

              \n

              This parameter maps to LogConfig in the\n\t\t\tCreate a container section of the Docker Remote API and the\n\t\t\t\t--log-driver option to docker\n\t\t\t\trun. By default, containers use the same logging driver that the Docker\n\t\t\tdaemon uses. However the container can use a different logging driver than the Docker\n\t\t\tdaemon by specifying a log driver with this parameter in the container definition. To\n\t\t\tuse a different logging driver for a container, the log system must be configured\n\t\t\tproperly on the container instance (or on a different log server for remote logging\n\t\t\toptions). For more information about the options for different supported log drivers,\n\t\t\tsee Configure\n\t\t\t\tlogging drivers in the Docker documentation.

              \n \n

              Amazon ECS currently supports a subset of the logging drivers available to the Docker\n\t\t\t\tdaemon (shown in the LogConfiguration data type). Additional log\n\t\t\t\tdrivers may be available in future releases of the Amazon ECS container agent.

              \n
              \n

              This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'\n

              \n \n

              The Amazon ECS container agent running on a container instance must register the\n\t\t\t\tlogging drivers available on that instance with the\n\t\t\t\t\tECS_AVAILABLE_LOGGING_DRIVERS environment variable before\n\t\t\t\tcontainers placed on that instance can use these log configuration options. For more\n\t\t\t\tinformation, see Amazon ECS Container\n\t\t\t\t\tAgent Configuration in the Amazon Elastic Container Service Developer Guide.

              \n
              " + "smithy.api#documentation": "

              The log configuration specification for the container.

              \n

              This parameter maps to LogConfig in the docker create-container command and the\n\t\t\t\t--log-driver option to docker\n\t\t\t\trun. By default, containers use the same logging driver that the Docker\n\t\t\tdaemon uses. However the container can use a different logging driver than the Docker\n\t\t\tdaemon by specifying a log driver with this parameter in the container definition. To\n\t\t\tuse a different logging driver for a container, the log system must be configured\n\t\t\tproperly on the container instance (or on a different log server for remote logging\n\t\t\toptions).

              \n \n

              Amazon ECS currently supports a subset of the logging drivers available to the Docker\n\t\t\t\tdaemon (shown in the LogConfiguration data type). Additional log\n\t\t\t\tdrivers may be available in future releases of the Amazon ECS container agent.

              \n
              \n

              This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'\n

              \n \n

              The Amazon ECS container agent running on a container instance must register the\n\t\t\t\tlogging drivers available on that instance with the\n\t\t\t\t\tECS_AVAILABLE_LOGGING_DRIVERS environment variable before\n\t\t\t\tcontainers placed on that instance can use these log configuration options. For more\n\t\t\t\tinformation, see Amazon ECS Container\n\t\t\t\t\tAgent Configuration in the Amazon Elastic Container Service Developer Guide.

              \n
              " } }, "healthCheck": { "target": "com.amazonaws.ecs#HealthCheck", "traits": { - "smithy.api#documentation": "

              The container health check command and associated configuration parameters for the\n\t\t\tcontainer. This parameter maps to HealthCheck in the\n\t\t\tCreate a container section of the Docker Remote API and the\n\t\t\t\tHEALTHCHECK parameter of docker\n\t\t\t\trun.

              " + "smithy.api#documentation": "

              The container health check command and associated configuration parameters for the\n\t\t\tcontainer. This parameter maps to HealthCheck in the docker create-container command and the\n\t\t\t\tHEALTHCHECK parameter of docker\n\t\t\t\trun.

              " } }, "systemControls": { "target": "com.amazonaws.ecs#SystemControls", "traits": { - "smithy.api#documentation": "

              A list of namespaced kernel parameters to set in the container. This parameter maps to\n\t\t\t\tSysctls in the Create a container section of the\n\t\t\tDocker Remote API and the --sysctl option to docker run. For example, you can configure\n\t\t\t\tnet.ipv4.tcp_keepalive_time setting to maintain longer lived\n\t\t\tconnections.

              " + "smithy.api#documentation": "

              A list of namespaced kernel parameters to set in the container. This parameter maps to\n\t\t\tSysctls in tthe docker create-container command and the --sysctl option to docker run. For example, you can configure\n\t\t\t\tnet.ipv4.tcp_keepalive_time setting to maintain longer lived\n\t\t\tconnections.

              " } }, "resourceRequirements": { @@ -2822,6 +2828,33 @@ "target": "com.amazonaws.ecs#ContainerOverride" } }, + "com.amazonaws.ecs#ContainerRestartPolicy": { + "type": "structure", + "members": { + "enabled": { + "target": "com.amazonaws.ecs#BoxedBoolean", + "traits": { + "smithy.api#documentation": "

              Specifies whether a restart policy is enabled for the\n\t\t\tcontainer.

              ", + "smithy.api#required": {} + } + }, + "ignoredExitCodes": { + "target": "com.amazonaws.ecs#IntegerList", + "traits": { + "smithy.api#documentation": "

              A list of exit codes that Amazon ECS will ignore and not attempt a restart on. You can specify a maximum of 50 container exit\n\t\t\tcodes. By default, Amazon ECS does not ignore\n\t\t\tany exit codes.

              " + } + }, + "restartAttemptPeriod": { + "target": "com.amazonaws.ecs#BoxedInteger", + "traits": { + "smithy.api#documentation": "

              A period of time (in seconds) that the container must run for before a restart can be attempted. A container can be\n\t\t\trestarted only once every restartAttemptPeriod seconds. If a container isn't able to run for this time period and exits early, it will not be restarted. You can set a minimum\n\t\t\trestartAttemptPeriod of 60 seconds and a maximum restartAttemptPeriod of 1800 seconds.\n\t\t\tBy default, a container must run for 300 seconds before it can be restarted.

              " + } + } + }, + "traits": { + "smithy.api#documentation": "

              You can enable a restart policy for each container defined in your\n\t\t\ttask definition, to overcome transient failures faster and maintain task availability. When you\n\t\t\tenable a restart policy for a container, Amazon ECS can restart the container if it exits, without needing to replace\n\t\t\tthe task. For more information, see Restart individual containers\n\t\t\t\tin Amazon ECS tasks with container restart policies in the Amazon Elastic Container Service Developer Guide.

              " + } + }, "com.amazonaws.ecs#ContainerStateChange": { "type": "structure", "members": { @@ -3103,7 +3136,7 @@ } ], "traits": { - "smithy.api#documentation": "

              Runs and maintains your desired number of tasks from a specified task definition. If\n\t\t\tthe number of tasks running in a service drops below the desiredCount,\n\t\t\tAmazon ECS runs another copy of the task in the specified cluster. To update an existing\n\t\t\tservice, see the UpdateService action.

              \n \n

              On March 21, 2024, a change was made to resolve the task definition revision before authorization. When a task definition revision is not specified, authorization will occur using the latest revision of a task definition.

              \n
              \n

              In addition to maintaining the desired count of tasks in your service, you can\n\t\t\toptionally run your service behind one or more load balancers. The load balancers\n\t\t\tdistribute traffic across the tasks that are associated with the service. For more\n\t\t\tinformation, see Service load balancing in the Amazon Elastic Container Service Developer Guide.

              \n

              You can attach Amazon EBS volumes to Amazon ECS tasks by configuring the volume when creating or\n\t\t\tupdating a service. volumeConfigurations is only supported for REPLICA\n\t\t\tservice and not DAEMON service. For more infomation, see Amazon EBS volumes in the Amazon Elastic Container Service Developer Guide.

              \n

              Tasks for services that don't use a load balancer are considered healthy if they're in\n\t\t\tthe RUNNING state. Tasks for services that use a load balancer are\n\t\t\tconsidered healthy if they're in the RUNNING state and are reported as\n\t\t\thealthy by the load balancer.

              \n

              There are two service scheduler strategies available:

              \n
                \n
              • \n

                \n REPLICA - The replica scheduling strategy places and\n\t\t\t\t\tmaintains your desired number of tasks across your cluster. By default, the\n\t\t\t\t\tservice scheduler spreads tasks across Availability Zones. You can use task\n\t\t\t\t\tplacement strategies and constraints to customize task placement decisions. For\n\t\t\t\t\tmore information, see Service scheduler concepts in the Amazon Elastic Container Service Developer Guide.

                \n
              • \n
              • \n

                \n DAEMON - The daemon scheduling strategy deploys exactly one\n\t\t\t\t\ttask on each active container instance that meets all of the task placement\n\t\t\t\t\tconstraints that you specify in your cluster. The service scheduler also\n\t\t\t\t\tevaluates the task placement constraints for running tasks. It also stops tasks\n\t\t\t\t\tthat don't meet the placement constraints. When using this strategy, you don't\n\t\t\t\t\tneed to specify a desired number of tasks, a task placement strategy, or use\n\t\t\t\t\tService Auto Scaling policies. For more information, see Service scheduler concepts in the Amazon Elastic Container Service Developer Guide.

                \n
              • \n
              \n

              You can optionally specify a deployment configuration for your service. The deployment\n\t\t\tis initiated by changing properties. For example, the deployment might be initiated by\n\t\t\tthe task definition or by your desired count of a service. This is done with an UpdateService operation. The default value for a replica service for\n\t\t\t\tminimumHealthyPercent is 100%. The default value for a daemon service\n\t\t\tfor minimumHealthyPercent is 0%.

              \n

              If a service uses the ECS deployment controller, the minimum healthy\n\t\t\tpercent represents a lower limit on the number of tasks in a service that must remain in\n\t\t\tthe RUNNING state during a deployment. Specifically, it represents it as a\n\t\t\tpercentage of your desired number of tasks (rounded up to the nearest integer). This\n\t\t\thappens when any of your container instances are in the DRAINING state if\n\t\t\tthe service contains tasks using the EC2 launch type. Using this\n\t\t\tparameter, you can deploy without using additional cluster capacity. For example, if you\n\t\t\tset your service to have desired number of four tasks and a minimum healthy percent of\n\t\t\t50%, the scheduler might stop two existing tasks to free up cluster capacity before\n\t\t\tstarting two new tasks. If they're in the RUNNING state, tasks for services\n\t\t\tthat don't use a load balancer are considered healthy . If they're in the\n\t\t\t\tRUNNING state and reported as healthy by the load balancer, tasks for\n\t\t\tservices that do use a load balancer are considered healthy . The\n\t\t\tdefault value for minimum healthy percent is 100%.

              \n

              If a service uses the ECS deployment controller, the maximum percent parameter represents an upper limit on the\n\t\t\tnumber of tasks in a service that are allowed in the RUNNING or\n\t\t\t\tPENDING state during a deployment. Specifically, it represents it as a\n\t\t\tpercentage of the desired number of tasks (rounded down to the nearest integer). This\n\t\t\thappens when any of your container instances are in the DRAINING state if\n\t\t\tthe service contains tasks using the EC2 launch type. Using this\n\t\t\tparameter, you can define the deployment batch size. For example, if your service has a\n\t\t\tdesired number of four tasks and a maximum percent value of 200%, the scheduler may\n\t\t\tstart four new tasks before stopping the four older tasks (provided that the cluster\n\t\t\tresources required to do this are available). The default value for maximum percent is\n\t\t\t200%.

              \n

              If a service uses either the CODE_DEPLOY or EXTERNAL\n\t\t\tdeployment controller types and tasks that use the EC2 launch type, the\n\t\t\t\tminimum healthy percent and maximum percent values are used only to define the lower and upper limit\n\t\t\ton the number of the tasks in the service that remain in the RUNNING state.\n\t\t\tThis is while the container instances are in the DRAINING state. If the\n\t\t\ttasks in the service use the Fargate launch type, the minimum healthy\n\t\t\tpercent and maximum percent values aren't used. This is the case even if they're\n\t\t\tcurrently visible when describing your service.

              \n

              When creating a service that uses the EXTERNAL deployment controller, you\n\t\t\tcan specify only parameters that aren't controlled at the task set level. The only\n\t\t\trequired parameter is the service name. You control your services using the CreateTaskSet operation. For more information, see Amazon ECS deployment types in the Amazon Elastic Container Service Developer Guide.

              \n

              When the service scheduler launches new tasks, it determines task placement. For information\n\t\t\tabout task placement and task placement strategies, see Amazon ECS\n\t\t\t\ttask placement in the Amazon Elastic Container Service Developer Guide\n

              \n

              Starting April 15, 2023, Amazon Web Services will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.

              ", + "smithy.api#documentation": "

              Runs and maintains your desired number of tasks from a specified task definition. If\n\t\t\tthe number of tasks running in a service drops below the desiredCount,\n\t\t\tAmazon ECS runs another copy of the task in the specified cluster. To update an existing\n\t\t\tservice, see the UpdateService action.

              \n \n

              On March 21, 2024, a change was made to resolve the task definition revision before authorization. When a task definition revision is not specified, authorization will occur using the latest revision of a task definition.

              \n
              \n

              In addition to maintaining the desired count of tasks in your service, you can\n\t\t\toptionally run your service behind one or more load balancers. The load balancers\n\t\t\tdistribute traffic across the tasks that are associated with the service. For more\n\t\t\tinformation, see Service load balancing in the Amazon Elastic Container Service Developer Guide.

              \n

              You can attach Amazon EBS volumes to Amazon ECS tasks by configuring the volume when creating or\n\t\t\tupdating a service. volumeConfigurations is only supported for REPLICA\n\t\t\tservice and not DAEMON service. For more infomation, see Amazon EBS volumes in the Amazon Elastic Container Service Developer Guide.

              \n

              Tasks for services that don't use a load balancer are considered healthy if they're in\n\t\t\tthe RUNNING state. Tasks for services that use a load balancer are\n\t\t\tconsidered healthy if they're in the RUNNING state and are reported as\n\t\t\thealthy by the load balancer.

              \n

              There are two service scheduler strategies available:

              \n
                \n
              • \n

                \n REPLICA - The replica scheduling strategy places and\n\t\t\t\t\tmaintains your desired number of tasks across your cluster. By default, the\n\t\t\t\t\tservice scheduler spreads tasks across Availability Zones. You can use task\n\t\t\t\t\tplacement strategies and constraints to customize task placement decisions. For\n\t\t\t\t\tmore information, see Service scheduler concepts in the Amazon Elastic Container Service Developer Guide.

                \n
              • \n
              • \n

                \n DAEMON - The daemon scheduling strategy deploys exactly one\n\t\t\t\t\ttask on each active container instance that meets all of the task placement\n\t\t\t\t\tconstraints that you specify in your cluster. The service scheduler also\n\t\t\t\t\tevaluates the task placement constraints for running tasks. It also stops tasks\n\t\t\t\t\tthat don't meet the placement constraints. When using this strategy, you don't\n\t\t\t\t\tneed to specify a desired number of tasks, a task placement strategy, or use\n\t\t\t\t\tService Auto Scaling policies. For more information, see Service scheduler concepts in the Amazon Elastic Container Service Developer Guide.

                \n
              • \n
              \n

              You can optionally specify a deployment configuration for your service. The deployment\n\t\t\tis initiated by changing properties. For example, the deployment might be initiated by\n\t\t\tthe task definition or by your desired count of a service. This is done with an UpdateService operation. The default value for a replica service for\n\t\t\t\tminimumHealthyPercent is 100%. The default value for a daemon service\n\t\t\tfor minimumHealthyPercent is 0%.

              \n

              If a service uses the ECS deployment controller, the minimum healthy\n\t\t\tpercent represents a lower limit on the number of tasks in a service that must remain in\n\t\t\tthe RUNNING state during a deployment. Specifically, it represents it as a\n\t\t\tpercentage of your desired number of tasks (rounded up to the nearest integer). This\n\t\t\thappens when any of your container instances are in the DRAINING state if\n\t\t\tthe service contains tasks using the EC2 launch type. Using this\n\t\t\tparameter, you can deploy without using additional cluster capacity. For example, if you\n\t\t\tset your service to have desired number of four tasks and a minimum healthy percent of\n\t\t\t50%, the scheduler might stop two existing tasks to free up cluster capacity before\n\t\t\tstarting two new tasks. If they're in the RUNNING state, tasks for services\n\t\t\tthat don't use a load balancer are considered healthy . If they're in the\n\t\t\t\tRUNNING state and reported as healthy by the load balancer, tasks for\n\t\t\tservices that do use a load balancer are considered healthy . The\n\t\t\tdefault value for minimum healthy percent is 100%.

              \n

              If a service uses the ECS deployment controller, the maximum percent parameter represents an upper limit on the\n\t\t\tnumber of tasks in a service that are allowed in the RUNNING or\n\t\t\t\tPENDING state during a deployment. Specifically, it represents it as a\n\t\t\tpercentage of the desired number of tasks (rounded down to the nearest integer). This\n\t\t\thappens when any of your container instances are in the DRAINING state if\n\t\t\tthe service contains tasks using the EC2 launch type. Using this\n\t\t\tparameter, you can define the deployment batch size. For example, if your service has a\n\t\t\tdesired number of four tasks and a maximum percent value of 200%, the scheduler may\n\t\t\tstart four new tasks before stopping the four older tasks (provided that the cluster\n\t\t\tresources required to do this are available). The default value for maximum percent is\n\t\t\t200%.

              \n

              If a service uses either the CODE_DEPLOY or EXTERNAL\n\t\t\tdeployment controller types and tasks that use the EC2 launch type, the\n\t\t\t\tminimum healthy percent and maximum percent values are used only to define the lower and upper limit\n\t\t\ton the number of the tasks in the service that remain in the RUNNING state.\n\t\t\tThis is while the container instances are in the DRAINING state. If the\n\t\t\ttasks in the service use the Fargate launch type, the minimum healthy\n\t\t\tpercent and maximum percent values aren't used. This is the case even if they're\n\t\t\tcurrently visible when describing your service.

              \n

              When creating a service that uses the EXTERNAL deployment controller, you\n\t\t\tcan specify only parameters that aren't controlled at the task set level. The only\n\t\t\trequired parameter is the service name. You control your services using the CreateTaskSet operation. For more information, see Amazon ECS deployment types in the Amazon Elastic Container Service Developer Guide.

              \n

              When the service scheduler launches new tasks, it determines task placement. For\n\t\t\tinformation about task placement and task placement strategies, see Amazon ECS\n\t\t\t\ttask placement in the Amazon Elastic Container Service Developer Guide\n

              \n

              Starting April 15, 2023, Amazon Web Services will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.

              ", "smithy.api#examples": [ { "title": "To create a new service", @@ -3262,7 +3295,7 @@ "launchType": { "target": "com.amazonaws.ecs#LaunchType", "traits": { - "smithy.api#documentation": "

              The infrastructure that you run your service on. For more information, see Amazon ECS\n\t\t\t\tlaunch types in the Amazon Elastic Container Service Developer Guide.

              \n

              The FARGATE launch type runs your tasks on Fargate On-Demand\n\t\t\tinfrastructure.

              \n \n

              Fargate Spot infrastructure is available for use but a capacity provider\n\t\t\t\tstrategy must be used. For more information, see Fargate capacity providers in the\n\t\t\t\t\tAmazon ECS Developer Guide.

              \n
              \n

              The EC2 launch type runs your tasks on Amazon EC2 instances registered to your\n\t\t\tcluster.

              \n

              The EXTERNAL launch type runs your tasks on your on-premises server or\n\t\t\tvirtual machine (VM) capacity registered to your cluster.

              \n

              A service can use either a launch type or a capacity provider strategy. If a\n\t\t\t\tlaunchType is specified, the capacityProviderStrategy\n\t\t\tparameter must be omitted.

              " + "smithy.api#documentation": "

              The infrastructure that you run your service on. For more information, see Amazon ECS\n\t\t\t\tlaunch types in the Amazon Elastic Container Service Developer Guide.

              \n

              The FARGATE launch type runs your tasks on Fargate On-Demand\n\t\t\tinfrastructure.

              \n \n

              Fargate Spot infrastructure is available for use but a capacity provider\n\t\t\t\tstrategy must be used. For more information, see Fargate capacity providers in the Amazon ECS\n\t\t\t\t\tDeveloper Guide.

              \n
              \n

              The EC2 launch type runs your tasks on Amazon EC2 instances registered to your\n\t\t\tcluster.

              \n

              The EXTERNAL launch type runs your tasks on your on-premises server or\n\t\t\tvirtual machine (VM) capacity registered to your cluster.

              \n

              A service can use either a launch type or a capacity provider strategy. If a\n\t\t\t\tlaunchType is specified, the capacityProviderStrategy\n\t\t\tparameter must be omitted.

              " } }, "capacityProviderStrategy": { @@ -3274,7 +3307,7 @@ "platformVersion": { "target": "com.amazonaws.ecs#String", "traits": { - "smithy.api#documentation": "

              The platform version that your tasks in the service are running on. A platform version\n\t\t\tis specified only for tasks using the Fargate launch type. If one isn't\n\t\t\tspecified, the LATEST platform version is used. For more information, see\n\t\t\t\tFargate platform versions in the Amazon Elastic Container Service Developer Guide.

              " + "smithy.api#documentation": "

              The platform version that your tasks in the service are running on. A platform version\n\t\t\tis specified only for tasks using the Fargate launch type. If one isn't\n\t\t\tspecified, the LATEST platform version is used. For more information, see\n\t\t\t\tFargate platform\n\t\t\t\tversions in the Amazon Elastic Container Service Developer Guide.

              " } }, "role": { @@ -3310,7 +3343,7 @@ "healthCheckGracePeriodSeconds": { "target": "com.amazonaws.ecs#BoxedInteger", "traits": { - "smithy.api#documentation": "

              The period of time, in seconds, that the Amazon ECS service scheduler ignores unhealthy\n\t\t\tElastic Load Balancing target health checks after a task has first started. This is only used when your\n\t\t\tservice is configured to use a load balancer. If your service has a load balancer\n\t\t\tdefined and you don't specify a health check grace period value, the default value of\n\t\t\t\t0 is used.

              \n

              If you do not use an Elastic Load Balancing, we recommend that you use the startPeriod in\n\t\t\tthe task definition health check parameters. For more information, see Health\n\t\t\t\tcheck.

              \n

              If your service's tasks take a while to start and respond to Elastic Load Balancing health checks, you can\n\t\t\tspecify a health check grace period of up to 2,147,483,647 seconds (about 69 years).\n\t\t\tDuring that time, the Amazon ECS service scheduler ignores health check status. This grace\n\t\t\tperiod can prevent the service scheduler from marking tasks as unhealthy and stopping\n\t\t\tthem before they have time to come up.

              " + "smithy.api#documentation": "

              The period of time, in seconds, that the Amazon ECS service scheduler ignores unhealthy\n\t\t\tElastic Load Balancing target health checks after a task has first started. This is only used when your\n\t\t\tservice is configured to use a load balancer. If your service has a load balancer\n\t\t\tdefined and you don't specify a health check grace period value, the default value of\n\t\t\t\t0 is used.

              \n

              If you do not use an Elastic Load Balancing, we recommend that you use the startPeriod in\n\t\t\tthe task definition health check parameters. For more information, see Health\n\t\t\t\tcheck.

              \n

              If your service's tasks take a while to start and respond to Elastic Load Balancing health checks, you\n\t\t\tcan specify a health check grace period of up to 2,147,483,647 seconds (about 69 years).\n\t\t\tDuring that time, the Amazon ECS service scheduler ignores health check status. This grace\n\t\t\tperiod can prevent the service scheduler from marking tasks as unhealthy and stopping\n\t\t\tthem before they have time to come up.

              " } }, "schedulingStrategy": { @@ -3341,7 +3374,7 @@ "propagateTags": { "target": "com.amazonaws.ecs#PropagateTags", "traits": { - "smithy.api#documentation": "

              Specifies whether to propagate the tags from the task definition to the task. If no\n\t\t\tvalue is specified, the tags aren't propagated. Tags can only be propagated to the task\n\t\t\tduring task creation. To add tags to a task after task creation, use the TagResource API action.

              \n

              You must set this to a value other than NONE when you use Cost Explorer. For more information, see Amazon ECS usage reports in the Amazon Elastic Container Service Developer Guide.

              \n

              The default is NONE.

              " + "smithy.api#documentation": "

              Specifies whether to propagate the tags from the task definition to the task. If no\n\t\t\tvalue is specified, the tags aren't propagated. Tags can only be propagated to the task\n\t\t\tduring task creation. To add tags to a task after task creation, use the TagResource API action.

              \n

              You must set this to a value other than NONE when you use Cost Explorer.\n\t\t\tFor more information, see Amazon ECS usage reports\n\t\t\tin the Amazon Elastic Container Service Developer Guide.

              \n

              The default is NONE.

              " } }, "enableExecuteCommand": { @@ -3426,7 +3459,7 @@ } ], "traits": { - "smithy.api#documentation": "

              Create a task set in the specified cluster and service. This is used when a service\n\t\t\tuses the EXTERNAL deployment controller type. For more information, see\n\t\t\t\tAmazon ECS deployment\n\t\t\t\ttypes in the Amazon Elastic Container Service Developer Guide.

              \n \n

              On March 21, 2024, a change was made to resolve the task definition revision before authorization. When a task definition revision is not specified, authorization will occur using the latest revision of a task definition.

              \n
              \n

              For information about the maximum number of task sets and otther quotas, see Amazon ECS\n\t\t\tservice quotas in the Amazon Elastic Container Service Developer Guide.

              " + "smithy.api#documentation": "

              Create a task set in the specified cluster and service. This is used when a service\n\t\t\tuses the EXTERNAL deployment controller type. For more information, see\n\t\t\t\tAmazon ECS deployment\n\t\t\t\ttypes in the Amazon Elastic Container Service Developer Guide.

              \n \n

              On March 21, 2024, a change was made to resolve the task definition revision before authorization. When a task definition revision is not specified, authorization will occur using the latest revision of a task definition.

              \n
              \n

              For information about the maximum number of task sets and other quotas, see Amazon ECS\n\t\t\tservice quotas in the Amazon Elastic Container Service Developer Guide.

              " } }, "com.amazonaws.ecs#CreateTaskSetRequest": { @@ -4254,7 +4287,7 @@ "minimumHealthyPercent": { "target": "com.amazonaws.ecs#BoxedInteger", "traits": { - "smithy.api#documentation": "

              If a service is using the rolling update (ECS) deployment type, the\n\t\t\t\tminimumHealthyPercent represents a lower limit on the number of your\n\t\t\tservice's tasks that must remain in the RUNNING state during a deployment,\n\t\t\tas a percentage of the desiredCount (rounded up to the nearest integer).\n\t\t\tThis parameter enables you to deploy without using additional cluster capacity. For\n\t\t\texample, if your service has a desiredCount of four tasks and a\n\t\t\t\tminimumHealthyPercent of 50%, the service scheduler may stop two\n\t\t\texisting tasks to free up cluster capacity before starting two new tasks.

              \n

              For services that do not use a load balancer, the following\n\t\t\tshould be noted:

              \n
                \n
              • \n

                A service is considered healthy if all essential containers within the tasks\n\t\t\t\t\tin the service pass their health checks.

                \n
              • \n
              • \n

                If a task has no essential containers with a health check defined, the service\n\t\t\t\t\tscheduler will wait for 40 seconds after a task reaches a RUNNING\n\t\t\t\t\tstate before the task is counted towards the minimum healthy percent\n\t\t\t\t\ttotal.

                \n
              • \n
              • \n

                If a task has one or more essential containers with a health check defined,\n\t\t\t\t\tthe service scheduler will wait for the task to reach a healthy status before\n\t\t\t\t\tcounting it towards the minimum healthy percent total. A task is considered\n\t\t\t\t\thealthy when all essential containers within the task have passed their health\n\t\t\t\t\tchecks. The amount of time the service scheduler can wait for is determined by\n\t\t\t\t\tthe container health check settings.

                \n
              • \n
              \n

              For services that do use a load balancer, the following should be\n\t\t\tnoted:

              \n
                \n
              • \n

                If a task has no essential containers with a health check defined, the service\n\t\t\t\t\tscheduler will wait for the load balancer target group health check to return a\n\t\t\t\t\thealthy status before counting the task towards the minimum healthy percent\n\t\t\t\t\ttotal.

                \n
              • \n
              • \n

                If a task has an essential container with a health check defined, the service\n\t\t\t\t\tscheduler will wait for both the task to reach a healthy status and the load\n\t\t\t\t\tbalancer target group health check to return a healthy status before counting\n\t\t\t\t\tthe task towards the minimum healthy percent total.

                \n
              • \n
              \n

              The default value for a replica service for\n\t\t\tminimumHealthyPercent is 100%. The default\n\t\t\tminimumHealthyPercent value for a service using\n\t\t\tthe DAEMON service schedule is 0% for the CLI,\n\t\t\tthe Amazon Web Services SDKs, and the APIs and 50% for the Amazon Web Services Management Console.

              \n

              The minimum number of healthy tasks during a deployment is the\n\t\t\tdesiredCount multiplied by the\n\t\t\tminimumHealthyPercent/100, rounded up to the\n\t\t\tnearest integer value.

              \n

              If a service is using either the blue/green (CODE_DEPLOY) or\n\t\t\t\tEXTERNAL deployment types and is running tasks that use the\n\t\t\tEC2 launch type, the minimum healthy\n\t\t\t\tpercent value is set to the default value and is used to define the lower\n\t\t\tlimit on the number of the tasks in the service that remain in the RUNNING\n\t\t\tstate while the container instances are in the DRAINING state. If a service\n\t\t\tis using either the blue/green (CODE_DEPLOY) or EXTERNAL\n\t\t\tdeployment types and is running tasks that use the Fargate launch type,\n\t\t\tthe minimum healthy percent value is not used, although it is returned when describing\n\t\t\tyour service.

              " + "smithy.api#documentation": "

              If a service is using the rolling update (ECS) deployment type, the\n\t\t\t\tminimumHealthyPercent represents a lower limit on the number of your\n\t\t\tservice's tasks that must remain in the RUNNING state during a deployment,\n\t\t\tas a percentage of the desiredCount (rounded up to the nearest integer).\n\t\t\tThis parameter enables you to deploy without using additional cluster capacity. For\n\t\t\texample, if your service has a desiredCount of four tasks and a\n\t\t\t\tminimumHealthyPercent of 50%, the service scheduler may stop two\n\t\t\texisting tasks to free up cluster capacity before starting two new tasks.

              \n

              For services that do not use a load balancer, the following\n\t\t\tshould be noted:

              \n
                \n
              • \n

                A service is considered healthy if all essential containers within the tasks\n\t\t\t\t\tin the service pass their health checks.

                \n
              • \n
              • \n

                If a task has no essential containers with a health check defined, the service\n\t\t\t\t\tscheduler will wait for 40 seconds after a task reaches a RUNNING\n\t\t\t\t\tstate before the task is counted towards the minimum healthy percent\n\t\t\t\t\ttotal.

                \n
              • \n
              • \n

                If a task has one or more essential containers with a health check defined,\n\t\t\t\t\tthe service scheduler will wait for the task to reach a healthy status before\n\t\t\t\t\tcounting it towards the minimum healthy percent total. A task is considered\n\t\t\t\t\thealthy when all essential containers within the task have passed their health\n\t\t\t\t\tchecks. The amount of time the service scheduler can wait for is determined by\n\t\t\t\t\tthe container health check settings.

                \n
              • \n
              \n

              For services that do use a load balancer, the following should be\n\t\t\tnoted:

              \n
                \n
              • \n

                If a task has no essential containers with a health check defined, the service\n\t\t\t\t\tscheduler will wait for the load balancer target group health check to return a\n\t\t\t\t\thealthy status before counting the task towards the minimum healthy percent\n\t\t\t\t\ttotal.

                \n
              • \n
              • \n

                If a task has an essential container with a health check defined, the service\n\t\t\t\t\tscheduler will wait for both the task to reach a healthy status and the load\n\t\t\t\t\tbalancer target group health check to return a healthy status before counting\n\t\t\t\t\tthe task towards the minimum healthy percent total.

                \n
              • \n
              \n

              The default value for a replica service for minimumHealthyPercent is\n\t\t\t100%. The default minimumHealthyPercent value for a service using the\n\t\t\t\tDAEMON service schedule is 0% for the CLI, the Amazon Web Services SDKs, and the\n\t\t\tAPIs and 50% for the Amazon Web Services Management Console.

              \n

              The minimum number of healthy tasks during a deployment is the\n\t\t\t\tdesiredCount multiplied by the minimumHealthyPercent/100,\n\t\t\trounded up to the nearest integer value.

              \n

              If a service is using either the blue/green (CODE_DEPLOY) or\n\t\t\t\tEXTERNAL deployment types and is running tasks that use the\n\t\t\tEC2 launch type, the minimum healthy\n\t\t\t\tpercent value is set to the default value and is used to define the lower\n\t\t\tlimit on the number of the tasks in the service that remain in the RUNNING\n\t\t\tstate while the container instances are in the DRAINING state. If a service\n\t\t\tis using either the blue/green (CODE_DEPLOY) or EXTERNAL\n\t\t\tdeployment types and is running tasks that use the Fargate launch type,\n\t\t\tthe minimum healthy percent value is not used, although it is returned when describing\n\t\t\tyour service.

              " } }, "alarms": { @@ -4312,7 +4345,7 @@ "kmsKeyId": { "target": "com.amazonaws.ecs#String", "traits": { - "smithy.api#documentation": "

              Specify an Key Management Service key ID to encrypt the ephemeral storage for deployment.

              " + "smithy.api#documentation": "

              Specify an Key Management Service key ID to encrypt the ephemeral storage for\n\t\t\tdeployment.

              " } } }, @@ -5537,19 +5570,19 @@ "driver": { "target": "com.amazonaws.ecs#String", "traits": { - "smithy.api#documentation": "

              The Docker volume driver to use. The driver value must match the driver name provided\n\t\t\tby Docker because it is used for task placement. If the driver was installed using the\n\t\t\tDocker plugin CLI, use docker plugin ls to retrieve the driver name from\n\t\t\tyour container instance. If the driver was installed using another method, use Docker\n\t\t\tplugin discovery to retrieve the driver name. For more information, see Docker\n\t\t\t\tplugin discovery. This parameter maps to Driver in the\n\t\t\tCreate a volume section of the Docker Remote API and the\n\t\t\t\txxdriver option to docker\n\t\t\t\tvolume create.

              " + "smithy.api#documentation": "

              The Docker volume driver to use. The driver value must match the driver name provided\n\t\t\tby Docker because it is used for task placement. If the driver was installed using the\n\t\t\tDocker plugin CLI, use docker plugin ls to retrieve the driver name from\n\t\t\tyour container instance. If the driver was installed using another method, use Docker\n\t\t\tplugin discovery to retrieve the driver name. This parameter maps to Driver in the docker create-container command and the\n\t\t\t\txxdriver option to docker\n\t\t\t\tvolume create.

              " } }, "driverOpts": { "target": "com.amazonaws.ecs#StringMap", "traits": { - "smithy.api#documentation": "

              A map of Docker driver-specific options passed through. This parameter maps to\n\t\t\t\tDriverOpts in the Create a volume section of the\n\t\t\tDocker Remote API and the xxopt option to docker\n\t\t\t\tvolume create.

              " + "smithy.api#documentation": "

              A map of Docker driver-specific options passed through. This parameter maps to\n\t\t\t\tDriverOpts in the docker create-volume command and the xxopt option to docker\n\t\t\t\tvolume create.

              " } }, "labels": { "target": "com.amazonaws.ecs#StringMap", "traits": { - "smithy.api#documentation": "

              Custom metadata to add to your Docker volume. This parameter maps to\n\t\t\t\tLabels in the Create a volume section of the\n\t\t\tDocker Remote API and the xxlabel option to docker\n\t\t\t\tvolume create.

              " + "smithy.api#documentation": "

              Custom metadata to add to your Docker volume. This parameter maps to\n\t\t\t\tLabels in the docker create-container command and the xxlabel option to docker\n\t\t\t\tvolume create.

              " } } }, @@ -5734,13 +5767,13 @@ "type": { "target": "com.amazonaws.ecs#EnvironmentFileType", "traits": { - "smithy.api#documentation": "

              The file type to use. Environment files are objects in Amazon S3. The only supported value is\n\t\t\t\ts3.

              ", + "smithy.api#documentation": "

              The file type to use. Environment files are objects in Amazon S3. The only supported value\n\t\t\tis s3.

              ", "smithy.api#required": {} } } }, "traits": { - "smithy.api#documentation": "

              A list of files containing the environment variables to pass to a container. You can\n\t\t\tspecify up to ten environment files. The file must have a .env file\n\t\t\textension. Each line in an environment file should contain an environment variable in\n\t\t\t\tVARIABLE=VALUE format. Lines beginning with # are treated\n\t\t\tas comments and are ignored.

              \n

              If there are environment variables specified using the environment\n\t\t\tparameter in a container definition, they take precedence over the variables contained\n\t\t\twithin an environment file. If multiple environment files are specified that contain the\n\t\t\tsame variable, they're processed from the top down. We recommend that you use unique\n\t\t\tvariable names. For more information, see Use a file to pass environment variables to a container in the Amazon Elastic Container Service Developer Guide.

              \n

              Environment variable files are objects in Amazon S3 and all Amazon S3 security considerations apply.

              \n

              You must use the following platforms for the Fargate launch type:

              \n
                \n
              • \n

                Linux platform version 1.4.0 or later.

                \n
              • \n
              • \n

                Windows platform version 1.0.0 or later.

                \n
              • \n
              \n

              Consider the following when using the Fargate launch type:

              \n
                \n
              • \n

                The file is handled like a native Docker env-file.

                \n
              • \n
              • \n

                There is no support for shell escape handling.

                \n
              • \n
              • \n

                The container entry point interperts the VARIABLE values.

                \n
              • \n
              " + "smithy.api#documentation": "

              A list of files containing the environment variables to pass to a container. You can\n\t\t\tspecify up to ten environment files. The file must have a .env file\n\t\t\textension. Each line in an environment file should contain an environment variable in\n\t\t\t\tVARIABLE=VALUE format. Lines beginning with # are treated\n\t\t\tas comments and are ignored.

              \n

              If there are environment variables specified using the environment\n\t\t\tparameter in a container definition, they take precedence over the variables contained\n\t\t\twithin an environment file. If multiple environment files are specified that contain the\n\t\t\tsame variable, they're processed from the top down. We recommend that you use unique\n\t\t\tvariable names. For more information, see Use a file to pass\n\t\t\t\tenvironment variables to a container in the Amazon Elastic Container Service Developer Guide.

              \n

              Environment variable files are objects in Amazon S3 and all Amazon S3 security considerations\n\t\t\tapply.

              \n

              You must use the following platforms for the Fargate launch type:

              \n
                \n
              • \n

                Linux platform version 1.4.0 or later.

                \n
              • \n
              • \n

                Windows platform version 1.0.0 or later.

                \n
              • \n
              \n

              Consider the following when using the Fargate launch type:

              \n
                \n
              • \n

                The file is handled like a native Docker env-file.

                \n
              • \n
              • \n

                There is no support for shell escape handling.

                \n
              • \n
              • \n

                The container entry point interperts the VARIABLE values.

                \n
              • \n
              " } }, "com.amazonaws.ecs#EnvironmentFileType": { @@ -5773,7 +5806,7 @@ "target": "com.amazonaws.ecs#Integer", "traits": { "smithy.api#default": 0, - "smithy.api#documentation": "

              The total amount, in GiB, of ephemeral storage to set for the task. The minimum supported\n\t\t\tvalue is 20 GiB and the maximum supported value is\n\t\t\t\t200 GiB.

              ", + "smithy.api#documentation": "

              The total amount, in GiB, of ephemeral storage to set for the task. The minimum\n\t\t\tsupported value is 20 GiB and the maximum supported value is\n\t\t\t\t200 GiB.

              ", "smithy.api#required": {} } } @@ -6228,7 +6261,7 @@ "command": { "target": "com.amazonaws.ecs#StringList", "traits": { - "smithy.api#documentation": "

              A string array representing the command that the container runs to determine if it is\n\t\t\thealthy. The string array must start with CMD to run the command arguments\n\t\t\tdirectly, or CMD-SHELL to run the command with the container's default\n\t\t\tshell.

              \n

              When you use the Amazon Web Services Management Console JSON panel, the Command Line Interface, or the APIs, enclose the list\n\t\t\tof commands in double quotes and brackets.

              \n

              \n [ \"CMD-SHELL\", \"curl -f http://localhost/ || exit 1\" ]\n

              \n

              You don't include the double quotes and brackets when you use the Amazon Web Services Management Console.

              \n

              \n CMD-SHELL, curl -f http://localhost/ || exit 1\n

              \n

              An exit code of 0 indicates success, and non-zero exit code indicates failure. For\n\t\t\tmore information, see HealthCheck in the Create a container\n\t\t\tsection of the Docker Remote API.

              ", + "smithy.api#documentation": "

              A string array representing the command that the container runs to determine if it is\n\t\t\thealthy. The string array must start with CMD to run the command arguments\n\t\t\tdirectly, or CMD-SHELL to run the command with the container's default\n\t\t\tshell.

              \n

              When you use the Amazon Web Services Management Console JSON panel, the Command Line Interface, or the APIs, enclose the list\n\t\t\tof commands in double quotes and brackets.

              \n

              \n [ \"CMD-SHELL\", \"curl -f http://localhost/ || exit 1\" ]\n

              \n

              You don't include the double quotes and brackets when you use the Amazon Web Services Management Console.

              \n

              \n CMD-SHELL, curl -f http://localhost/ || exit 1\n

              \n

              An exit code of 0 indicates success, and non-zero exit code indicates failure. For\n\t\t\tmore information, see HealthCheck in tthe docker create-container command

              ", "smithy.api#required": {} } }, @@ -6258,7 +6291,7 @@ } }, "traits": { - "smithy.api#documentation": "

              An object representing a container health check. Health check parameters that are\n\t\t\tspecified in a container definition override any Docker health checks that exist in the\n\t\t\tcontainer image (such as those specified in a parent image or from the image's\n\t\t\tDockerfile). This configuration maps to the HEALTHCHECK parameter of docker run.

              \n \n

              The Amazon ECS container agent only monitors and reports on the health checks specified\n\t\t\t\tin the task definition. Amazon ECS does not monitor Docker health checks that are\n\t\t\t\tembedded in a container image and not specified in the container definition. Health\n\t\t\t\tcheck parameters that are specified in a container definition override any Docker\n\t\t\t\thealth checks that exist in the container image.

              \n
              \n

              You can view the health status of both individual containers and a task with the\n\t\t\tDescribeTasks API operation or when viewing the task details in the console.

              \n

              The health check is designed to make sure that your containers survive agent restarts,\n\t\t\tupgrades, or temporary unavailability.

              \n

              Amazon ECS performs health checks on containers with the default that launched the\n\t\t\tcontainer instance or the task.

              \n

              The following describes the possible healthStatus values for a\n\t\t\tcontainer:

              \n
                \n
              • \n

                \n HEALTHY-The container health check has passed\n\t\t\t\t\tsuccessfully.

                \n
              • \n
              • \n

                \n UNHEALTHY-The container health check has failed.

                \n
              • \n
              • \n

                \n UNKNOWN-The container health check is being evaluated,\n\t\t\t\t\tthere's no container health check defined, or Amazon ECS doesn't have the health\n\t\t\t\t\tstatus of the container.

                \n
              • \n
              \n

              The following describes the possible healthStatus values based on the\n\t\t\tcontainer health checker status of essential containers in the task with the following\n\t\t\tpriority order (high to low):

              \n
                \n
              • \n

                \n UNHEALTHY-One or more essential containers have failed\n\t\t\t\t\ttheir health check.

                \n
              • \n
              • \n

                \n UNKNOWN-Any essential container running within the task is\n\t\t\t\t\tin an UNKNOWN state and no other essential containers have an\n\t\t\t\t\t\tUNHEALTHY state.

                \n
              • \n
              • \n

                \n HEALTHY-All essential containers within the task have\n\t\t\t\t\tpassed their health checks.

                \n
              • \n
              \n

              Consider the following task health example with 2 containers.

              \n
                \n
              • \n

                If Container1 is UNHEALTHY and Container2 is\n\t\t\t\t\tUNKNOWN, the task health is UNHEALTHY.

                \n
              • \n
              • \n

                If Container1 is UNHEALTHY and Container2 is\n\t\t\t\t\tHEALTHY, the task health is UNHEALTHY.

                \n
              • \n
              • \n

                If Container1 is HEALTHY and Container2 is UNKNOWN,\n\t\t\t\t\tthe task health is UNKNOWN.

                \n
              • \n
              • \n

                If Container1 is HEALTHY and Container2 is HEALTHY,\n\t\t\t\t\tthe task health is HEALTHY.

                \n
              • \n
              \n

              Consider the following task health example with 3 containers.

              \n
                \n
              • \n

                If Container1 is UNHEALTHY and Container2 is\n\t\t\t\t\tUNKNOWN, and Container3 is UNKNOWN, the task health is\n\t\t\t\t\t\tUNHEALTHY.

                \n
              • \n
              • \n

                If Container1 is UNHEALTHY and Container2 is\n\t\t\t\t\tUNKNOWN, and Container3 is HEALTHY, the task health is\n\t\t\t\t\t\tUNHEALTHY.

                \n
              • \n
              • \n

                If Container1 is UNHEALTHY and Container2 is\n\t\t\t\t\tHEALTHY, and Container3 is HEALTHY, the task health is\n\t\t\t\t\t\tUNHEALTHY.

                \n
              • \n
              • \n

                If Container1 is HEALTHY and Container2 is UNKNOWN,\n\t\t\t\t\tand Container3 is HEALTHY, the task health is\n\t\t\t\t\tUNKNOWN.

                \n
              • \n
              • \n

                If Container1 is HEALTHY and Container2 is UNKNOWN,\n\t\t\t\t\tand Container3 is UNKNOWN, the task health is\n\t\t\t\t\tUNKNOWN.

                \n
              • \n
              • \n

                If Container1 is HEALTHY and Container2 is HEALTHY,\n\t\t\t\t\tand Container3 is HEALTHY, the task health is\n\t\t\t\t\tHEALTHY.

                \n
              • \n
              \n

              If a task is run manually, and not as part of a service, the task will continue its\n\t\t\tlifecycle regardless of its health status. For tasks that are part of a service, if the\n\t\t\ttask reports as unhealthy then the task will be stopped and the service scheduler will\n\t\t\treplace it.

              \n

              The following are notes about container health check support:

              \n
                \n
              • \n

                If the Amazon ECS container agent becomes disconnected from the Amazon ECS service, this won't\n\t\t\t\t\tcause a container to transition to an UNHEALTHY status. This is by design,\n\t\t\t\t\tto ensure that containers remain running during agent restarts or temporary\n\t\t\t\t\tunavailability. The health check status is the \"last heard from\" response from the Amazon ECS\n\t\t\t\t\tagent, so if the container was considered HEALTHY prior to the disconnect,\n\t\t\t\t\tthat status will remain until the agent reconnects and another health check occurs.\n\t\t\t\t\tThere are no assumptions made about the status of the container health checks.

                \n
              • \n
              • \n

                Container health checks require version 1.17.0 or greater of the Amazon ECS\n\t\t\t\t\tcontainer agent. For more information, see Updating the\n\t\t\t\t\t\tAmazon ECS container agent.

                \n
              • \n
              • \n

                Container health checks are supported for Fargate tasks if\n\t\t\t\t\tyou're using platform version 1.1.0 or greater. For more\n\t\t\t\t\tinformation, see Fargate\n\t\t\t\t\t\tplatform versions.

                \n
              • \n
              • \n

                Container health checks aren't supported for tasks that are part of a service\n\t\t\t\t\tthat's configured to use a Classic Load Balancer.

                \n
              • \n
              " + "smithy.api#documentation": "

              An object representing a container health check. Health check parameters that are\n\t\t\tspecified in a container definition override any Docker health checks that exist in the\n\t\t\tcontainer image (such as those specified in a parent image or from the image's\n\t\t\tDockerfile). This configuration maps to the HEALTHCHECK parameter of docker run.

              \n \n

              The Amazon ECS container agent only monitors and reports on the health checks specified\n\t\t\t\tin the task definition. Amazon ECS does not monitor Docker health checks that are\n\t\t\t\tembedded in a container image and not specified in the container definition. Health\n\t\t\t\tcheck parameters that are specified in a container definition override any Docker\n\t\t\t\thealth checks that exist in the container image.

              \n
              \n

              You can view the health status of both individual containers and a task with the\n\t\t\tDescribeTasks API operation or when viewing the task details in the console.

              \n

              The health check is designed to make sure that your containers survive agent restarts,\n\t\t\tupgrades, or temporary unavailability.

              \n

              Amazon ECS performs health checks on containers with the default that launched the\n\t\t\tcontainer instance or the task.

              \n

              The following describes the possible healthStatus values for a\n\t\t\tcontainer:

              \n
                \n
              • \n

                \n HEALTHY-The container health check has passed\n\t\t\t\t\tsuccessfully.

                \n
              • \n
              • \n

                \n UNHEALTHY-The container health check has failed.

                \n
              • \n
              • \n

                \n UNKNOWN-The container health check is being evaluated,\n\t\t\t\t\tthere's no container health check defined, or Amazon ECS doesn't have the health\n\t\t\t\t\tstatus of the container.

                \n
              • \n
              \n

              The following describes the possible healthStatus values based on the\n\t\t\tcontainer health checker status of essential containers in the task with the following\n\t\t\tpriority order (high to low):

              \n
                \n
              • \n

                \n UNHEALTHY-One or more essential containers have failed\n\t\t\t\t\ttheir health check.

                \n
              • \n
              • \n

                \n UNKNOWN-Any essential container running within the task is\n\t\t\t\t\tin an UNKNOWN state and no other essential containers have an\n\t\t\t\t\t\tUNHEALTHY state.

                \n
              • \n
              • \n

                \n HEALTHY-All essential containers within the task have\n\t\t\t\t\tpassed their health checks.

                \n
              • \n
              \n

              Consider the following task health example with 2 containers.

              \n
                \n
              • \n

                If Container1 is UNHEALTHY and Container2 is\n\t\t\t\t\tUNKNOWN, the task health is UNHEALTHY.

                \n
              • \n
              • \n

                If Container1 is UNHEALTHY and Container2 is\n\t\t\t\t\tHEALTHY, the task health is UNHEALTHY.

                \n
              • \n
              • \n

                If Container1 is HEALTHY and Container2 is UNKNOWN,\n\t\t\t\t\tthe task health is UNKNOWN.

                \n
              • \n
              • \n

                If Container1 is HEALTHY and Container2 is HEALTHY,\n\t\t\t\t\tthe task health is HEALTHY.

                \n
              • \n
              \n

              Consider the following task health example with 3 containers.

              \n
                \n
              • \n

                If Container1 is UNHEALTHY and Container2 is\n\t\t\t\t\tUNKNOWN, and Container3 is UNKNOWN, the task health is\n\t\t\t\t\t\tUNHEALTHY.

                \n
              • \n
              • \n

                If Container1 is UNHEALTHY and Container2 is\n\t\t\t\t\tUNKNOWN, and Container3 is HEALTHY, the task health is\n\t\t\t\t\t\tUNHEALTHY.

                \n
              • \n
              • \n

                If Container1 is UNHEALTHY and Container2 is\n\t\t\t\t\tHEALTHY, and Container3 is HEALTHY, the task health is\n\t\t\t\t\t\tUNHEALTHY.

                \n
              • \n
              • \n

                If Container1 is HEALTHY and Container2 is UNKNOWN,\n\t\t\t\t\tand Container3 is HEALTHY, the task health is\n\t\t\t\t\tUNKNOWN.

                \n
              • \n
              • \n

                If Container1 is HEALTHY and Container2 is UNKNOWN,\n\t\t\t\t\tand Container3 is UNKNOWN, the task health is\n\t\t\t\t\tUNKNOWN.

                \n
              • \n
              • \n

                If Container1 is HEALTHY and Container2 is HEALTHY,\n\t\t\t\t\tand Container3 is HEALTHY, the task health is\n\t\t\t\t\tHEALTHY.

                \n
              • \n
              \n

              If a task is run manually, and not as part of a service, the task will continue its\n\t\t\tlifecycle regardless of its health status. For tasks that are part of a service, if the\n\t\t\ttask reports as unhealthy then the task will be stopped and the service scheduler will\n\t\t\treplace it.

              \n

              The following are notes about container health check support:

              \n
                \n
              • \n

                If the Amazon ECS container agent becomes disconnected from the Amazon ECS service, this\n\t\t\t\t\twon't cause a container to transition to an UNHEALTHY status. This\n\t\t\t\t\tis by design, to ensure that containers remain running during agent restarts or\n\t\t\t\t\ttemporary unavailability. The health check status is the \"last heard from\"\n\t\t\t\t\tresponse from the Amazon ECS agent, so if the container was considered\n\t\t\t\t\t\tHEALTHY prior to the disconnect, that status will remain until\n\t\t\t\t\tthe agent reconnects and another health check occurs. There are no assumptions\n\t\t\t\t\tmade about the status of the container health checks.

                \n
              • \n
              • \n

                Container health checks require version 1.17.0 or greater of the\n\t\t\t\t\tAmazon ECS container agent. For more information, see Updating the\n\t\t\t\t\t\tAmazon ECS container agent.

                \n
              • \n
              • \n

                Container health checks are supported for Fargate tasks if\n\t\t\t\t\tyou're using platform version 1.1.0 or greater. For more\n\t\t\t\t\tinformation, see Fargate\n\t\t\t\t\t\tplatform versions.

                \n
              • \n
              • \n

                Container health checks aren't supported for tasks that are part of a service\n\t\t\t\t\tthat's configured to use a Classic Load Balancer.

                \n
              • \n
              " } }, "com.amazonaws.ecs#HealthStatus": { @@ -6467,6 +6500,12 @@ "smithy.api#default": 0 } }, + "com.amazonaws.ecs#IntegerList": { + "type": "list", + "member": { + "target": "com.amazonaws.ecs#BoxedInteger" + } + }, "com.amazonaws.ecs#InvalidParameterException": { "type": "structure", "members": { @@ -6511,18 +6550,18 @@ "add": { "target": "com.amazonaws.ecs#StringList", "traits": { - "smithy.api#documentation": "

              The Linux capabilities for the container that have been added to the default\n\t\t\tconfiguration provided by Docker. This parameter maps to CapAdd in the\n\t\t\tCreate a container section of the Docker Remote API and the\n\t\t\t\t--cap-add option to docker\n\t\t\t\trun.

              \n \n

              Tasks launched on Fargate only support adding the SYS_PTRACE kernel\n\t\t\t\tcapability.

              \n
              \n

              Valid values: \"ALL\" | \"AUDIT_CONTROL\" | \"AUDIT_WRITE\" | \"BLOCK_SUSPEND\" |\n\t\t\t\t\"CHOWN\" | \"DAC_OVERRIDE\" | \"DAC_READ_SEARCH\" | \"FOWNER\" | \"FSETID\" | \"IPC_LOCK\" |\n\t\t\t\t\"IPC_OWNER\" | \"KILL\" | \"LEASE\" | \"LINUX_IMMUTABLE\" | \"MAC_ADMIN\" | \"MAC_OVERRIDE\" |\n\t\t\t\t\"MKNOD\" | \"NET_ADMIN\" | \"NET_BIND_SERVICE\" | \"NET_BROADCAST\" | \"NET_RAW\" | \"SETFCAP\"\n\t\t\t\t| \"SETGID\" | \"SETPCAP\" | \"SETUID\" | \"SYS_ADMIN\" | \"SYS_BOOT\" | \"SYS_CHROOT\" |\n\t\t\t\t\"SYS_MODULE\" | \"SYS_NICE\" | \"SYS_PACCT\" | \"SYS_PTRACE\" | \"SYS_RAWIO\" |\n\t\t\t\t\"SYS_RESOURCE\" | \"SYS_TIME\" | \"SYS_TTY_CONFIG\" | \"SYSLOG\" |\n\t\t\t\"WAKE_ALARM\"\n

              " + "smithy.api#documentation": "

              The Linux capabilities for the container that have been added to the default\n\t\t\tconfiguration provided by Docker. This parameter maps to CapAdd in the docker create-container command and the\n\t\t\t\t--cap-add option to docker\n\t\t\t\trun.

              \n \n

              Tasks launched on Fargate only support adding the SYS_PTRACE kernel\n\t\t\t\tcapability.

              \n
              \n

              Valid values: \"ALL\" | \"AUDIT_CONTROL\" | \"AUDIT_WRITE\" | \"BLOCK_SUSPEND\" |\n\t\t\t\t\"CHOWN\" | \"DAC_OVERRIDE\" | \"DAC_READ_SEARCH\" | \"FOWNER\" | \"FSETID\" | \"IPC_LOCK\" |\n\t\t\t\t\"IPC_OWNER\" | \"KILL\" | \"LEASE\" | \"LINUX_IMMUTABLE\" | \"MAC_ADMIN\" | \"MAC_OVERRIDE\" |\n\t\t\t\t\"MKNOD\" | \"NET_ADMIN\" | \"NET_BIND_SERVICE\" | \"NET_BROADCAST\" | \"NET_RAW\" | \"SETFCAP\"\n\t\t\t\t| \"SETGID\" | \"SETPCAP\" | \"SETUID\" | \"SYS_ADMIN\" | \"SYS_BOOT\" | \"SYS_CHROOT\" |\n\t\t\t\t\"SYS_MODULE\" | \"SYS_NICE\" | \"SYS_PACCT\" | \"SYS_PTRACE\" | \"SYS_RAWIO\" |\n\t\t\t\t\"SYS_RESOURCE\" | \"SYS_TIME\" | \"SYS_TTY_CONFIG\" | \"SYSLOG\" |\n\t\t\t\"WAKE_ALARM\"\n

              " } }, "drop": { "target": "com.amazonaws.ecs#StringList", "traits": { - "smithy.api#documentation": "

              The Linux capabilities for the container that have been removed from the default\n\t\t\tconfiguration provided by Docker. This parameter maps to CapDrop in the\n\t\t\tCreate a container section of the Docker Remote API and the\n\t\t\t\t--cap-drop option to docker\n\t\t\t\trun.

              \n

              Valid values: \"ALL\" | \"AUDIT_CONTROL\" | \"AUDIT_WRITE\" | \"BLOCK_SUSPEND\" |\n\t\t\t\t\"CHOWN\" | \"DAC_OVERRIDE\" | \"DAC_READ_SEARCH\" | \"FOWNER\" | \"FSETID\" | \"IPC_LOCK\" |\n\t\t\t\t\"IPC_OWNER\" | \"KILL\" | \"LEASE\" | \"LINUX_IMMUTABLE\" | \"MAC_ADMIN\" | \"MAC_OVERRIDE\" |\n\t\t\t\t\"MKNOD\" | \"NET_ADMIN\" | \"NET_BIND_SERVICE\" | \"NET_BROADCAST\" | \"NET_RAW\" | \"SETFCAP\"\n\t\t\t\t| \"SETGID\" | \"SETPCAP\" | \"SETUID\" | \"SYS_ADMIN\" | \"SYS_BOOT\" | \"SYS_CHROOT\" |\n\t\t\t\t\"SYS_MODULE\" | \"SYS_NICE\" | \"SYS_PACCT\" | \"SYS_PTRACE\" | \"SYS_RAWIO\" |\n\t\t\t\t\"SYS_RESOURCE\" | \"SYS_TIME\" | \"SYS_TTY_CONFIG\" | \"SYSLOG\" |\n\t\t\t\"WAKE_ALARM\"\n

              " + "smithy.api#documentation": "

              The Linux capabilities for the container that have been removed from the default\n\t\t\tconfiguration provided by Docker. This parameter maps to CapDrop in the docker create-container command and the\n\t\t\t\t--cap-drop option to docker\n\t\t\t\trun.

              \n

              Valid values: \"ALL\" | \"AUDIT_CONTROL\" | \"AUDIT_WRITE\" | \"BLOCK_SUSPEND\" |\n\t\t\t\t\"CHOWN\" | \"DAC_OVERRIDE\" | \"DAC_READ_SEARCH\" | \"FOWNER\" | \"FSETID\" | \"IPC_LOCK\" |\n\t\t\t\t\"IPC_OWNER\" | \"KILL\" | \"LEASE\" | \"LINUX_IMMUTABLE\" | \"MAC_ADMIN\" | \"MAC_OVERRIDE\" |\n\t\t\t\t\"MKNOD\" | \"NET_ADMIN\" | \"NET_BIND_SERVICE\" | \"NET_BROADCAST\" | \"NET_RAW\" | \"SETFCAP\"\n\t\t\t\t| \"SETGID\" | \"SETPCAP\" | \"SETUID\" | \"SYS_ADMIN\" | \"SYS_BOOT\" | \"SYS_CHROOT\" |\n\t\t\t\t\"SYS_MODULE\" | \"SYS_NICE\" | \"SYS_PACCT\" | \"SYS_PTRACE\" | \"SYS_RAWIO\" |\n\t\t\t\t\"SYS_RESOURCE\" | \"SYS_TIME\" | \"SYS_TTY_CONFIG\" | \"SYSLOG\" |\n\t\t\t\"WAKE_ALARM\"\n

              " } } }, "traits": { - "smithy.api#documentation": "

              The Linux capabilities to add or remove from the default Docker configuration for a container defined in the task definition. For more information about the default capabilities\n\t\t\tand the non-default available capabilities, see Runtime privilege and Linux capabilities in the Docker run\n\t\t\t\treference. For more detailed information about these Linux capabilities,\n\t\t\tsee the capabilities(7) Linux manual page.

              " + "smithy.api#documentation": "

              The Linux capabilities to add or remove from the default Docker configuration for a container defined in the task definition. For more detailed information about these Linux capabilities,\n\t\t\tsee the capabilities(7) Linux manual page.

              " } }, "com.amazonaws.ecs#KeyValuePair": { @@ -6595,7 +6634,7 @@ "devices": { "target": "com.amazonaws.ecs#DevicesList", "traits": { - "smithy.api#documentation": "

              Any host devices to expose to the container. This parameter maps to\n\t\t\t\tDevices in the Create a container section of the\n\t\t\tDocker Remote API and the --device option to docker run.

              \n \n

              If you're using tasks that use the Fargate launch type, the\n\t\t\t\t\tdevices parameter isn't supported.

              \n
              " + "smithy.api#documentation": "

              Any host devices to expose to the container. This parameter maps to\n\t\t\tDevices in tthe docker create-container command and the --device option to docker run.

              \n \n

              If you're using tasks that use the Fargate launch type, the\n\t\t\t\t\tdevices parameter isn't supported.

              \n
              " } }, "initProcessEnabled": { @@ -6607,13 +6646,13 @@ "sharedMemorySize": { "target": "com.amazonaws.ecs#BoxedInteger", "traits": { - "smithy.api#documentation": "

              The value for the size (in MiB) of the /dev/shm volume. This parameter\n\t\t\tmaps to the --shm-size option to docker\n\t\t\t\trun.

              \n \n

              If you are using tasks that use the Fargate launch type, the\n\t\t\t\t\tsharedMemorySize parameter is not supported.

              \n
              " + "smithy.api#documentation": "

              The value for the size (in MiB) of the /dev/shm volume. This parameter\n\t\t\tmaps to the --shm-size option to docker\n\t\t\t\trun.

              \n \n

              If you are using tasks that use the Fargate launch type, the\n\t\t\t\t\tsharedMemorySize parameter is not supported.

              \n
              " } }, "tmpfs": { "target": "com.amazonaws.ecs#TmpfsList", "traits": { - "smithy.api#documentation": "

              The container path, mount options, and size (in MiB) of the tmpfs mount. This\n\t\t\tparameter maps to the --tmpfs option to docker run.

              \n \n

              If you're using tasks that use the Fargate launch type, the\n\t\t\t\t\ttmpfs parameter isn't supported.

              \n
              " + "smithy.api#documentation": "

              The container path, mount options, and size (in MiB) of the tmpfs mount. This\n\t\t\tparameter maps to the --tmpfs option to docker run.

              \n \n

              If you're using tasks that use the Fargate launch type, the\n\t\t\t\t\ttmpfs parameter isn't supported.

              \n
              " } }, "maxSwap": { @@ -6625,7 +6664,7 @@ "swappiness": { "target": "com.amazonaws.ecs#BoxedInteger", "traits": { - "smithy.api#documentation": "

              This allows you to tune a container's memory swappiness behavior. A\n\t\t\t\tswappiness value of 0 will cause swapping to not happen\n\t\t\tunless absolutely necessary. A swappiness value of 100 will\n\t\t\tcause pages to be swapped very aggressively. Accepted values are whole numbers between\n\t\t\t\t0 and 100. If the swappiness parameter is not\n\t\t\tspecified, a default value of 60 is used. If a value is not specified for\n\t\t\t\tmaxSwap then this parameter is ignored. This parameter maps to the\n\t\t\t\t--memory-swappiness option to docker run.

              \n \n

              If you're using tasks that use the Fargate launch type, the\n\t\t\t\t\tswappiness parameter isn't supported.

              \n

              If you're using tasks on Amazon Linux 2023 the swappiness parameter isn't\n\t\t\t\tsupported.

              \n
              " + "smithy.api#documentation": "

              This allows you to tune a container's memory swappiness behavior. A\n\t\t\t\tswappiness value of 0 will cause swapping to not happen\n\t\t\tunless absolutely necessary. A swappiness value of 100 will\n\t\t\tcause pages to be swapped very aggressively. Accepted values are whole numbers between\n\t\t\t\t0 and 100. If the swappiness parameter is not\n\t\t\tspecified, a default value of 60 is used. If a value is not specified for\n\t\t\t\tmaxSwap then this parameter is ignored. This parameter maps to the\n\t\t\t\t--memory-swappiness option to docker run.

              \n \n

              If you're using tasks that use the Fargate launch type, the\n\t\t\t\t\tswappiness parameter isn't supported.

              \n

              If you're using tasks on Amazon Linux 2023 the swappiness parameter isn't\n\t\t\t\tsupported.

              \n
              " } } }, @@ -7728,7 +7767,7 @@ "logDriver": { "target": "com.amazonaws.ecs#LogDriver", "traits": { - "smithy.api#documentation": "

              The log driver to use for the container.

              \n

              For tasks on Fargate, the supported log drivers are awslogs,\n\t\t\t\tsplunk, and awsfirelens.

              \n

              For tasks hosted on Amazon EC2 instances, the supported log drivers are\n\t\t\t\tawslogs, fluentd, gelf,\n\t\t\t\tjson-file, journald,\n\t\t\t\tlogentries,syslog, splunk, and\n\t\t\t\tawsfirelens.

              \n

              For more information about using the awslogs log driver, see Using\n\t\t\t\tthe awslogs log driver in the Amazon Elastic Container Service Developer Guide.

              \n

              For more information about using the awsfirelens log driver, see Custom log routing in the Amazon Elastic Container Service Developer Guide.

              \n \n

              If you have a custom driver that isn't listed, you can fork the Amazon ECS container\n\t\t\t\tagent project that's available\n\t\t\t\t\ton GitHub and customize it to work with that driver. We encourage you to\n\t\t\t\tsubmit pull requests for changes that you would like to have included. However, we\n\t\t\t\tdon't currently provide support for running modified copies of this software.

              \n
              ", + "smithy.api#documentation": "

              The log driver to use for the container.

              \n

              For tasks on Fargate, the supported log drivers are awslogs,\n\t\t\t\tsplunk, and awsfirelens.

              \n

              For tasks hosted on Amazon EC2 instances, the supported log drivers are\n\t\t\t\tawslogs, fluentd, gelf,\n\t\t\t\tjson-file, journald, syslog,\n\t\t\t\tsplunk, and awsfirelens.

              \n

              For more information about using the awslogs log driver, see Send\n\t\t\t\tAmazon ECS logs to CloudWatch in the Amazon Elastic Container Service Developer Guide.

              \n

              For more information about using the awsfirelens log driver, see Send\n\t\t\t\tAmazon ECS logs to an Amazon Web Services service or Amazon Web Services Partner.

              \n \n

              If you have a custom driver that isn't listed, you can fork the Amazon ECS container\n\t\t\t\tagent project that's available\n\t\t\t\t\ton GitHub and customize it to work with that driver. We encourage you to\n\t\t\t\tsubmit pull requests for changes that you would like to have included. However, we\n\t\t\t\tdon't currently provide support for running modified copies of this software.

              \n
              ", "smithy.api#required": {} } }, @@ -7746,7 +7785,7 @@ } }, "traits": { - "smithy.api#documentation": "

              The log configuration for the container. This parameter maps to LogConfig\n\t\t\tin the Create a container section of the Docker Remote API and the\n\t\t\t\t--log-driver option to \n docker\n\t\t\t\t\trun\n .

              \n

              By default, containers use the same logging driver that the Docker daemon uses.\n\t\t\tHowever, the container might use a different logging driver than the Docker daemon by\n\t\t\tspecifying a log driver configuration in the container definition. For more information\n\t\t\tabout the options for different supported log drivers, see Configure logging\n\t\t\t\tdrivers in the Docker documentation.

              \n

              Understand the following when specifying a log configuration for your\n\t\t\tcontainers.

              \n
                \n
              • \n

                Amazon ECS currently supports a subset of the logging drivers available to the\n\t\t\t\t\tDocker daemon. Additional log drivers may be available in future releases of the\n\t\t\t\t\tAmazon ECS container agent.

                \n

                For tasks on Fargate, the supported log drivers are awslogs,\n\t\t\t\t\t\tsplunk, and awsfirelens.

                \n

                For tasks hosted on Amazon EC2 instances, the supported log drivers are\n\t\t\t\t\t\tawslogs, fluentd, gelf,\n\t\t\t\t\t\tjson-file, journald,\n\t\t\t\t\t\tlogentries,syslog, splunk, and\n\t\t\t\t\t\tawsfirelens.

                \n
              • \n
              • \n

                This parameter requires version 1.18 of the Docker Remote API or greater on\n\t\t\t\t\tyour container instance.

                \n
              • \n
              • \n

                For tasks that are hosted on Amazon EC2 instances, the Amazon ECS container agent must\n\t\t\t\t\tregister the available logging drivers with the\n\t\t\t\t\t\tECS_AVAILABLE_LOGGING_DRIVERS environment variable before\n\t\t\t\t\tcontainers placed on that instance can use these log configuration options. For\n\t\t\t\t\tmore information, see Amazon ECS container agent configuration in the\n\t\t\t\t\tAmazon Elastic Container Service Developer Guide.

                \n
              • \n
              • \n

                For tasks that are on Fargate, because you don't have access to the\n\t\t\t\t\tunderlying infrastructure your tasks are hosted on, any additional software\n\t\t\t\t\tneeded must be installed outside of the task. For example, the Fluentd output\n\t\t\t\t\taggregators or a remote host running Logstash to send Gelf logs to.

                \n
              • \n
              " + "smithy.api#documentation": "

              The log configuration for the container. This parameter maps to LogConfig\n\t\t\tin the docker create-container command and the\n\t\t\t\t--log-driver option to docker\n\t\t\t\t\trun.

              \n

              By default, containers use the same logging driver that the Docker daemon uses.\n\t\t\tHowever, the container might use a different logging driver than the Docker daemon by\n\t\t\tspecifying a log driver configuration in the container definition.

              \n

              Understand the following when specifying a log configuration for your\n\t\t\tcontainers.

              \n
                \n
              • \n

                Amazon ECS currently supports a subset of the logging drivers available to the\n\t\t\t\t\tDocker daemon. Additional log drivers may be available in future releases of the\n\t\t\t\t\tAmazon ECS container agent.

                \n

                For tasks on Fargate, the supported log drivers are awslogs,\n\t\t\t\t\t\tsplunk, and awsfirelens.

                \n

                For tasks hosted on Amazon EC2 instances, the supported log drivers are\n\t\t\t\t\t\tawslogs, fluentd, gelf,\n\t\t\t\t\t\tjson-file, journald,syslog,\n\t\t\t\t\t\tsplunk, and awsfirelens.

                \n
              • \n
              • \n

                This parameter requires version 1.18 of the Docker Remote API or greater on\n\t\t\t\t\tyour container instance.

                \n
              • \n
              • \n

                For tasks that are hosted on Amazon EC2 instances, the Amazon ECS container agent must\n\t\t\t\t\tregister the available logging drivers with the\n\t\t\t\t\t\tECS_AVAILABLE_LOGGING_DRIVERS environment variable before\n\t\t\t\t\tcontainers placed on that instance can use these log configuration options. For\n\t\t\t\t\tmore information, see Amazon ECS container agent configuration in the\n\t\t\t\t\tAmazon Elastic Container Service Developer Guide.

                \n
              • \n
              • \n

                For tasks that are on Fargate, because you don't have access to the\n\t\t\t\t\tunderlying infrastructure your tasks are hosted on, any additional software\n\t\t\t\t\tneeded must be installed outside of the task. For example, the Fluentd output\n\t\t\t\t\taggregators or a remote host running Logstash to send Gelf logs to.

                \n
              • \n
              " } }, "com.amazonaws.ecs#LogConfigurationOptionsMap": { @@ -8517,7 +8556,7 @@ } }, "traits": { - "smithy.api#documentation": "

              Port mappings allow containers to access ports on the host container instance to send\n\t\t\tor receive traffic. Port mappings are specified as part of the container\n\t\t\tdefinition.

              \n

              If you use containers in a task with the awsvpc or host\n\t\t\tnetwork mode, specify the exposed ports using containerPort. The\n\t\t\t\thostPort can be left blank or it must be the same value as the\n\t\t\t\tcontainerPort.

              \n

              Most fields of this parameter (containerPort, hostPort,\n\t\t\t\tprotocol) maps to PortBindings in the\n\t\t\tCreate a container section of the Docker Remote API and the\n\t\t\t\t--publish option to \n docker\n\t\t\t\t\trun\n . If the network mode of a task definition is set to\n\t\t\t\thost, host ports must either be undefined or match the container port\n\t\t\tin the port mapping.

              \n \n

              You can't expose the same container port for multiple protocols. If you attempt\n\t\t\t\tthis, an error is returned.

              \n
              \n

              After a task reaches the RUNNING status, manual and automatic host and\n\t\t\tcontainer port assignments are visible in the networkBindings section of\n\t\t\t\tDescribeTasks API responses.

              " + "smithy.api#documentation": "

              Port mappings allow containers to access ports on the host container instance to send\n\t\t\tor receive traffic. Port mappings are specified as part of the container\n\t\t\tdefinition.

              \n

              If you use containers in a task with the awsvpc or host\n\t\t\tnetwork mode, specify the exposed ports using containerPort. The\n\t\t\t\thostPort can be left blank or it must be the same value as the\n\t\t\t\tcontainerPort.

              \n

              Most fields of this parameter (containerPort, hostPort,\n\t\t\tprotocol) maps to PortBindings in the docker create-container command and the\n\t\t\t\t--publish option to docker\n\t\t\t\t\trun. If the network mode of a task definition is set to\n\t\t\t\thost, host ports must either be undefined or match the container port\n\t\t\tin the port mapping.

              \n \n

              You can't expose the same container port for multiple protocols. If you attempt\n\t\t\t\tthis, an error is returned.

              \n
              \n

              After a task reaches the RUNNING status, manual and automatic host and\n\t\t\tcontainer port assignments are visible in the networkBindings section of\n\t\t\t\tDescribeTasks API responses.

              " } }, "com.amazonaws.ecs#PortMappingList": { @@ -9064,7 +9103,7 @@ } ], "traits": { - "smithy.api#documentation": "

              Registers a new task definition from the supplied family and\n\t\t\t\tcontainerDefinitions. Optionally, you can add data volumes to your\n\t\t\tcontainers with the volumes parameter. For more information about task\n\t\t\tdefinition parameters and defaults, see Amazon ECS Task\n\t\t\t\tDefinitions in the Amazon Elastic Container Service Developer Guide.

              \n

              You can specify a role for your task with the taskRoleArn parameter. When\n\t\t\tyou specify a role for a task, its containers can then use the latest versions of the\n\t\t\tCLI or SDKs to make API requests to the Amazon Web Services services that are specified in the\n\t\t\tpolicy that's associated with the role. For more information, see IAM\n\t\t\t\tRoles for Tasks in the Amazon Elastic Container Service Developer Guide.

              \n

              You can specify a Docker networking mode for the containers in your task definition\n\t\t\twith the networkMode parameter. The available network modes correspond to\n\t\t\tthose described in Network\n\t\t\t\tsettings in the Docker run reference. If you specify the awsvpc\n\t\t\tnetwork mode, the task is allocated an elastic network interface, and you must specify a\n\t\t\t\tNetworkConfiguration when you create a service or run a task with\n\t\t\tthe task definition. For more information, see Task Networking\n\t\t\tin the Amazon Elastic Container Service Developer Guide.

              ", + "smithy.api#documentation": "

              Registers a new task definition from the supplied family and\n\t\t\t\tcontainerDefinitions. Optionally, you can add data volumes to your\n\t\t\tcontainers with the volumes parameter. For more information about task\n\t\t\tdefinition parameters and defaults, see Amazon ECS Task\n\t\t\t\tDefinitions in the Amazon Elastic Container Service Developer Guide.

              \n

              You can specify a role for your task with the taskRoleArn parameter. When\n\t\t\tyou specify a role for a task, its containers can then use the latest versions of the\n\t\t\tCLI or SDKs to make API requests to the Amazon Web Services services that are specified in the\n\t\t\tpolicy that's associated with the role. For more information, see IAM\n\t\t\t\tRoles for Tasks in the Amazon Elastic Container Service Developer Guide.

              \n

              You can specify a Docker networking mode for the containers in your task definition\n\t\t\twith the networkMode parameter. If you specify the awsvpc\n\t\t\tnetwork mode, the task is allocated an elastic network interface, and you must specify a\n\t\t\t\tNetworkConfiguration when you create a service or run a task with\n\t\t\tthe task definition. For more information, see Task Networking\n\t\t\tin the Amazon Elastic Container Service Developer Guide.

              ", "smithy.api#examples": [ { "title": "To register a task definition", @@ -9129,13 +9168,13 @@ "executionRoleArn": { "target": "com.amazonaws.ecs#String", "traits": { - "smithy.api#documentation": "

              The Amazon Resource Name (ARN) of the task execution role that grants the Amazon ECS container agent\n permission to make Amazon Web Services API calls on your behalf. The task execution IAM role is required\n depending on the requirements of your task. For more information, see Amazon ECS task\n execution IAM role in the Amazon Elastic Container Service Developer Guide.

              " + "smithy.api#documentation": "

              The Amazon Resource Name (ARN) of the task execution role that grants the Amazon ECS container agent\n permission to make Amazon Web Services API calls on your behalf. For informationabout the required IAM roles for Amazon ECS, see IAM roles for Amazon ECS in the Amazon Elastic Container Service Developer Guide.

              " } }, "networkMode": { "target": "com.amazonaws.ecs#NetworkMode", "traits": { - "smithy.api#documentation": "

              The Docker networking mode to use for the containers in the task. The valid values are\n none, bridge, awsvpc, and host.\n If no network mode is specified, the default is bridge.

              \n

              For Amazon ECS tasks on Fargate, the awsvpc network mode is required. \n For Amazon ECS tasks on Amazon EC2 Linux instances, any network mode can be used. For Amazon ECS tasks on Amazon EC2 Windows instances, or awsvpc can be used. If the network\n mode is set to none, you cannot specify port mappings in your container\n definitions, and the tasks containers do not have external connectivity. The\n host and awsvpc network modes offer the highest networking\n performance for containers because they use the EC2 network stack instead of the\n virtualized network stack provided by the bridge mode.

              \n

              With the host and awsvpc network modes, exposed container\n ports are mapped directly to the corresponding host port (for the host\n network mode) or the attached elastic network interface port (for the\n awsvpc network mode), so you cannot take advantage of dynamic host port\n mappings.

              \n \n

              When using the host network mode, you should not run\n containers using the root user (UID 0). It is considered best practice\n to use a non-root user.

              \n
              \n

              If the network mode is awsvpc, the task is allocated an elastic network\n interface, and you must specify a NetworkConfiguration value when you create\n a service or run a task with the task definition. For more information, see Task Networking in the\n Amazon Elastic Container Service Developer Guide.

              \n

              If the network mode is host, you cannot run multiple instantiations of the\n same task on a single container instance when port mappings are used.

              \n

              For more information, see Network\n settings in the Docker run reference.

              " + "smithy.api#documentation": "

              The Docker networking mode to use for the containers in the task. The valid values are\n none, bridge, awsvpc, and host.\n If no network mode is specified, the default is bridge.

              \n

              For Amazon ECS tasks on Fargate, the awsvpc network mode is required. \n For Amazon ECS tasks on Amazon EC2 Linux instances, any network mode can be used. For Amazon ECS tasks on Amazon EC2 Windows instances, or awsvpc can be used. If the network\n mode is set to none, you cannot specify port mappings in your container\n definitions, and the tasks containers do not have external connectivity. The\n host and awsvpc network modes offer the highest networking\n performance for containers because they use the EC2 network stack instead of the\n virtualized network stack provided by the bridge mode.

              \n

              With the host and awsvpc network modes, exposed container\n ports are mapped directly to the corresponding host port (for the host\n network mode) or the attached elastic network interface port (for the\n awsvpc network mode), so you cannot take advantage of dynamic host port\n mappings.

              \n \n

              When using the host network mode, you should not run\n containers using the root user (UID 0). It is considered best practice\n to use a non-root user.

              \n
              \n

              If the network mode is awsvpc, the task is allocated an elastic network\n interface, and you must specify a NetworkConfiguration value when you create\n a service or run a task with the task definition. For more information, see Task Networking in the\n Amazon Elastic Container Service Developer Guide.

              \n

              If the network mode is host, you cannot run multiple instantiations of the\n same task on a single container instance when port mappings are used.

              " } }, "containerDefinitions": { @@ -9184,13 +9223,13 @@ "pidMode": { "target": "com.amazonaws.ecs#PidMode", "traits": { - "smithy.api#documentation": "

              The process namespace to use for the containers in the task. The valid\n values are host or task. On Fargate for\n Linux containers, the only valid value is task. For\n example, monitoring sidecars might need pidMode to access\n information about other containers running in the same task.

              \n

              If host is specified, all containers within the tasks\n that specified the host PID mode on the same container\n instance share the same process namespace with the host Amazon EC2\n instance.

              \n

              If task is specified, all containers within the specified\n task share the same process namespace.

              \n

              If no value is specified, the\n default is a private namespace for each container. For more information,\n see PID settings in the Docker run\n reference.

              \n

              If the host PID mode is used, there's a heightened risk\n of undesired process namespace exposure. For more information, see\n Docker security.

              \n \n

              This parameter is not supported for Windows containers.

              \n
              \n \n

              This parameter is only supported for tasks that are hosted on\n Fargate if the tasks are using platform version 1.4.0 or later\n (Linux). This isn't supported for Windows containers on\n Fargate.

              \n
              " + "smithy.api#documentation": "

              The process namespace to use for the containers in the task. The valid\n values are host or task. On Fargate for\n Linux containers, the only valid value is task. For\n example, monitoring sidecars might need pidMode to access\n information about other containers running in the same task.

              \n

              If host is specified, all containers within the tasks\n that specified the host PID mode on the same container\n instance share the same process namespace with the host Amazon EC2\n instance.

              \n

              If task is specified, all containers within the specified\n task share the same process namespace.

              \n

              If no value is specified, the\n default is a private namespace for each container.

              \n

              If the host PID mode is used, there's a heightened risk\n of undesired process namespace exposure.

              \n \n

              This parameter is not supported for Windows containers.

              \n
              \n \n

              This parameter is only supported for tasks that are hosted on\n Fargate if the tasks are using platform version 1.4.0 or later\n (Linux). This isn't supported for Windows containers on\n Fargate.

              \n
              " } }, "ipcMode": { "target": "com.amazonaws.ecs#IpcMode", "traits": { - "smithy.api#documentation": "

              The IPC resource namespace to use for the containers in the task. The valid values are\n host, task, or none. If host is\n specified, then all containers within the tasks that specified the host IPC\n mode on the same container instance share the same IPC resources with the host Amazon EC2\n instance. If task is specified, all containers within the specified task\n share the same IPC resources. If none is specified, then IPC resources\n within the containers of a task are private and not shared with other containers in a\n task or on the container instance. If no value is specified, then the IPC resource\n namespace sharing depends on the Docker daemon setting on the container instance. For\n more information, see IPC\n settings in the Docker run reference.

              \n

              If the host IPC mode is used, be aware that there is a heightened risk of\n undesired IPC namespace expose. For more information, see Docker\n security.

              \n

              If you are setting namespaced kernel parameters using systemControls for\n the containers in the task, the following will apply to your IPC resource namespace. For\n more information, see System\n Controls in the Amazon Elastic Container Service Developer Guide.

              \n
                \n
              • \n

                For tasks that use the host IPC mode, IPC namespace related\n systemControls are not supported.

                \n
              • \n
              • \n

                For tasks that use the task IPC mode, IPC namespace related\n systemControls will apply to all containers within a\n task.

                \n
              • \n
              \n \n

              This parameter is not supported for Windows containers or tasks run on Fargate.

              \n
              " + "smithy.api#documentation": "

              The IPC resource namespace to use for the containers in the task. The valid values are\n host, task, or none. If host is\n specified, then all containers within the tasks that specified the host IPC\n mode on the same container instance share the same IPC resources with the host Amazon EC2\n instance. If task is specified, all containers within the specified task\n share the same IPC resources. If none is specified, then IPC resources\n within the containers of a task are private and not shared with other containers in a\n task or on the container instance. If no value is specified, then the IPC resource\n namespace sharing depends on the Docker daemon setting on the container instance.

              \n

              If the host IPC mode is used, be aware that there is a heightened risk of\n undesired IPC namespace expose.

              \n

              If you are setting namespaced kernel parameters using systemControls for\n the containers in the task, the following will apply to your IPC resource namespace. For\n more information, see System\n Controls in the Amazon Elastic Container Service Developer Guide.

              \n
                \n
              • \n

                For tasks that use the host IPC mode, IPC namespace related\n systemControls are not supported.

                \n
              • \n
              • \n

                For tasks that use the task IPC mode, IPC namespace related\n systemControls will apply to all containers within a\n task.

                \n
              • \n
              \n \n

              This parameter is not supported for Windows containers or tasks run on Fargate.

              \n
              " } }, "proxyConfiguration": { @@ -9352,7 +9391,7 @@ "value": { "target": "com.amazonaws.ecs#String", "traits": { - "smithy.api#documentation": "

              The value for the specified resource type.

              \n

              When the type is GPU, the value is the number of physical GPUs the\n\t\t\tAmazon ECS container agent reserves for the container. The number of GPUs that's reserved for\n\t\t\tall containers in a task can't exceed the number of available GPUs on the container\n\t\t\tinstance that the task is launched on.

              \n

              When the type is InferenceAccelerator, the value matches\n\t\t\tthe deviceName for an InferenceAccelerator specified in a task definition.

              ", + "smithy.api#documentation": "

              The value for the specified resource type.

              \n

              When the type is GPU, the value is the number of physical\n\t\t\t\tGPUs the Amazon ECS container agent reserves for the container. The number\n\t\t\tof GPUs that's reserved for all containers in a task can't exceed the number of\n\t\t\tavailable GPUs on the container instance that the task is launched on.

              \n

              When the type is InferenceAccelerator, the value matches the\n\t\t\t\tdeviceName for an InferenceAccelerator specified in a task definition.

              ", "smithy.api#required": {} } }, @@ -9569,7 +9608,7 @@ "startedBy": { "target": "com.amazonaws.ecs#String", "traits": { - "smithy.api#documentation": "

              An optional tag specified when a task is started. For example, if you automatically\n\t\t\ttrigger a task to run a batch process job, you could apply a unique identifier for that\n\t\t\tjob to your task with the startedBy parameter. You can then identify which\n\t\t\ttasks belong to that job by filtering the results of a ListTasks call\n\t\t\twith the startedBy value. Up to 128 letters (uppercase and lowercase),\n\t\t\tnumbers, hyphens (-), and underscores (_) are allowed.

              \n

              If a task is started by an Amazon ECS service, then the startedBy parameter\n\t\t\tcontains the deployment ID of the service that starts it.

              " + "smithy.api#documentation": "

              An optional tag specified when a task is started. For example, if you automatically\n\t\t\ttrigger a task to run a batch process job, you could apply a unique identifier for that\n\t\t\tjob to your task with the startedBy parameter. You can then identify which\n\t\t\ttasks belong to that job by filtering the results of a ListTasks call with\n\t\t\tthe startedBy value. Up to 128 letters (uppercase and lowercase), numbers,\n\t\t\thyphens (-), forward slash (/), and underscores (_) are allowed.

              \n

              If a task is started by an Amazon ECS service, then the startedBy parameter\n\t\t\tcontains the deployment ID of the service that starts it.

              " } }, "tags": { @@ -9581,7 +9620,7 @@ "taskDefinition": { "target": "com.amazonaws.ecs#String", "traits": { - "smithy.api#documentation": "

              The family and revision (family:revision) or\n\t\t\tfull ARN of the task definition to run. If a revision isn't specified,\n\t\t\tthe latest ACTIVE revision is used.

              \n

              The full ARN value must match the value that you specified as the\n\t\t\t\tResource of the principal's permissions policy.

              \n

              When you specify a task definition, you must either specify a specific revision, or\n\t\t\tall revisions in the ARN.

              \n

              To specify a specific revision, include the revision number in the ARN. For example,\n\t\t\tto specify revision 2, use\n\t\t\t\tarn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:2.

              \n

              To specify all revisions, use the wildcard (*) in the ARN. For example, to specify all\n\t\t\trevisions, use\n\t\t\t\tarn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:*.

              \n

              For more information, see Policy Resources for Amazon ECS in the Amazon Elastic Container Service Developer Guide.

              ", + "smithy.api#documentation": "

              The family and revision (family:revision) or\n\t\t\tfull ARN of the task definition to run. If a revision isn't specified,\n\t\t\tthe latest ACTIVE revision is used.

              \n

              The full ARN value must match the value that you specified as the\n\t\t\t\tResource of the principal's permissions policy.

              \n

              When you specify a task definition, you must either specify a specific revision, or\n\t\t\tall revisions in the ARN.

              \n

              To specify a specific revision, include the revision number in the ARN. For example,\n\t\t\tto specify revision 2, use\n\t\t\t\tarn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:2.

              \n

              To specify all revisions, use the wildcard (*) in the ARN. For example, to specify\n\t\t\tall revisions, use\n\t\t\t\tarn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:*.

              \n

              For more information, see Policy Resources for Amazon ECS in the Amazon Elastic Container Service Developer Guide.

              ", "smithy.api#required": {} } }, @@ -9609,7 +9648,7 @@ "tasks": { "target": "com.amazonaws.ecs#Tasks", "traits": { - "smithy.api#documentation": "

              A full description of the tasks that were run. The tasks that were successfully placed\n\t\t\ton your cluster are described here.

              \n

              " + "smithy.api#documentation": "

              A full description of the tasks that were run. The tasks that were successfully placed\n\t\t\ton your cluster are described here.

              " } }, "failures": { @@ -10618,7 +10657,7 @@ "startedBy": { "target": "com.amazonaws.ecs#String", "traits": { - "smithy.api#documentation": "

              An optional tag specified when a task is started. For example, if you automatically\n\t\t\ttrigger a task to run a batch process job, you could apply a unique identifier for that\n\t\t\tjob to your task with the startedBy parameter. You can then identify which\n\t\t\ttasks belong to that job by filtering the results of a ListTasks call\n\t\t\twith the startedBy value. Up to 36 letters (uppercase and lowercase),\n\t\t\tnumbers, hyphens (-), and underscores (_) are allowed.

              \n

              If a task is started by an Amazon ECS service, the startedBy parameter\n\t\t\tcontains the deployment ID of the service that starts it.

              " + "smithy.api#documentation": "

              An optional tag specified when a task is started. For example, if you automatically\n\t\t\ttrigger a task to run a batch process job, you could apply a unique identifier for that\n\t\t\tjob to your task with the startedBy parameter. You can then identify which\n\t\t\ttasks belong to that job by filtering the results of a ListTasks call with\n\t\t\tthe startedBy value. Up to 36 letters (uppercase and lowercase), numbers,\n\t\t\thyphens (-), forward slash (/), and underscores (_) are allowed.

              \n

              If a task is started by an Amazon ECS service, the startedBy parameter\n\t\t\tcontains the deployment ID of the service that starts it.

              " } }, "tags": { @@ -10694,7 +10733,7 @@ } ], "traits": { - "smithy.api#documentation": "

              Stops a running task. Any tags associated with the task will be deleted.

              \n

              When StopTask is called on a task, the equivalent of docker\n\t\t\t\tstop is issued to the containers running in the task. This results in a\n\t\t\t\tSIGTERM value and a default 30-second timeout, after which the\n\t\t\t\tSIGKILL value is sent and the containers are forcibly stopped. If the\n\t\t\tcontainer handles the SIGTERM value gracefully and exits within 30 seconds\n\t\t\tfrom receiving it, no SIGKILL value is sent.

              \n

              For Windows containers, POSIX signals do not work and runtime stops the container by sending\n\t\t\ta CTRL_SHUTDOWN_EVENT. For more information, see Unable to react to graceful shutdown\n\t\t\t\tof (Windows) container #25982 on GitHub.

              \n \n

              The default 30-second timeout can be configured on the Amazon ECS container agent with\n\t\t\t\tthe ECS_CONTAINER_STOP_TIMEOUT variable. For more information, see\n\t\t\t\t\tAmazon ECS Container Agent Configuration in the\n\t\t\t\tAmazon Elastic Container Service Developer Guide.

              \n
              " + "smithy.api#documentation": "

              Stops a running task. Any tags associated with the task will be deleted.

              \n

              When StopTask is called on a task, the equivalent of docker\n\t\t\t\tstop is issued to the containers running in the task. This results in a\n\t\t\t\tSIGTERM value and a default 30-second timeout, after which the\n\t\t\t\tSIGKILL value is sent and the containers are forcibly stopped. If the\n\t\t\tcontainer handles the SIGTERM value gracefully and exits within 30 seconds\n\t\t\tfrom receiving it, no SIGKILL value is sent.

              \n

              For Windows containers, POSIX signals do not work and runtime stops the container by\n\t\t\tsending a CTRL_SHUTDOWN_EVENT. For more information, see Unable to react to graceful shutdown\n\t\t\t\tof (Windows) container #25982 on GitHub.

              \n \n

              The default 30-second timeout can be configured on the Amazon ECS container agent with\n\t\t\t\tthe ECS_CONTAINER_STOP_TIMEOUT variable. For more information, see\n\t\t\t\t\tAmazon ECS Container Agent Configuration in the\n\t\t\t\tAmazon Elastic Container Service Developer Guide.

              \n
              " } }, "com.amazonaws.ecs#StopTaskRequest": { @@ -11035,7 +11074,7 @@ } }, "traits": { - "smithy.api#documentation": "

              A list of namespaced kernel parameters to set in the container. This parameter maps to\n\t\t\t\tSysctls in the Create a container section of the\n\t\t\tDocker Remote API and the --sysctl option to docker run. For example, you can configure\n\t\t\t\tnet.ipv4.tcp_keepalive_time setting to maintain longer lived\n\t\t\tconnections.

              \n

              We don't recommend that you specify network-related systemControls\n\t\t\tparameters for multiple containers in a single task that also uses either the\n\t\t\t\tawsvpc or host network mode. Doing this has the following\n\t\t\tdisadvantages:

              \n
                \n
              • \n

                For tasks that use the awsvpc network mode including Fargate,\n\t\t\t\t\tif you set systemControls for any container, it applies to all\n\t\t\t\t\tcontainers in the task. If you set different systemControls for\n\t\t\t\t\tmultiple containers in a single task, the container that's started last\n\t\t\t\t\tdetermines which systemControls take effect.

                \n
              • \n
              • \n

                For tasks that use the host network mode, the network namespace\n\t\t\t\t\t\tsystemControls aren't supported.

                \n
              • \n
              \n

              If you're setting an IPC resource namespace to use for the containers in the task, the\n\t\t\tfollowing conditions apply to your system controls. For more information, see IPC mode.

              \n
                \n
              • \n

                For tasks that use the host IPC mode, IPC namespace\n\t\t\t\t\t\tsystemControls aren't supported.

                \n
              • \n
              • \n

                For tasks that use the task IPC mode, IPC namespace\n\t\t\t\t\t\tsystemControls values apply to all containers within a\n\t\t\t\t\ttask.

                \n
              • \n
              \n \n

              This parameter is not supported for Windows containers.

              \n
              \n \n

              This parameter is only supported for tasks that are hosted on\n Fargate if the tasks are using platform version 1.4.0 or later\n (Linux). This isn't supported for Windows containers on\n Fargate.

              \n
              " + "smithy.api#documentation": "

              A list of namespaced kernel parameters to set in the container. This parameter maps to\n\t\t\tSysctls in tthe docker create-container command and the --sysctl option to docker run. For example, you can configure\n\t\t\t\tnet.ipv4.tcp_keepalive_time setting to maintain longer lived\n\t\t\tconnections.

              \n

              We don't recommend that you specify network-related systemControls\n\t\t\tparameters for multiple containers in a single task that also uses either the\n\t\t\t\tawsvpc or host network mode. Doing this has the following\n\t\t\tdisadvantages:

              \n
                \n
              • \n

                For tasks that use the awsvpc network mode including Fargate,\n\t\t\t\t\tif you set systemControls for any container, it applies to all\n\t\t\t\t\tcontainers in the task. If you set different systemControls for\n\t\t\t\t\tmultiple containers in a single task, the container that's started last\n\t\t\t\t\tdetermines which systemControls take effect.

                \n
              • \n
              • \n

                For tasks that use the host network mode, the network namespace\n\t\t\t\t\t\tsystemControls aren't supported.

                \n
              • \n
              \n

              If you're setting an IPC resource namespace to use for the containers in the task, the\n\t\t\tfollowing conditions apply to your system controls. For more information, see IPC mode.

              \n
                \n
              • \n

                For tasks that use the host IPC mode, IPC namespace\n\t\t\t\t\t\tsystemControls aren't supported.

                \n
              • \n
              • \n

                For tasks that use the task IPC mode, IPC namespace\n\t\t\t\t\t\tsystemControls values apply to all containers within a\n\t\t\t\t\ttask.

                \n
              • \n
              \n \n

              This parameter is not supported for Windows containers.

              \n
              \n \n

              This parameter is only supported for tasks that are hosted on\n Fargate if the tasks are using platform version 1.4.0 or later\n (Linux). This isn't supported for Windows containers on\n Fargate.

              \n
              " } }, "com.amazonaws.ecs#SystemControls": { @@ -11202,7 +11241,7 @@ } }, "traits": { - "smithy.api#documentation": "

              The specified target wasn't found. You can view your available container instances\n\t\t\twith ListContainerInstances. Amazon ECS container instances are\n\t\t\tcluster-specific and Region-specific.

              ", + "smithy.api#documentation": "

              The specified target wasn't found. You can view your available container instances\n\t\t\twith ListContainerInstances. Amazon ECS container instances are cluster-specific and\n\t\t\tRegion-specific.

              ", "smithy.api#error": "client" } }, @@ -11473,19 +11512,19 @@ "taskRoleArn": { "target": "com.amazonaws.ecs#String", "traits": { - "smithy.api#documentation": "

              The short name or full Amazon Resource Name (ARN) of the Identity and Access Management role that grants containers in the\n\t\t\ttask permission to call Amazon Web Services APIs on your behalf. For more information, see Amazon ECS\n\t\t\t\tTask Role in the Amazon Elastic Container Service Developer Guide.

              \n

              IAM roles for tasks on Windows require that the -EnableTaskIAMRole\n\t\t\toption is set when you launch the Amazon ECS-optimized Windows AMI. Your containers must also run some\n\t\t\tconfiguration code to use the feature. For more information, see Windows IAM roles\n\t\t\t\tfor tasks in the Amazon Elastic Container Service Developer Guide.

              " + "smithy.api#documentation": "

              The short name or full Amazon Resource Name (ARN) of the Identity and Access Management role that grants containers in the\n\t\t\ttask permission to call Amazon Web Services APIs on your behalf. For informationabout the required\n\t\t\tIAM roles for Amazon ECS, see IAM\n\t\t\t\troles for Amazon ECS in the Amazon Elastic Container Service Developer Guide.

              " } }, "executionRoleArn": { "target": "com.amazonaws.ecs#String", "traits": { - "smithy.api#documentation": "

              The Amazon Resource Name (ARN) of the task execution role that grants the Amazon ECS container agent\n permission to make Amazon Web Services API calls on your behalf. The task execution IAM role is required\n depending on the requirements of your task. For more information, see Amazon ECS task\n execution IAM role in the Amazon Elastic Container Service Developer Guide.

              " + "smithy.api#documentation": "

              The Amazon Resource Name (ARN) of the task execution role that grants the Amazon ECS container agent\n permission to make Amazon Web Services API calls on your behalf. For informationabout the required IAM roles for Amazon ECS, see IAM roles for Amazon ECS in the Amazon Elastic Container Service Developer Guide.

              " } }, "networkMode": { "target": "com.amazonaws.ecs#NetworkMode", "traits": { - "smithy.api#documentation": "

              The Docker networking mode to use for the containers in the task. The valid values are\n none, bridge, awsvpc, and host.\n If no network mode is specified, the default is bridge.

              \n

              For Amazon ECS tasks on Fargate, the awsvpc network mode is required. \n For Amazon ECS tasks on Amazon EC2 Linux instances, any network mode can be used. For Amazon ECS tasks on Amazon EC2 Windows instances, or awsvpc can be used. If the network\n mode is set to none, you cannot specify port mappings in your container\n definitions, and the tasks containers do not have external connectivity. The\n host and awsvpc network modes offer the highest networking\n performance for containers because they use the EC2 network stack instead of the\n virtualized network stack provided by the bridge mode.

              \n

              With the host and awsvpc network modes, exposed container\n ports are mapped directly to the corresponding host port (for the host\n network mode) or the attached elastic network interface port (for the\n awsvpc network mode), so you cannot take advantage of dynamic host port\n mappings.

              \n \n

              When using the host network mode, you should not run\n containers using the root user (UID 0). It is considered best practice\n to use a non-root user.

              \n
              \n

              If the network mode is awsvpc, the task is allocated an elastic network\n interface, and you must specify a NetworkConfiguration value when you create\n a service or run a task with the task definition. For more information, see Task Networking in the\n Amazon Elastic Container Service Developer Guide.

              \n

              If the network mode is host, you cannot run multiple instantiations of the\n same task on a single container instance when port mappings are used.

              \n

              For more information, see Network\n settings in the Docker run reference.

              " + "smithy.api#documentation": "

              The Docker networking mode to use for the containers in the task. The valid values are\n none, bridge, awsvpc, and host.\n If no network mode is specified, the default is bridge.

              \n

              For Amazon ECS tasks on Fargate, the awsvpc network mode is required. \n For Amazon ECS tasks on Amazon EC2 Linux instances, any network mode can be used. For Amazon ECS tasks on Amazon EC2 Windows instances, or awsvpc can be used. If the network\n mode is set to none, you cannot specify port mappings in your container\n definitions, and the tasks containers do not have external connectivity. The\n host and awsvpc network modes offer the highest networking\n performance for containers because they use the EC2 network stack instead of the\n virtualized network stack provided by the bridge mode.

              \n

              With the host and awsvpc network modes, exposed container\n ports are mapped directly to the corresponding host port (for the host\n network mode) or the attached elastic network interface port (for the\n awsvpc network mode), so you cannot take advantage of dynamic host port\n mappings.

              \n \n

              When using the host network mode, you should not run\n containers using the root user (UID 0). It is considered best practice\n to use a non-root user.

              \n
              \n

              If the network mode is awsvpc, the task is allocated an elastic network\n interface, and you must specify a NetworkConfiguration value when you create\n a service or run a task with the task definition. For more information, see Task Networking in the\n Amazon Elastic Container Service Developer Guide.

              \n

              If the network mode is host, you cannot run multiple instantiations of the\n same task on a single container instance when port mappings are used.

              " } }, "revision": { @@ -11540,7 +11579,7 @@ "cpu": { "target": "com.amazonaws.ecs#String", "traits": { - "smithy.api#documentation": "

              The number of cpu units used by the task. If you use the EC2 launch type,\n\t\t\tthis field is optional. Any value can be used. If you use the Fargate launch type, this\n\t\t\tfield is required. You must use one of the following values. The value that you choose\n\t\t\tdetermines your range of valid values for the memory parameter.

              \n

              The CPU units cannot be less than 1 vCPU when you use Windows containers on\n\t\t\tFargate.

              \n
                \n
              • \n

                256 (.25 vCPU) - Available memory values: 512 (0.5 GB), 1024 (1 GB), 2048 (2 GB)

                \n
              • \n
              • \n

                512 (.5 vCPU) - Available memory values: 1024 (1 GB), 2048 (2 GB), 3072 (3 GB), 4096 (4 GB)

                \n
              • \n
              • \n

                1024 (1 vCPU) - Available memory values: 2048 (2 GB), 3072 (3 GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8 GB)

                \n
              • \n
              • \n

                2048 (2 vCPU) - Available memory values: 4096 (4 GB) and 16384 (16 GB) in increments of 1024 (1 GB)

                \n
              • \n
              • \n

                4096 (4 vCPU) - Available memory values: 8192 (8 GB) and 30720 (30 GB) in increments of 1024 (1 GB)

                \n
              • \n
              • \n

                8192 (8 vCPU) - Available memory values: 16 GB and 60 GB in 4 GB increments

                \n

                This option requires Linux platform 1.4.0 or\n later.

                \n
              • \n
              • \n

                16384 (16vCPU) - Available memory values: 32GB and 120 GB in 8 GB increments

                \n

                This option requires Linux platform 1.4.0 or\n later.

                \n
              • \n
              " + "smithy.api#documentation": "

              The number of cpu units used by the task. If you use the EC2 launch type,\n\t\t\tthis field is optional. Any value can be used. If you use the Fargate launch type, this\n\t\t\tfield is required. You must use one of the following values. The value that you choose\n\t\t\tdetermines your range of valid values for the memory parameter.

              \n

              If you use the EC2 launch type, this field is optional. Supported values\n\t\t\tare between 128 CPU units (0.125 vCPUs) and 10240\n\t\t\tCPU units (10 vCPUs).

              \n

              The CPU units cannot be less than 1 vCPU when you use Windows containers on\n\t\t\tFargate.

              \n
                \n
              • \n

                256 (.25 vCPU) - Available memory values: 512 (0.5 GB), 1024 (1 GB), 2048 (2 GB)

                \n
              • \n
              • \n

                512 (.5 vCPU) - Available memory values: 1024 (1 GB), 2048 (2 GB), 3072 (3 GB), 4096 (4 GB)

                \n
              • \n
              • \n

                1024 (1 vCPU) - Available memory values: 2048 (2 GB), 3072 (3 GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8 GB)

                \n
              • \n
              • \n

                2048 (2 vCPU) - Available memory values: 4096 (4 GB) and 16384 (16 GB) in increments of 1024 (1 GB)

                \n
              • \n
              • \n

                4096 (4 vCPU) - Available memory values: 8192 (8 GB) and 30720 (30 GB) in increments of 1024 (1 GB)

                \n
              • \n
              • \n

                8192 (8 vCPU) - Available memory values: 16 GB and 60 GB in 4 GB increments

                \n

                This option requires Linux platform 1.4.0 or\n later.

                \n
              • \n
              • \n

                16384 (16vCPU) - Available memory values: 32GB and 120 GB in 8 GB increments

                \n

                This option requires Linux platform 1.4.0 or\n later.

                \n
              • \n
              " } }, "memory": { @@ -11558,13 +11597,13 @@ "pidMode": { "target": "com.amazonaws.ecs#PidMode", "traits": { - "smithy.api#documentation": "

              The process namespace to use for the containers in the task. The valid\n values are host or task. On Fargate for\n Linux containers, the only valid value is task. For\n example, monitoring sidecars might need pidMode to access\n information about other containers running in the same task.

              \n

              If host is specified, all containers within the tasks\n that specified the host PID mode on the same container\n instance share the same process namespace with the host Amazon EC2\n instance.

              \n

              If task is specified, all containers within the specified\n task share the same process namespace.

              \n

              If no value is specified, the\n default is a private namespace for each container. For more information,\n see PID settings in the Docker run\n reference.

              \n

              If the host PID mode is used, there's a heightened risk\n of undesired process namespace exposure. For more information, see\n Docker security.

              \n \n

              This parameter is not supported for Windows containers.

              \n
              \n \n

              This parameter is only supported for tasks that are hosted on\n Fargate if the tasks are using platform version 1.4.0 or later\n (Linux). This isn't supported for Windows containers on\n Fargate.

              \n
              " + "smithy.api#documentation": "

              The process namespace to use for the containers in the task. The valid\n values are host or task. On Fargate for\n Linux containers, the only valid value is task. For\n example, monitoring sidecars might need pidMode to access\n information about other containers running in the same task.

              \n

              If host is specified, all containers within the tasks\n that specified the host PID mode on the same container\n instance share the same process namespace with the host Amazon EC2\n instance.

              \n

              If task is specified, all containers within the specified\n task share the same process namespace.

              \n

              If no value is specified, the\n default is a private namespace for each container.

              \n

              If the host PID mode is used, there's a heightened risk\n of undesired process namespace exposure.

              \n \n

              This parameter is not supported for Windows containers.

              \n
              \n \n

              This parameter is only supported for tasks that are hosted on\n Fargate if the tasks are using platform version 1.4.0 or later\n (Linux). This isn't supported for Windows containers on\n Fargate.

              \n
              " } }, "ipcMode": { "target": "com.amazonaws.ecs#IpcMode", "traits": { - "smithy.api#documentation": "

              The IPC resource namespace to use for the containers in the task. The valid values are\n host, task, or none. If host is\n specified, then all containers within the tasks that specified the host IPC\n mode on the same container instance share the same IPC resources with the host Amazon EC2\n instance. If task is specified, all containers within the specified task\n share the same IPC resources. If none is specified, then IPC resources\n within the containers of a task are private and not shared with other containers in a\n task or on the container instance. If no value is specified, then the IPC resource\n namespace sharing depends on the Docker daemon setting on the container instance. For\n more information, see IPC\n settings in the Docker run reference.

              \n

              If the host IPC mode is used, be aware that there is a heightened risk of\n undesired IPC namespace expose. For more information, see Docker\n security.

              \n

              If you are setting namespaced kernel parameters using systemControls for\n the containers in the task, the following will apply to your IPC resource namespace. For\n more information, see System\n Controls in the Amazon Elastic Container Service Developer Guide.

              \n
                \n
              • \n

                For tasks that use the host IPC mode, IPC namespace related\n systemControls are not supported.

                \n
              • \n
              • \n

                For tasks that use the task IPC mode, IPC namespace related\n systemControls will apply to all containers within a\n task.

                \n
              • \n
              \n \n

              This parameter is not supported for Windows containers or tasks run on Fargate.

              \n
              " + "smithy.api#documentation": "

              The IPC resource namespace to use for the containers in the task. The valid values are\n host, task, or none. If host is\n specified, then all containers within the tasks that specified the host IPC\n mode on the same container instance share the same IPC resources with the host Amazon EC2\n instance. If task is specified, all containers within the specified task\n share the same IPC resources. If none is specified, then IPC resources\n within the containers of a task are private and not shared with other containers in a\n task or on the container instance. If no value is specified, then the IPC resource\n namespace sharing depends on the Docker daemon setting on the container instance.

              \n

              If the host IPC mode is used, be aware that there is a heightened risk of\n undesired IPC namespace expose.

              \n

              If you are setting namespaced kernel parameters using systemControls for\n the containers in the task, the following will apply to your IPC resource namespace. For\n more information, see System\n Controls in the Amazon Elastic Container Service Developer Guide.

              \n
                \n
              • \n

                For tasks that use the host IPC mode, IPC namespace related\n systemControls are not supported.

                \n
              • \n
              • \n

                For tasks that use the task IPC mode, IPC namespace related\n systemControls will apply to all containers within a\n task.

                \n
              • \n
              \n \n

              This parameter is not supported for Windows containers or tasks run on Fargate.

              \n
              " } }, "proxyConfiguration": { @@ -11715,13 +11754,13 @@ "target": "com.amazonaws.ecs#Integer", "traits": { "smithy.api#default": 0, - "smithy.api#documentation": "

              The total amount, in GiB, of the ephemeral storage to set for the task. The minimum \t\t\n\t\t\tsupported value is 20 GiB and the maximum supported value is\u2028 200 \n\t\t\tGiB.

              " + "smithy.api#documentation": "

              The total amount, in GiB, of the ephemeral storage to set for the task. The minimum\n\t\t\tsupported value is 20 GiB and the maximum supported value is\u2028\n\t\t\t\t200 GiB.

              " } }, "kmsKeyId": { "target": "com.amazonaws.ecs#String", "traits": { - "smithy.api#documentation": "

              Specify an Key Management Service key ID to encrypt the ephemeral storage for the task.

              " + "smithy.api#documentation": "

              Specify an Key Management Service key ID to encrypt the ephemeral storage for the\n\t\t\ttask.

              " } } }, @@ -12285,7 +12324,7 @@ } }, "traits": { - "smithy.api#documentation": "

              The ulimit settings to pass to the container.

              \n

              Amazon ECS tasks hosted on Fargate use the default\n\t\t\t\t\t\t\tresource limit values set by the operating system with the exception of\n\t\t\t\t\t\t\tthe nofile resource limit parameter which Fargate\n\t\t\t\t\t\t\toverrides. The nofile resource limit sets a restriction on\n\t\t\t\t\t\t\tthe number of open files that a container can use. The default\n\t\t\t\t\t\t\t\tnofile soft limit is 1024 and the default hard limit\n\t\t\t\t\t\t\tis 65535.

              \n

              You can specify the ulimit settings for a container in a task\n\t\t\tdefinition.

              " + "smithy.api#documentation": "

              The ulimit settings to pass to the container.

              \n

              Amazon ECS tasks hosted on Fargate use the default\n\t\t\t\t\t\t\tresource limit values set by the operating system with the exception of\n\t\t\t\t\t\t\tthe nofile resource limit parameter which Fargate\n\t\t\t\t\t\t\toverrides. The nofile resource limit sets a restriction on\n\t\t\t\t\t\t\tthe number of open files that a container can use. The default\n\t\t\t\t\t\t\t\tnofile soft limit is 65535 and the default hard limit\n\t\t\t\t\t\t\tis 65535.

              \n

              You can specify the ulimit settings for a container in a task\n\t\t\tdefinition.

              " } }, "com.amazonaws.ecs#UlimitList": { @@ -12763,7 +12802,7 @@ } ], "traits": { - "smithy.api#documentation": "

              Modifies the status of an Amazon ECS container instance.

              \n

              Once a container instance has reached an ACTIVE state, you can change the\n\t\t\tstatus of a container instance to DRAINING to manually remove an instance\n\t\t\tfrom a cluster, for example to perform system updates, update the Docker daemon, or\n\t\t\tscale down the cluster size.

              \n \n

              A container instance can't be changed to DRAINING until it has\n\t\t\t\treached an ACTIVE status. If the instance is in any other status, an\n\t\t\t\terror will be received.

              \n
              \n

              When you set a container instance to DRAINING, Amazon ECS prevents new tasks\n\t\t\tfrom being scheduled for placement on the container instance and replacement service\n\t\t\ttasks are started on other container instances in the cluster if the resources are\n\t\t\tavailable. Service tasks on the container instance that are in the PENDING\n\t\t\tstate are stopped immediately.

              \n

              Service tasks on the container instance that are in the RUNNING state are\n\t\t\tstopped and replaced according to the service's deployment configuration parameters,\n\t\t\t\tminimumHealthyPercent and maximumPercent. You can change\n\t\t\tthe deployment configuration of your service using UpdateService.

              \n
                \n
              • \n

                If minimumHealthyPercent is below 100%, the scheduler can ignore\n\t\t\t\t\t\tdesiredCount temporarily during task replacement. For example,\n\t\t\t\t\t\tdesiredCount is four tasks, a minimum of 50% allows the\n\t\t\t\t\tscheduler to stop two existing tasks before starting two new tasks. If the\n\t\t\t\t\tminimum is 100%, the service scheduler can't remove existing tasks until the\n\t\t\t\t\treplacement tasks are considered healthy. Tasks for services that do not use a\n\t\t\t\t\tload balancer are considered healthy if they're in the RUNNING\n\t\t\t\t\tstate. Tasks for services that use a load balancer are considered healthy if\n\t\t\t\t\tthey're in the RUNNING state and are reported as healthy by the\n\t\t\t\t\tload balancer.

                \n
              • \n
              • \n

                The maximumPercent parameter represents an upper limit on the\n\t\t\t\t\tnumber of running tasks during task replacement. You can use this to define the\n\t\t\t\t\treplacement batch size. For example, if desiredCount is four tasks,\n\t\t\t\t\ta maximum of 200% starts four new tasks before stopping the four tasks to be\n\t\t\t\t\tdrained, provided that the cluster resources required to do this are available.\n\t\t\t\t\tIf the maximum is 100%, then replacement tasks can't start until the draining\n\t\t\t\t\ttasks have stopped.

                \n
              • \n
              \n

              Any PENDING or RUNNING tasks that do not belong to a service\n\t\t\taren't affected. You must wait for them to finish or stop them manually.

              \n

              A container instance has completed draining when it has no more RUNNING\n\t\t\ttasks. You can verify this using ListTasks.

              \n

              When a container instance has been drained, you can set a container instance to\n\t\t\t\tACTIVE status and once it has reached that status the Amazon ECS scheduler\n\t\t\tcan begin scheduling tasks on the instance again.

              " + "smithy.api#documentation": "

              Modifies the status of an Amazon ECS container instance.

              \n

              Once a container instance has reached an ACTIVE state, you can change the\n\t\t\tstatus of a container instance to DRAINING to manually remove an instance\n\t\t\tfrom a cluster, for example to perform system updates, update the Docker daemon, or\n\t\t\tscale down the cluster size.

              \n \n

              A container instance can't be changed to DRAINING until it has\n\t\t\t\treached an ACTIVE status. If the instance is in any other status, an\n\t\t\t\terror will be received.

              \n
              \n

              When you set a container instance to DRAINING, Amazon ECS prevents new tasks\n\t\t\tfrom being scheduled for placement on the container instance and replacement service\n\t\t\ttasks are started on other container instances in the cluster if the resources are\n\t\t\tavailable. Service tasks on the container instance that are in the PENDING\n\t\t\tstate are stopped immediately.

              \n

              Service tasks on the container instance that are in the RUNNING state are\n\t\t\tstopped and replaced according to the service's deployment configuration parameters,\n\t\t\t\tminimumHealthyPercent and maximumPercent. You can change\n\t\t\tthe deployment configuration of your service using UpdateService.

              \n
                \n
              • \n

                If minimumHealthyPercent is below 100%, the scheduler can ignore\n\t\t\t\t\t\tdesiredCount temporarily during task replacement. For example,\n\t\t\t\t\t\tdesiredCount is four tasks, a minimum of 50% allows the\n\t\t\t\t\tscheduler to stop two existing tasks before starting two new tasks. If the\n\t\t\t\t\tminimum is 100%, the service scheduler can't remove existing tasks until the\n\t\t\t\t\treplacement tasks are considered healthy. Tasks for services that do not use a\n\t\t\t\t\tload balancer are considered healthy if they're in the RUNNING\n\t\t\t\t\tstate. Tasks for services that use a load balancer are considered healthy if\n\t\t\t\t\tthey're in the RUNNING state and are reported as healthy by the\n\t\t\t\t\tload balancer.

                \n
              • \n
              • \n

                The maximumPercent parameter represents an upper limit on the\n\t\t\t\t\tnumber of running tasks during task replacement. You can use this to define the\n\t\t\t\t\treplacement batch size. For example, if desiredCount is four tasks,\n\t\t\t\t\ta maximum of 200% starts four new tasks before stopping the four tasks to be\n\t\t\t\t\tdrained, provided that the cluster resources required to do this are available.\n\t\t\t\t\tIf the maximum is 100%, then replacement tasks can't start until the draining\n\t\t\t\t\ttasks have stopped.

                \n
              • \n
              \n

              Any PENDING or RUNNING tasks that do not belong to a service\n\t\t\taren't affected. You must wait for them to finish or stop them manually.

              \n

              A container instance has completed draining when it has no more RUNNING\n\t\t\ttasks. You can verify this using ListTasks.

              \n

              When a container instance has been drained, you can set a container instance to\n\t\t\t\tACTIVE status and once it has reached that status the Amazon ECS scheduler\n\t\t\tcan begin scheduling tasks on the instance again.

              " } }, "com.amazonaws.ecs#UpdateContainerInstancesStateRequest": { From 2e20e9570ac51a8eb820f0124bada8e2b5d6bca7 Mon Sep 17 00:00:00 2001 From: awstools Date: Thu, 15 Aug 2024 18:16:05 +0000 Subject: [PATCH 5/9] feat(client-iam): Make the LastUsedDate field in the GetAccessKeyLastUsed response optional. This may break customers who only call the API for access keys with a valid LastUsedDate. This fixes a deserialization issue for access keys without a LastUsedDate, because the field was marked as required but could be null. --- .../commands/CreateOpenIDConnectProviderCommand.ts | 14 +++++++------- .../src/commands/GetAccessKeyLastUsedCommand.ts | 2 +- .../src/commands/ListAccountAliasesCommand.ts | 6 +++--- ...UpdateOpenIDConnectProviderThumbprintCommand.ts | 11 +++++------ clients/client-iam/src/models/models_0.ts | 5 +++-- codegen/sdk-codegen/aws-models/iam.json | 11 +++++------ 6 files changed, 24 insertions(+), 25 deletions(-) diff --git a/clients/client-iam/src/commands/CreateOpenIDConnectProviderCommand.ts b/clients/client-iam/src/commands/CreateOpenIDConnectProviderCommand.ts index d5ae3cda66c18..23e2ac37ba495 100644 --- a/clients/client-iam/src/commands/CreateOpenIDConnectProviderCommand.ts +++ b/clients/client-iam/src/commands/CreateOpenIDConnectProviderCommand.ts @@ -60,12 +60,11 @@ export interface CreateOpenIDConnectProviderCommandOutput *

              You get all of this information from the OIDC IdP you want to use to access * Amazon Web Services.

              * - *

              Amazon Web Services secures communication with some OIDC identity providers (IdPs) through our library - * of trusted root certificate authorities (CAs) instead of using a certificate thumbprint to - * verify your IdP server certificate. In these cases, your legacy thumbprint remains in your - * configuration, but is no longer used for validation. These OIDC IdPs include Auth0, GitHub, - * GitLab, Google, and those that use an Amazon S3 bucket to host a JSON Web Key Set (JWKS) - * endpoint.

              + *

              Amazon Web Services secures communication with OIDC identity providers (IdPs) using our library of + * trusted root certificate authorities (CAs) to verify the JSON Web Key Set (JWKS) + * endpoint's TLS certificate. If your OIDC IdP relies on a certificate that is not signed + * by one of these trusted CAs, only then we secure communication using the thumbprints set + * in the IdP's configuration.

              *
              * *

              The trust for the OIDC provider is derived from the IAM provider that this @@ -130,7 +129,8 @@ export interface CreateOpenIDConnectProviderCommandOutput * Amazon Web Services account limits. The error message describes the limit exceeded.

              * * @throws {@link OpenIdIdpCommunicationErrorException} (client fault) - *

              The request failed because IAM cannot connect to the OpenID Connect identity provider URL.

              + *

              The request failed because IAM cannot connect to the OpenID Connect identity provider + * URL.

              * * @throws {@link ServiceFailureException} (server fault) *

              The request processing has failed because of an unknown error, exception or diff --git a/clients/client-iam/src/commands/GetAccessKeyLastUsedCommand.ts b/clients/client-iam/src/commands/GetAccessKeyLastUsedCommand.ts index 2345381e7b719..f2cc205e3360f 100644 --- a/clients/client-iam/src/commands/GetAccessKeyLastUsedCommand.ts +++ b/clients/client-iam/src/commands/GetAccessKeyLastUsedCommand.ts @@ -45,7 +45,7 @@ export interface GetAccessKeyLastUsedCommandOutput extends GetAccessKeyLastUsedR * // { // GetAccessKeyLastUsedResponse * // UserName: "STRING_VALUE", * // AccessKeyLastUsed: { // AccessKeyLastUsed - * // LastUsedDate: new Date("TIMESTAMP"), // required + * // LastUsedDate: new Date("TIMESTAMP"), * // ServiceName: "STRING_VALUE", // required * // Region: "STRING_VALUE", // required * // }, diff --git a/clients/client-iam/src/commands/ListAccountAliasesCommand.ts b/clients/client-iam/src/commands/ListAccountAliasesCommand.ts index ce217ad0570dc..128bef0eb5b96 100644 --- a/clients/client-iam/src/commands/ListAccountAliasesCommand.ts +++ b/clients/client-iam/src/commands/ListAccountAliasesCommand.ts @@ -29,9 +29,9 @@ export interface ListAccountAliasesCommandOutput extends ListAccountAliasesRespo /** *

              Lists the account alias associated with the Amazon Web Services account (Note: you can have only - * one). For information about using an Amazon Web Services account alias, see Creating, - * deleting, and listing an Amazon Web Services account alias in the Amazon Web Services Sign-In - * User Guide.

              + * one). For information about using an Amazon Web Services account alias, see Creating, + * deleting, and listing an Amazon Web Services account alias in the + * IAM User Guide.

              * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-iam/src/commands/UpdateOpenIDConnectProviderThumbprintCommand.ts b/clients/client-iam/src/commands/UpdateOpenIDConnectProviderThumbprintCommand.ts index b5daab0fd8e5e..46756beaa6dc4 100644 --- a/clients/client-iam/src/commands/UpdateOpenIDConnectProviderThumbprintCommand.ts +++ b/clients/client-iam/src/commands/UpdateOpenIDConnectProviderThumbprintCommand.ts @@ -42,12 +42,11 @@ export interface UpdateOpenIDConnectProviderThumbprintCommandOutput extends __Me * the OIDC provider as a principal fails until the certificate thumbprint is * updated.

              * - *

              Amazon Web Services secures communication with some OIDC identity providers (IdPs) through our library - * of trusted root certificate authorities (CAs) instead of using a certificate thumbprint to - * verify your IdP server certificate. In these cases, your legacy thumbprint remains in your - * configuration, but is no longer used for validation. These OIDC IdPs include Auth0, GitHub, - * GitLab, Google, and those that use an Amazon S3 bucket to host a JSON Web Key Set (JWKS) - * endpoint.

              + *

              Amazon Web Services secures communication with OIDC identity providers (IdPs) using our library of + * trusted root certificate authorities (CAs) to verify the JSON Web Key Set (JWKS) + * endpoint's TLS certificate. If your OIDC IdP relies on a certificate that is not signed + * by one of these trusted CAs, only then we secure communication using the thumbprints set + * in the IdP's configuration.

              *
              * *

              Trust for the OIDC provider is derived from the provider certificate and is diff --git a/clients/client-iam/src/models/models_0.ts b/clients/client-iam/src/models/models_0.ts index d23544cc72b6e..66600fed67733 100644 --- a/clients/client-iam/src/models/models_0.ts +++ b/clients/client-iam/src/models/models_0.ts @@ -163,7 +163,7 @@ export interface AccessKeyLastUsed { *

            * @public */ - LastUsedDate: Date | undefined; + LastUsedDate?: Date; /** *

            The name of the Amazon Web Services service with which this access key was most recently used. The @@ -1275,7 +1275,8 @@ export interface CreateOpenIDConnectProviderResponse { } /** - *

            The request failed because IAM cannot connect to the OpenID Connect identity provider URL.

            + *

            The request failed because IAM cannot connect to the OpenID Connect identity provider + * URL.

            * @public */ export class OpenIdIdpCommunicationErrorException extends __BaseException { diff --git a/codegen/sdk-codegen/aws-models/iam.json b/codegen/sdk-codegen/aws-models/iam.json index e4a96f301e40d..a868a045d15fa 100644 --- a/codegen/sdk-codegen/aws-models/iam.json +++ b/codegen/sdk-codegen/aws-models/iam.json @@ -1995,8 +1995,7 @@ "LastUsedDate": { "target": "com.amazonaws.iam#dateType", "traits": { - "smithy.api#documentation": "

            The date and time, in ISO 8601 date-time\n format, when the access key was most recently used. This field is null in the\n following situations:

            \n
              \n
            • \n

              The user does not have an access key.

              \n
            • \n
            • \n

              An access key exists but has not been used since IAM began tracking this\n information.

              \n
            • \n
            • \n

              There is no sign-in data associated with the user.

              \n
            • \n
            ", - "smithy.api#required": {} + "smithy.api#documentation": "

            The date and time, in ISO 8601 date-time\n format, when the access key was most recently used. This field is null in the\n following situations:

            \n
              \n
            • \n

              The user does not have an access key.

              \n
            • \n
            • \n

              An access key exists but has not been used since IAM began tracking this\n information.

              \n
            • \n
            • \n

              There is no sign-in data associated with the user.

              \n
            • \n
            " } }, "ServiceName": { @@ -3140,7 +3139,7 @@ } ], "traits": { - "smithy.api#documentation": "

            Creates an IAM entity to describe an identity provider (IdP) that supports OpenID Connect (OIDC).

            \n

            The OIDC provider that you create with this operation can be used as a principal in a\n role's trust policy. Such a policy establishes a trust relationship between Amazon Web Services and\n the OIDC provider.

            \n

            If you are using an OIDC identity provider from Google, Facebook, or Amazon Cognito, you don't\n need to create a separate IAM identity provider. These OIDC identity providers are\n already built-in to Amazon Web Services and are available for your use. Instead, you can move directly\n to creating new roles using your identity provider. To learn more, see Creating\n a role for web identity or OpenID connect federation in the IAM\n User Guide.

            \n

            When you create the IAM OIDC provider, you specify the following:

            \n
              \n
            • \n

              The URL of the OIDC identity provider (IdP) to trust

              \n
            • \n
            • \n

              A list of client IDs (also known as audiences) that identify the application\n or applications allowed to authenticate using the OIDC provider

              \n
            • \n
            • \n

              A list of tags that are attached to the specified IAM OIDC provider

              \n
            • \n
            • \n

              A list of thumbprints of one or more server certificates that the IdP\n uses

              \n
            • \n
            \n

            You get all of this information from the OIDC IdP you want to use to access\n Amazon Web Services.

            \n \n

            Amazon Web Services secures communication with some OIDC identity providers (IdPs) through our library\n of trusted root certificate authorities (CAs) instead of using a certificate thumbprint to\n verify your IdP server certificate. In these cases, your legacy thumbprint remains in your\n configuration, but is no longer used for validation. These OIDC IdPs include Auth0, GitHub,\n GitLab, Google, and those that use an Amazon S3 bucket to host a JSON Web Key Set (JWKS)\n endpoint.

            \n
            \n \n

            The trust for the OIDC provider is derived from the IAM provider that this\n operation creates. Therefore, it is best to limit access to the CreateOpenIDConnectProvider operation to highly privileged\n users.

            \n
            ", + "smithy.api#documentation": "

            Creates an IAM entity to describe an identity provider (IdP) that supports OpenID Connect (OIDC).

            \n

            The OIDC provider that you create with this operation can be used as a principal in a\n role's trust policy. Such a policy establishes a trust relationship between Amazon Web Services and\n the OIDC provider.

            \n

            If you are using an OIDC identity provider from Google, Facebook, or Amazon Cognito, you don't\n need to create a separate IAM identity provider. These OIDC identity providers are\n already built-in to Amazon Web Services and are available for your use. Instead, you can move directly\n to creating new roles using your identity provider. To learn more, see Creating\n a role for web identity or OpenID connect federation in the IAM\n User Guide.

            \n

            When you create the IAM OIDC provider, you specify the following:

            \n
              \n
            • \n

              The URL of the OIDC identity provider (IdP) to trust

              \n
            • \n
            • \n

              A list of client IDs (also known as audiences) that identify the application\n or applications allowed to authenticate using the OIDC provider

              \n
            • \n
            • \n

              A list of tags that are attached to the specified IAM OIDC provider

              \n
            • \n
            • \n

              A list of thumbprints of one or more server certificates that the IdP\n uses

              \n
            • \n
            \n

            You get all of this information from the OIDC IdP you want to use to access\n Amazon Web Services.

            \n \n

            Amazon Web Services secures communication with OIDC identity providers (IdPs) using our library of\n trusted root certificate authorities (CAs) to verify the JSON Web Key Set (JWKS)\n endpoint's TLS certificate. If your OIDC IdP relies on a certificate that is not signed\n by one of these trusted CAs, only then we secure communication using the thumbprints set\n in the IdP's configuration.

            \n
            \n \n

            The trust for the OIDC provider is derived from the IAM provider that this\n operation creates. Therefore, it is best to limit access to the CreateOpenIDConnectProvider operation to highly privileged\n users.

            \n
            ", "smithy.api#examples": [ { "title": "To create an instance profile", @@ -8215,7 +8214,7 @@ } ], "traits": { - "smithy.api#documentation": "

            Lists the account alias associated with the Amazon Web Services account (Note: you can have only\n one). For information about using an Amazon Web Services account alias, see Creating,\n deleting, and listing an Amazon Web Services account alias in the Amazon Web Services Sign-In\n User Guide.

            ", + "smithy.api#documentation": "

            Lists the account alias associated with the Amazon Web Services account (Note: you can have only\n one). For information about using an Amazon Web Services account alias, see Creating,\n deleting, and listing an Amazon Web Services account alias in the\n IAM User Guide.

            ", "smithy.api#examples": [ { "title": "To list account aliases", @@ -11310,7 +11309,7 @@ "code": "OpenIdIdpCommunicationError", "httpResponseCode": 400 }, - "smithy.api#documentation": "

            The request failed because IAM cannot connect to the OpenID Connect identity provider URL.

            ", + "smithy.api#documentation": "

            The request failed because IAM cannot connect to the OpenID Connect identity provider\n URL.

            ", "smithy.api#error": "client", "smithy.api#httpError": 400 } @@ -14924,7 +14923,7 @@ } ], "traits": { - "smithy.api#documentation": "

            Replaces the existing list of server certificate thumbprints associated with an OpenID\n Connect (OIDC) provider resource object with a new list of thumbprints.

            \n

            The list that you pass with this operation completely replaces the existing list of\n thumbprints. (The lists are not merged.)

            \n

            Typically, you need to update a thumbprint only when the identity provider certificate\n changes, which occurs rarely. However, if the provider's certificate\n does change, any attempt to assume an IAM role that specifies\n the OIDC provider as a principal fails until the certificate thumbprint is\n updated.

            \n \n

            Amazon Web Services secures communication with some OIDC identity providers (IdPs) through our library\n of trusted root certificate authorities (CAs) instead of using a certificate thumbprint to\n verify your IdP server certificate. In these cases, your legacy thumbprint remains in your\n configuration, but is no longer used for validation. These OIDC IdPs include Auth0, GitHub,\n GitLab, Google, and those that use an Amazon S3 bucket to host a JSON Web Key Set (JWKS)\n endpoint.

            \n
            \n \n

            Trust for the OIDC provider is derived from the provider certificate and is\n validated by the thumbprint. Therefore, it is best to limit access to the\n UpdateOpenIDConnectProviderThumbprint operation to highly\n privileged users.

            \n
            " + "smithy.api#documentation": "

            Replaces the existing list of server certificate thumbprints associated with an OpenID\n Connect (OIDC) provider resource object with a new list of thumbprints.

            \n

            The list that you pass with this operation completely replaces the existing list of\n thumbprints. (The lists are not merged.)

            \n

            Typically, you need to update a thumbprint only when the identity provider certificate\n changes, which occurs rarely. However, if the provider's certificate\n does change, any attempt to assume an IAM role that specifies\n the OIDC provider as a principal fails until the certificate thumbprint is\n updated.

            \n \n

            Amazon Web Services secures communication with OIDC identity providers (IdPs) using our library of\n trusted root certificate authorities (CAs) to verify the JSON Web Key Set (JWKS)\n endpoint's TLS certificate. If your OIDC IdP relies on a certificate that is not signed\n by one of these trusted CAs, only then we secure communication using the thumbprints set\n in the IdP's configuration.

            \n
            \n \n

            Trust for the OIDC provider is derived from the provider certificate and is\n validated by the thumbprint. Therefore, it is best to limit access to the\n UpdateOpenIDConnectProviderThumbprint operation to highly\n privileged users.

            \n
            " } }, "com.amazonaws.iam#UpdateOpenIDConnectProviderThumbprintRequest": { From 62c6973ca51b710f11b96e1a9e170ac9e489b58f Mon Sep 17 00:00:00 2001 From: awstools Date: Thu, 15 Aug 2024 18:16:05 +0000 Subject: [PATCH 6/9] feat(client-docdb): This release adds Global Cluster Failover capability which enables you to change your global cluster's primary AWS region, the region that serves writes, during a regional outage. Performing a failover action preserves your Global Cluster setup. --- clients/client-docdb/README.md | 8 ++ clients/client-docdb/src/DocDB.ts | 23 ++++ clients/client-docdb/src/DocDBClient.ts | 6 + .../commands/FailoverGlobalClusterCommand.ts | 120 ++++++++++++++++++ clients/client-docdb/src/commands/index.ts | 1 + clients/client-docdb/src/models/models_0.ts | 78 ++++++++++++ .../client-docdb/src/protocols/Aws_query.ts | 77 +++++++++++ codegen/sdk-codegen/aws-models/docdb.json | 88 ++++++++++++- 8 files changed, 400 insertions(+), 1 deletion(-) create mode 100644 clients/client-docdb/src/commands/FailoverGlobalClusterCommand.ts diff --git a/clients/client-docdb/README.md b/clients/client-docdb/README.md index 316906de7d3f9..c95621bdd9103 100644 --- a/clients/client-docdb/README.md +++ b/clients/client-docdb/README.md @@ -492,6 +492,14 @@ FailoverDBCluster [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/docdb/command/FailoverDBClusterCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-docdb/Interface/FailoverDBClusterCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-docdb/Interface/FailoverDBClusterCommandOutput/) + +
            + +FailoverGlobalCluster + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/docdb/command/FailoverGlobalClusterCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-docdb/Interface/FailoverGlobalClusterCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-docdb/Interface/FailoverGlobalClusterCommandOutput/) +
            diff --git a/clients/client-docdb/src/DocDB.ts b/clients/client-docdb/src/DocDB.ts index da859b0142ed8..2e96c298ff380 100644 --- a/clients/client-docdb/src/DocDB.ts +++ b/clients/client-docdb/src/DocDB.ts @@ -182,6 +182,11 @@ import { FailoverDBClusterCommandInput, FailoverDBClusterCommandOutput, } from "./commands/FailoverDBClusterCommand"; +import { + FailoverGlobalClusterCommand, + FailoverGlobalClusterCommandInput, + FailoverGlobalClusterCommandOutput, +} from "./commands/FailoverGlobalClusterCommand"; import { ListTagsForResourceCommand, ListTagsForResourceCommandInput, @@ -311,6 +316,7 @@ const commands = { DescribeOrderableDBInstanceOptionsCommand, DescribePendingMaintenanceActionsCommand, FailoverDBClusterCommand, + FailoverGlobalClusterCommand, ListTagsForResourceCommand, ModifyDBClusterCommand, ModifyDBClusterParameterGroupCommand, @@ -948,6 +954,23 @@ export interface DocDB { cb: (err: any, data?: FailoverDBClusterCommandOutput) => void ): void; + /** + * @see {@link FailoverGlobalClusterCommand} + */ + failoverGlobalCluster( + args: FailoverGlobalClusterCommandInput, + options?: __HttpHandlerOptions + ): Promise; + failoverGlobalCluster( + args: FailoverGlobalClusterCommandInput, + cb: (err: any, data?: FailoverGlobalClusterCommandOutput) => void + ): void; + failoverGlobalCluster( + args: FailoverGlobalClusterCommandInput, + options: __HttpHandlerOptions, + cb: (err: any, data?: FailoverGlobalClusterCommandOutput) => void + ): void; + /** * @see {@link ListTagsForResourceCommand} */ diff --git a/clients/client-docdb/src/DocDBClient.ts b/clients/client-docdb/src/DocDBClient.ts index 6b0772078d0ee..3162ec99e4844 100644 --- a/clients/client-docdb/src/DocDBClient.ts +++ b/clients/client-docdb/src/DocDBClient.ts @@ -173,6 +173,10 @@ import { DescribePendingMaintenanceActionsCommandOutput, } from "./commands/DescribePendingMaintenanceActionsCommand"; import { FailoverDBClusterCommandInput, FailoverDBClusterCommandOutput } from "./commands/FailoverDBClusterCommand"; +import { + FailoverGlobalClusterCommandInput, + FailoverGlobalClusterCommandOutput, +} from "./commands/FailoverGlobalClusterCommand"; import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, @@ -281,6 +285,7 @@ export type ServiceInputTypes = | DescribeOrderableDBInstanceOptionsCommandInput | DescribePendingMaintenanceActionsCommandInput | FailoverDBClusterCommandInput + | FailoverGlobalClusterCommandInput | ListTagsForResourceCommandInput | ModifyDBClusterCommandInput | ModifyDBClusterParameterGroupCommandInput @@ -340,6 +345,7 @@ export type ServiceOutputTypes = | DescribeOrderableDBInstanceOptionsCommandOutput | DescribePendingMaintenanceActionsCommandOutput | FailoverDBClusterCommandOutput + | FailoverGlobalClusterCommandOutput | ListTagsForResourceCommandOutput | ModifyDBClusterCommandOutput | ModifyDBClusterParameterGroupCommandOutput diff --git a/clients/client-docdb/src/commands/FailoverGlobalClusterCommand.ts b/clients/client-docdb/src/commands/FailoverGlobalClusterCommand.ts new file mode 100644 index 0000000000000..36846e22dafae --- /dev/null +++ b/clients/client-docdb/src/commands/FailoverGlobalClusterCommand.ts @@ -0,0 +1,120 @@ +// smithy-typescript generated code +import { getEndpointPlugin } from "@smithy/middleware-endpoint"; +import { getSerdePlugin } from "@smithy/middleware-serde"; +import { Command as $Command } from "@smithy/smithy-client"; +import { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import { commonParams } from "../endpoint/EndpointParameters"; +import { FailoverGlobalClusterMessage, FailoverGlobalClusterResult } from "../models/models_0"; +import { de_FailoverGlobalClusterCommand, se_FailoverGlobalClusterCommand } from "../protocols/Aws_query"; + +/** + * @public + */ +export type { __MetadataBearer }; +export { $Command }; +/** + * @public + * + * The input for {@link FailoverGlobalClusterCommand}. + */ +export interface FailoverGlobalClusterCommandInput extends FailoverGlobalClusterMessage {} +/** + * @public + * + * The output of {@link FailoverGlobalClusterCommand}. + */ +export interface FailoverGlobalClusterCommandOutput extends FailoverGlobalClusterResult, __MetadataBearer {} + +/** + *

            Promotes the specified secondary DB cluster to be the primary DB cluster in the global cluster when failing over a global cluster occurs.

            + *

            Use this operation to respond to an unplanned event, such as a regional disaster in the primary region. + * Failing over can result in a loss of write transaction data that wasn't replicated to the chosen secondary before the failover event occurred. + * However, the recovery process that promotes a DB instance on the chosen seconday DB cluster to be the primary writer DB instance guarantees that the data is in a transactionally consistent state.

            + * @example + * Use a bare-bones client and the command you need to make an API call. + * ```javascript + * import { DocDBClient, FailoverGlobalClusterCommand } from "@aws-sdk/client-docdb"; // ES Modules import + * // const { DocDBClient, FailoverGlobalClusterCommand } = require("@aws-sdk/client-docdb"); // CommonJS import + * const client = new DocDBClient(config); + * const input = { // FailoverGlobalClusterMessage + * GlobalClusterIdentifier: "STRING_VALUE", // required + * TargetDbClusterIdentifier: "STRING_VALUE", // required + * AllowDataLoss: true || false, + * Switchover: true || false, + * }; + * const command = new FailoverGlobalClusterCommand(input); + * const response = await client.send(command); + * // { // FailoverGlobalClusterResult + * // GlobalCluster: { // GlobalCluster + * // GlobalClusterIdentifier: "STRING_VALUE", + * // GlobalClusterResourceId: "STRING_VALUE", + * // GlobalClusterArn: "STRING_VALUE", + * // Status: "STRING_VALUE", + * // Engine: "STRING_VALUE", + * // EngineVersion: "STRING_VALUE", + * // DatabaseName: "STRING_VALUE", + * // StorageEncrypted: true || false, + * // DeletionProtection: true || false, + * // GlobalClusterMembers: [ // GlobalClusterMemberList + * // { // GlobalClusterMember + * // DBClusterArn: "STRING_VALUE", + * // Readers: [ // ReadersArnList + * // "STRING_VALUE", + * // ], + * // IsWriter: true || false, + * // }, + * // ], + * // }, + * // }; + * + * ``` + * + * @param FailoverGlobalClusterCommandInput - {@link FailoverGlobalClusterCommandInput} + * @returns {@link FailoverGlobalClusterCommandOutput} + * @see {@link FailoverGlobalClusterCommandInput} for command's `input` shape. + * @see {@link FailoverGlobalClusterCommandOutput} for command's `response` shape. + * @see {@link DocDBClientResolvedConfig | config} for DocDBClient's `config` shape. + * + * @throws {@link DBClusterNotFoundFault} (client fault) + *

            + * DBClusterIdentifier doesn't refer to an existing cluster.

            + * + * @throws {@link GlobalClusterNotFoundFault} (client fault) + *

            The GlobalClusterIdentifier doesn't refer to an existing global cluster.

            + * + * @throws {@link InvalidDBClusterStateFault} (client fault) + *

            The cluster isn't in a valid state.

            + * + * @throws {@link InvalidGlobalClusterStateFault} (client fault) + *

            The requested operation can't be performed while the cluster is in this state.

            + * + * @throws {@link DocDBServiceException} + *

            Base exception class for all service exceptions from DocDB service.

            + * + * @public + */ +export class FailoverGlobalClusterCommand extends $Command + .classBuilder< + FailoverGlobalClusterCommandInput, + FailoverGlobalClusterCommandOutput, + DocDBClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes + >() + .ep({ + ...commonParams, + }) + .m(function (this: any, Command: any, cs: any, config: DocDBClientResolvedConfig, o: any) { + return [ + getSerdePlugin(config, this.serialize, this.deserialize), + getEndpointPlugin(config, Command.getEndpointParameterInstructions()), + ]; + }) + .s("AmazonRDSv19", "FailoverGlobalCluster", {}) + .n("DocDBClient", "FailoverGlobalClusterCommand") + .f(void 0, void 0) + .ser(se_FailoverGlobalClusterCommand) + .de(de_FailoverGlobalClusterCommand) + .build() {} diff --git a/clients/client-docdb/src/commands/index.ts b/clients/client-docdb/src/commands/index.ts index 2ca263b6e8e5b..cc18a32e36b6a 100644 --- a/clients/client-docdb/src/commands/index.ts +++ b/clients/client-docdb/src/commands/index.ts @@ -35,6 +35,7 @@ export * from "./DescribeGlobalClustersCommand"; export * from "./DescribeOrderableDBInstanceOptionsCommand"; export * from "./DescribePendingMaintenanceActionsCommand"; export * from "./FailoverDBClusterCommand"; +export * from "./FailoverGlobalClusterCommand"; export * from "./ListTagsForResourceCommand"; export * from "./ModifyDBClusterCommand"; export * from "./ModifyDBClusterParameterGroupCommand"; diff --git a/clients/client-docdb/src/models/models_0.ts b/clients/client-docdb/src/models/models_0.ts index 4b55f9cb94d9d..963ffcc710bf0 100644 --- a/clients/client-docdb/src/models/models_0.ts +++ b/clients/client-docdb/src/models/models_0.ts @@ -5041,6 +5041,84 @@ export interface FailoverDBClusterResult { DBCluster?: DBCluster; } +/** + * @public + */ +export interface FailoverGlobalClusterMessage { + /** + *

            The identifier of the Amazon DocumentDB global cluster to apply this operation. + * The identifier is the unique key assigned by the user when the cluster is created. + * In other words, it's the name of the global cluster.

            + *

            Constraints:

            + *
              + *
            • + *

              Must match the identifier of an existing global cluster.

              + *
            • + *
            • + *

              Minimum length of 1. Maximum length of 255.

              + *
            • + *
            + *

            Pattern: [A-Za-z][0-9A-Za-z-:._]* + *

            + * @public + */ + GlobalClusterIdentifier: string | undefined; + + /** + *

            The identifier of the secondary Amazon DocumentDB cluster that you want to promote to the primary for the global cluster. + * Use the Amazon Resource Name (ARN) for the identifier so that Amazon DocumentDB can locate the cluster in its Amazon Web Services region.

            + *

            Constraints:

            + *
              + *
            • + *

              Must match the identifier of an existing secondary cluster.

              + *
            • + *
            • + *

              Minimum length of 1. Maximum length of 255.

              + *
            • + *
            + *

            Pattern: [A-Za-z][0-9A-Za-z-:._]* + *

            + * @public + */ + TargetDbClusterIdentifier: string | undefined; + + /** + *

            Specifies whether to allow data loss for this global cluster operation. Allowing data loss triggers a global failover operation.

            + *

            If you don't specify AllowDataLoss, the global cluster operation defaults to a switchover.

            + *

            Constraints:

            + *
              + *
            • + *

              Can't be specified together with the Switchover parameter.

              + *
            • + *
            + * @public + */ + AllowDataLoss?: boolean; + + /** + *

            Specifies whether to switch over this global database cluster.

            + *

            Constraints:

            + *
              + *
            • + *

              Can't be specified together with the AllowDataLoss parameter.

              + *
            • + *
            + * @public + */ + Switchover?: boolean; +} + +/** + * @public + */ +export interface FailoverGlobalClusterResult { + /** + *

            A data type representing an Amazon DocumentDB global cluster.

            + * @public + */ + GlobalCluster?: GlobalCluster; +} + /** *

            Represents the input to ListTagsForResource.

            * @public diff --git a/clients/client-docdb/src/protocols/Aws_query.ts b/clients/client-docdb/src/protocols/Aws_query.ts index 0df969084a102..d7960abfa9e06 100644 --- a/clients/client-docdb/src/protocols/Aws_query.ts +++ b/clients/client-docdb/src/protocols/Aws_query.ts @@ -141,6 +141,10 @@ import { DescribePendingMaintenanceActionsCommandOutput, } from "../commands/DescribePendingMaintenanceActionsCommand"; import { FailoverDBClusterCommandInput, FailoverDBClusterCommandOutput } from "../commands/FailoverDBClusterCommand"; +import { + FailoverGlobalClusterCommandInput, + FailoverGlobalClusterCommandOutput, +} from "../commands/FailoverGlobalClusterCommand"; import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, @@ -310,6 +314,8 @@ import { EventSubscriptionsMessage, FailoverDBClusterMessage, FailoverDBClusterResult, + FailoverGlobalClusterMessage, + FailoverGlobalClusterResult, Filter, GlobalCluster, GlobalClusterAlreadyExistsFault, @@ -1007,6 +1013,23 @@ export const se_FailoverDBClusterCommand = async ( return buildHttpRpcRequest(context, headers, "/", undefined, body); }; +/** + * serializeAws_queryFailoverGlobalClusterCommand + */ +export const se_FailoverGlobalClusterCommand = async ( + input: FailoverGlobalClusterCommandInput, + context: __SerdeContext +): Promise<__HttpRequest> => { + const headers: __HeaderBag = SHARED_HEADERS; + let body: any; + body = buildFormUrlencodedString({ + ...se_FailoverGlobalClusterMessage(input, context), + [_A]: _FGC, + [_V]: _, + }); + return buildHttpRpcRequest(context, headers, "/", undefined, body); +}; + /** * serializeAws_queryListTagsForResourceCommand */ @@ -2027,6 +2050,26 @@ export const de_FailoverDBClusterCommand = async ( return response; }; +/** + * deserializeAws_queryFailoverGlobalClusterCommand + */ +export const de_FailoverGlobalClusterCommand = async ( + output: __HttpResponse, + context: __SerdeContext +): Promise => { + if (output.statusCode >= 300) { + return de_CommandError(output, context); + } + const data: any = await parseBody(output.body, context); + let contents: any = {}; + contents = de_FailoverGlobalClusterResult(data.FailoverGlobalClusterResult, context); + const response: FailoverGlobalClusterCommandOutput = { + $metadata: deserializeMetadata(output), + ...contents, + }; + return response; +}; + /** * deserializeAws_queryListTagsForResourceCommand */ @@ -4596,6 +4639,26 @@ const se_FailoverDBClusterMessage = (input: FailoverDBClusterMessage, context: _ return entries; }; +/** + * serializeAws_queryFailoverGlobalClusterMessage + */ +const se_FailoverGlobalClusterMessage = (input: FailoverGlobalClusterMessage, context: __SerdeContext): any => { + const entries: any = {}; + if (input[_GCI] != null) { + entries[_GCI] = input[_GCI]; + } + if (input[_TDCI] != null) { + entries[_TDCI] = input[_TDCI]; + } + if (input[_ADL] != null) { + entries[_ADL] = input[_ADL]; + } + if (input[_Sw] != null) { + entries[_Sw] = input[_Sw]; + } + return entries; +}; + /** * serializeAws_queryFilter */ @@ -6899,6 +6962,17 @@ const de_FailoverDBClusterResult = (output: any, context: __SerdeContext): Failo return contents; }; +/** + * deserializeAws_queryFailoverGlobalClusterResult + */ +const de_FailoverGlobalClusterResult = (output: any, context: __SerdeContext): FailoverGlobalClusterResult => { + const contents: any = {}; + if (output[_GC] != null) { + contents[_GC] = de_GlobalCluster(output[_GC], context); + } + return contents; +}; + /** * deserializeAws_queryGlobalCluster */ @@ -8041,6 +8115,7 @@ const _ = "2014-10-31"; const _A = "Action"; const _AA = "ApplyAction"; const _AAAD = "AutoAppliedAfterDate"; +const _ADL = "AllowDataLoss"; const _AI = "ApplyImmediately"; const _AM = "ApplyMethod"; const _AMVU = "AutoMinorVersionUpgrade"; @@ -8183,6 +8258,7 @@ const _FAD = "ForcedApplyDate"; const _FDBC = "FailoverDBCluster"; const _FDBSI = "FinalDBSnapshotIdentifier"; const _FF = "ForceFailover"; +const _FGC = "FailoverGlobalCluster"; const _GC = "GlobalCluster"; const _GCA = "GlobalClusterArn"; const _GCI = "GlobalClusterIdentifier"; @@ -8305,6 +8381,7 @@ const _STta = "StatusType"; const _St = "Status"; const _Su = "Subnets"; const _Sub = "Subnet"; +const _Sw = "Switchover"; const _T = "Tags"; const _TDBCPGD = "TargetDBClusterParameterGroupDescription"; const _TDBCPGI = "TargetDBClusterParameterGroupIdentifier"; diff --git a/codegen/sdk-codegen/aws-models/docdb.json b/codegen/sdk-codegen/aws-models/docdb.json index 68fa905985370..94e7e58a00818 100644 --- a/codegen/sdk-codegen/aws-models/docdb.json +++ b/codegen/sdk-codegen/aws-models/docdb.json @@ -245,6 +245,9 @@ { "target": "com.amazonaws.docdb#FailoverDBCluster" }, + { + "target": "com.amazonaws.docdb#FailoverGlobalCluster" + }, { "target": "com.amazonaws.docdb#ListTagsForResource" }, @@ -2812,6 +2815,16 @@ "smithy.api#httpError": 400 } }, + "com.amazonaws.docdb#DBClusterIdentifier": { + "type": "string", + "traits": { + "smithy.api#length": { + "min": 1, + "max": 255 + }, + "smithy.api#pattern": "^[A-Za-z][0-9A-Za-z-:._]*$" + } + }, "com.amazonaws.docdb#DBClusterList": { "type": "list", "member": { @@ -5763,6 +5776,79 @@ "smithy.api#output": {} } }, + "com.amazonaws.docdb#FailoverGlobalCluster": { + "type": "operation", + "input": { + "target": "com.amazonaws.docdb#FailoverGlobalClusterMessage" + }, + "output": { + "target": "com.amazonaws.docdb#FailoverGlobalClusterResult" + }, + "errors": [ + { + "target": "com.amazonaws.docdb#DBClusterNotFoundFault" + }, + { + "target": "com.amazonaws.docdb#GlobalClusterNotFoundFault" + }, + { + "target": "com.amazonaws.docdb#InvalidDBClusterStateFault" + }, + { + "target": "com.amazonaws.docdb#InvalidGlobalClusterStateFault" + } + ], + "traits": { + "smithy.api#documentation": "

            Promotes the specified secondary DB cluster to be the primary DB cluster in the global cluster when failing over a global cluster occurs.

            \n

            Use this operation to respond to an unplanned event, such as a regional disaster in the primary region. \n Failing over can result in a loss of write transaction data that wasn't replicated to the chosen secondary before the failover event occurred. \n However, the recovery process that promotes a DB instance on the chosen seconday DB cluster to be the primary writer DB instance guarantees that the data is in a transactionally consistent state.

            " + } + }, + "com.amazonaws.docdb#FailoverGlobalClusterMessage": { + "type": "structure", + "members": { + "GlobalClusterIdentifier": { + "target": "com.amazonaws.docdb#GlobalClusterIdentifier", + "traits": { + "smithy.api#clientOptional": {}, + "smithy.api#documentation": "

            The identifier of the Amazon DocumentDB global cluster to apply this operation. \n The identifier is the unique key assigned by the user when the cluster is created. \n In other words, it's the name of the global cluster.

            \n

            Constraints:

            \n
              \n
            • \n

              Must match the identifier of an existing global cluster.

              \n
            • \n
            • \n

              Minimum length of 1. Maximum length of 255.

              \n
            • \n
            \n

            Pattern: [A-Za-z][0-9A-Za-z-:._]*\n

            ", + "smithy.api#required": {} + } + }, + "TargetDbClusterIdentifier": { + "target": "com.amazonaws.docdb#DBClusterIdentifier", + "traits": { + "smithy.api#clientOptional": {}, + "smithy.api#documentation": "

            The identifier of the secondary Amazon DocumentDB cluster that you want to promote to the primary for the global cluster. \n Use the Amazon Resource Name (ARN) for the identifier so that Amazon DocumentDB can locate the cluster in its Amazon Web Services region.

            \n

            Constraints:

            \n
              \n
            • \n

              Must match the identifier of an existing secondary cluster.

              \n
            • \n
            • \n

              Minimum length of 1. Maximum length of 255.

              \n
            • \n
            \n

            Pattern: [A-Za-z][0-9A-Za-z-:._]*\n

            ", + "smithy.api#required": {} + } + }, + "AllowDataLoss": { + "target": "com.amazonaws.docdb#BooleanOptional", + "traits": { + "smithy.api#documentation": "

            Specifies whether to allow data loss for this global cluster operation. Allowing data loss triggers a global failover operation.

            \n

            If you don't specify AllowDataLoss, the global cluster operation defaults to a switchover.

            \n

            Constraints:

            \n
              \n
            • \n

              Can't be specified together with the Switchover parameter.

              \n
            • \n
            " + } + }, + "Switchover": { + "target": "com.amazonaws.docdb#BooleanOptional", + "traits": { + "smithy.api#documentation": "

            Specifies whether to switch over this global database cluster.

            \n

            Constraints:

            \n
              \n
            • \n

              Can't be specified together with the AllowDataLoss parameter.

              \n
            • \n
            " + } + } + }, + "traits": { + "smithy.api#input": {} + } + }, + "com.amazonaws.docdb#FailoverGlobalClusterResult": { + "type": "structure", + "members": { + "GlobalCluster": { + "target": "com.amazonaws.docdb#GlobalCluster" + } + }, + "traits": { + "smithy.api#output": {} + } + }, "com.amazonaws.docdb#Filter": { "type": "structure", "members": { @@ -8441,7 +8527,7 @@ } }, "TargetDbClusterIdentifier": { - "target": "com.amazonaws.docdb#String", + "target": "com.amazonaws.docdb#DBClusterIdentifier", "traits": { "smithy.api#clientOptional": {}, "smithy.api#documentation": "

            The identifier of the secondary Amazon DocumentDB cluster to promote to the new primary for the global database cluster. \n Use the Amazon Resource Name (ARN) for the identifier so that Amazon DocumentDB can locate the cluster in its Amazon Web Services region.

            \n

            Constraints:

            \n
              \n
            • \n

              Must match the identifier of an existing secondary cluster.

              \n
            • \n
            • \n

              Minimum length of 1. Maximum length of 255.

              \n
            • \n
            \n

            Pattern: [A-Za-z][0-9A-Za-z-:._]*\n

            ", From f31c6ea7efbf19998274e65d1cd87380ff21f191 Mon Sep 17 00:00:00 2001 From: awstools Date: Thu, 15 Aug 2024 18:16:05 +0000 Subject: [PATCH 7/9] feat(client-s3): Amazon Simple Storage Service / Features : Adds support for pagination in the S3 ListBuckets API. --- .../commands/AbortMultipartUploadCommand.ts | 20 +- .../src/commands/CopyObjectCommand.ts | 16 +- .../src/commands/HeadBucketCommand.ts | 16 +- .../src/commands/HeadObjectCommand.ts | 15 +- .../src/commands/ListBucketsCommand.ts | 10 +- .../commands/ListMultipartUploadsCommand.ts | 2 + .../src/commands/ListObjectsV2Command.ts | 20 +- .../commands/PutBucketEncryptionCommand.ts | 6 +- .../src/commands/PutBucketPolicyCommand.ts | 2 +- .../commands/PutBucketVersioningCommand.ts | 9 + clients/client-s3/src/models/models_0.ts | 248 +++++++++--------- clients/client-s3/src/models/models_1.ts | 100 ++++++- .../src/pagination/ListBucketsPaginator.ts | 20 ++ clients/client-s3/src/pagination/index.ts | 1 + .../client-s3/src/protocols/Aws_restXml.ts | 7 + codegen/sdk-codegen/aws-models/s3.json | 87 ++++-- 16 files changed, 404 insertions(+), 175 deletions(-) create mode 100644 clients/client-s3/src/pagination/ListBucketsPaginator.ts diff --git a/clients/client-s3/src/commands/AbortMultipartUploadCommand.ts b/clients/client-s3/src/commands/AbortMultipartUploadCommand.ts index b6b276f9ed09c..60c9ce5342dfc 100644 --- a/clients/client-s3/src/commands/AbortMultipartUploadCommand.ts +++ b/clients/client-s3/src/commands/AbortMultipartUploadCommand.ts @@ -39,10 +39,24 @@ export interface AbortMultipartUploadCommandOutput extends AbortMultipartUploadO * storage, you should call the ListParts API operation and ensure that * the parts list is empty.

            * - *

            - * Directory buckets - For directory buckets, you must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com/key-name - * . Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the + *

              + *
            • + *

              + * Directory buckets - + * If multipart uploads in a directory bucket are in progress, you can't delete the bucket until all the in-progress multipart uploads are aborted or completed. + * To delete these in-progress multipart uploads, use the + * ListMultipartUploads operation to list the in-progress multipart + * uploads in the bucket and use the AbortMultupartUpload operation to + * abort all the in-progress multipart uploads. + *

              + *
            • + *
            • + *

              + * Directory buckets - For directory buckets, you must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com/key-name + * . Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the * Amazon S3 User Guide.

              + *
            • + *
            *
            *
            *
            Permissions
            diff --git a/clients/client-s3/src/commands/CopyObjectCommand.ts b/clients/client-s3/src/commands/CopyObjectCommand.ts index be672e32c2513..9463531f5e1e3 100644 --- a/clients/client-s3/src/commands/CopyObjectCommand.ts +++ b/clients/client-s3/src/commands/CopyObjectCommand.ts @@ -46,10 +46,20 @@ export interface CopyObjectCommandOutput extends CopyObjectOutput, __MetadataBea *

            You can copy individual objects between general purpose buckets, between directory buckets, and * between general purpose buckets and directory buckets.

            * - *

            - * Directory buckets - For directory buckets, you must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com/key-name - * . Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the + *

              + *
            • + *

              Amazon S3 supports copy operations using Multi-Region Access Points only as a destination when using the Multi-Region Access Point ARN.

              + *
            • + *
            • + *

              + * Directory buckets - For directory buckets, you must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com/key-name + * . Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the * Amazon S3 User Guide.

              + *
            • + *
            • + *

              VPC endpoints don't support cross-Region requests (including copies). If you're using VPC endpoints, your source and destination buckets should be in the same Amazon Web Services Region as your VPC endpoint.

              + *
            • + *
            *
            *

            Both the * Region that you want to copy the object from and the Region that you want to copy the diff --git a/clients/client-s3/src/commands/HeadBucketCommand.ts b/clients/client-s3/src/commands/HeadBucketCommand.ts index ed54a832204a0..8ee90c4f6747f 100644 --- a/clients/client-s3/src/commands/HeadBucketCommand.ts +++ b/clients/client-s3/src/commands/HeadBucketCommand.ts @@ -31,22 +31,20 @@ export interface HeadBucketCommandOutput extends HeadBucketOutput, __MetadataBea /** *

            You can use this operation to determine if a bucket exists and if you have permission to access it. The action returns a 200 OK if the bucket exists and you have permission * to access it.

            - *

            If the bucket does not exist or you do not have permission to access it, the + * + *

            If the bucket does not exist or you do not have permission to access it, the * HEAD request returns a generic 400 Bad Request, 403 * Forbidden or 404 Not Found code. A message body is not included, so * you cannot determine the exception beyond these HTTP response codes.

            - * - *

            - * Directory buckets - You must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com. Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the - * Amazon S3 User Guide.

            *
            *
            *
            Authentication and authorization
            *
            - *

            All HeadBucket requests must be authenticated and signed by using IAM credentials (access key ID and secret access key for the IAM identities). All headers with the x-amz- prefix, including + *

            + * General purpose buckets - Request to public buckets that grant the s3:ListBucket permission publicly do not need to be signed. All other HeadBucket requests must be authenticated and signed by using IAM credentials (access key ID and secret access key for the IAM identities). All headers with the x-amz- prefix, including * x-amz-copy-source, must be signed. For more information, see REST Authentication.

            *

            - * Directory bucket - You must use IAM credentials to authenticate and authorize your access to the HeadBucket API operation, instead of using the + * Directory buckets - You must use IAM credentials to authenticate and authorize your access to the HeadBucket API operation, instead of using the * temporary security credentials through the CreateSession API operation.

            *

            Amazon Web Services CLI or SDKs handles authentication and authorization on your behalf.

            *
            @@ -77,6 +75,10 @@ export interface HeadBucketCommandOutput extends HeadBucketOutput, __MetadataBea *

            * Directory buckets - The HTTP Host header syntax is * Bucket_name.s3express-az_id.region.amazonaws.com.

            + * + *

            You must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com. Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the + * Amazon S3 User Guide.

            + *
            * *
            * @example diff --git a/clients/client-s3/src/commands/HeadObjectCommand.ts b/clients/client-s3/src/commands/HeadObjectCommand.ts index ce4487a8286ba..37570096072fb 100644 --- a/clients/client-s3/src/commands/HeadObjectCommand.ts +++ b/clients/client-s3/src/commands/HeadObjectCommand.ts @@ -37,20 +37,16 @@ export interface HeadObjectCommandOutput extends HeadObjectOutput, __MetadataBea /** *

            The HEAD operation retrieves metadata from an object without returning the * object itself. This operation is useful if you're interested only in an object's metadata.

            - *

            A HEAD request has the same options as a GET operation on an + * + *

            A HEAD request has the same options as a GET operation on an * object. The response is identical to the GET response except that there is no * response body. Because of this, if the HEAD request generates an error, it * returns a generic code, such as 400 Bad Request, 403 Forbidden, 404 Not * Found, 405 Method Not Allowed, 412 Precondition Failed, or 304 Not Modified. * It's not possible to retrieve the exact exception of these error codes.

            + * *

            Request headers are limited to 8 KB in size. For more information, see Common * Request Headers.

            - * - *

            - * Directory buckets - For directory buckets, you must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com/key-name - * . Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the - * Amazon S3 User Guide.

            - *
            *
            *
            Permissions
            *
            @@ -155,6 +151,11 @@ export interface HeadObjectCommandOutput extends HeadObjectOutput, __MetadataBea *

            * Directory buckets - The HTTP Host header syntax is * Bucket_name.s3express-az_id.region.amazonaws.com.

            + * + *

            For directory buckets, you must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com/key-name + * . Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the + * Amazon S3 User Guide.

            + *
            *
            *
            *

            The following actions are related to HeadObject:

            diff --git a/clients/client-s3/src/commands/ListBucketsCommand.ts b/clients/client-s3/src/commands/ListBucketsCommand.ts index b3b1ca9e7c66c..31b9a01fbb391 100644 --- a/clients/client-s3/src/commands/ListBucketsCommand.ts +++ b/clients/client-s3/src/commands/ListBucketsCommand.ts @@ -6,7 +6,7 @@ import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBucketsOutput } from "../models/models_0"; +import { ListBucketsOutput, ListBucketsRequest } from "../models/models_0"; import { de_ListBucketsCommand, se_ListBucketsCommand } from "../protocols/Aws_restXml"; import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; @@ -20,7 +20,7 @@ export { $Command }; * * The input for {@link ListBucketsCommand}. */ -export interface ListBucketsCommandInput {} +export interface ListBucketsCommandInput extends ListBucketsRequest {} /** * @public * @@ -42,7 +42,10 @@ export interface ListBucketsCommandOutput extends ListBucketsOutput, __MetadataB * import { S3Client, ListBucketsCommand } from "@aws-sdk/client-s3"; // ES Modules import * // const { S3Client, ListBucketsCommand } = require("@aws-sdk/client-s3"); // CommonJS import * const client = new S3Client(config); - * const input = {}; + * const input = { // ListBucketsRequest + * MaxBuckets: Number("int"), + * ContinuationToken: "STRING_VALUE", + * }; * const command = new ListBucketsCommand(input); * const response = await client.send(command); * // { // ListBucketsOutput @@ -56,6 +59,7 @@ export interface ListBucketsCommandOutput extends ListBucketsOutput, __MetadataB * // DisplayName: "STRING_VALUE", * // ID: "STRING_VALUE", * // }, + * // ContinuationToken: "STRING_VALUE", * // }; * * ``` diff --git a/clients/client-s3/src/commands/ListMultipartUploadsCommand.ts b/clients/client-s3/src/commands/ListMultipartUploadsCommand.ts index fe1c25cfa3b80..1f307c5ad48ce 100644 --- a/clients/client-s3/src/commands/ListMultipartUploadsCommand.ts +++ b/clients/client-s3/src/commands/ListMultipartUploadsCommand.ts @@ -36,6 +36,8 @@ export interface ListMultipartUploadsCommandOutput extends ListMultipartUploadsO *

            * Directory buckets - * If multipart uploads in a directory bucket are in progress, you can't delete the bucket until all the in-progress multipart uploads are aborted or completed. + * To delete these in-progress multipart uploads, use the ListMultipartUploads operation to list the in-progress multipart + * uploads in the bucket and use the AbortMultupartUpload operation to abort all the in-progress multipart uploads. *

            * *

            The ListMultipartUploads operation returns a maximum of 1,000 multipart uploads in the response. The limit of 1,000 multipart diff --git a/clients/client-s3/src/commands/ListObjectsV2Command.ts b/clients/client-s3/src/commands/ListObjectsV2Command.ts index a3147b84f0325..4867446cbe07b 100644 --- a/clients/client-s3/src/commands/ListObjectsV2Command.ts +++ b/clients/client-s3/src/commands/ListObjectsV2Command.ts @@ -37,10 +37,24 @@ export interface ListObjectsV2CommandOutput extends ListObjectsV2Output, __Metad * For more information about listing objects, see Listing object keys * programmatically in the Amazon S3 User Guide. To get a list of your buckets, see ListBuckets.

            * - *

            - * Directory buckets - For directory buckets, you must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com/key-name - * . Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the + *

              + *
            • + *

              + * General purpose bucket - For general purpose buckets, ListObjectsV2 doesn't return prefixes that are related only to in-progress multipart uploads.

              + *
            • + *
            • + *

              + * Directory buckets - + * For directory buckets, ListObjectsV2 response includes the prefixes that are related only to in-progress multipart uploads. + *

              + *
            • + *
            • + *

              + * Directory buckets - For directory buckets, you must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com/key-name + * . Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the * Amazon S3 User Guide.

              + *
            • + *
            *
            *
            *
            Permissions
            diff --git a/clients/client-s3/src/commands/PutBucketEncryptionCommand.ts b/clients/client-s3/src/commands/PutBucketEncryptionCommand.ts index ecd16c8564c69..e9bad949f704a 100644 --- a/clients/client-s3/src/commands/PutBucketEncryptionCommand.ts +++ b/clients/client-s3/src/commands/PutBucketEncryptionCommand.ts @@ -41,7 +41,11 @@ export interface PutBucketEncryptionCommandOutput extends __MetadataBearer {} * SSE-KMS, you can also configure Amazon S3 Bucket * Keys. If you use PutBucketEncryption to set your default bucket encryption to SSE-KMS, you should verify that your KMS key ID is correct. Amazon S3 does not validate the KMS key ID provided in PutBucketEncryption requests.

            * - *

            This action requires Amazon Web Services Signature Version 4. For more information, see + *

            If you're specifying a customer managed KMS key, we recommend using a fully qualified + * KMS key ARN. If you use a KMS key alias instead, then KMS resolves the key within the + * requester’s account. This behavior can result in data that's encrypted with a KMS key + * that belongs to the requester, and not the bucket owner.

            + *

            Also, this action requires Amazon Web Services Signature Version 4. For more information, see * Authenticating Requests (Amazon Web Services Signature Version 4).

            *
            *

            To use this operation, you must have permission to perform the diff --git a/clients/client-s3/src/commands/PutBucketPolicyCommand.ts b/clients/client-s3/src/commands/PutBucketPolicyCommand.ts index b27ab54fcd1e5..2999df40bca8e 100644 --- a/clients/client-s3/src/commands/PutBucketPolicyCommand.ts +++ b/clients/client-s3/src/commands/PutBucketPolicyCommand.ts @@ -6,7 +6,7 @@ import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketPolicyRequest } from "../models/models_0"; +import { PutBucketPolicyRequest } from "../models/models_1"; import { de_PutBucketPolicyCommand, se_PutBucketPolicyCommand } from "../protocols/Aws_restXml"; import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; diff --git a/clients/client-s3/src/commands/PutBucketVersioningCommand.ts b/clients/client-s3/src/commands/PutBucketVersioningCommand.ts index ae2ee3230358b..07c539450a1c3 100644 --- a/clients/client-s3/src/commands/PutBucketVersioningCommand.ts +++ b/clients/client-s3/src/commands/PutBucketVersioningCommand.ts @@ -32,6 +32,15 @@ export interface PutBucketVersioningCommandOutput extends __MetadataBearer {} * *

            This operation is not supported by directory buckets.

            * + * + *

            When you enable versioning on a bucket for the first time, it might take a short + * amount of time for the change to be fully propagated. We recommend that you wait for 15 + * minutes after enabling versioning before issuing write operations + * (PUT + * or + * DELETE) + * on objects in the bucket.

            + *
            *

            Sets the versioning state of an existing bucket.

            *

            You can set the versioning state with one of the following values:

            *

            diff --git a/clients/client-s3/src/models/models_0.ts b/clients/client-s3/src/models/models_0.ts index 6f0d5a2a4d225..d4fc5558251be 100644 --- a/clients/client-s3/src/models/models_0.ts +++ b/clients/client-s3/src/models/models_0.ts @@ -6027,6 +6027,12 @@ export interface GetBucketCorsRequest { * with SSE-KMS to a bucket. By default, Amazon S3 uses this KMS key for SSE-KMS. For more * information, see PUT Bucket encryption in * the Amazon S3 API Reference.

            + * + *

            If you're specifying a customer managed KMS key, we recommend using a fully qualified + * KMS key ARN. If you use a KMS key alias instead, then KMS resolves the key within the + * requester’s account. This behavior can result in data that's encrypted with a KMS key + * that belongs to the requester, and not the bucket owner.

            + *
            * @public */ export interface ServerSideEncryptionByDefault { @@ -6071,6 +6077,12 @@ export interface ServerSideEncryptionByDefault { /** *

            Specifies the default server-side encryption configuration.

            + * + *

            If you're specifying a customer managed KMS key, we recommend using a fully qualified + * KMS key ARN. If you use a KMS key alias instead, then KMS resolves the key within the + * requester’s account. This behavior can result in data that's encrypted with a KMS key + * that belongs to the requester, and not the bucket owner.

            + *
            * @public */ export interface ServerSideEncryptionRule { @@ -7116,7 +7128,14 @@ export type PartitionDateSource = (typeof PartitionDateSource)[keyof typeof Part */ export interface PartitionedPrefix { /** - *

            Specifies the partition date source for the partitioned prefix. PartitionDateSource can be EventTime or DeliveryTime.

            + *

            Specifies the partition date source for the partitioned prefix. + * PartitionDateSource can be EventTime or + * DeliveryTime.

            + *

            For DeliveryTime, the time in the log file names corresponds to the + * delivery time for the log files.

            + *

            For EventTime, The logs delivered are for a specific day only. The year, + * month, and day correspond to the day on which the event occurred, and the hour, minutes and + * seconds are set to 00 in the key.

            * @public */ PartitionDateSource?: PartitionDateSource; @@ -7895,6 +7914,12 @@ export interface DeleteMarkerReplication { /** *

            Specifies encryption-related information for an Amazon S3 bucket that is a destination for * replicated objects.

            + * + *

            If you're specifying a customer managed KMS key, we recommend using a fully qualified + * KMS key ARN. If you use a KMS key alias instead, then KMS resolves the key within the + * requester’s account. This behavior can result in data that's encrypted with a KMS key + * that belongs to the requester, and not the bucket owner.

            + *
            * @public */ export interface EncryptionConfiguration { @@ -10088,7 +10113,7 @@ export const ObjectLockRetentionMode = { export type ObjectLockRetentionMode = (typeof ObjectLockRetentionMode)[keyof typeof ObjectLockRetentionMode]; /** - *

            The container element for specifying the default Object Lock retention settings for new + *

            The container element for optionally specifying the default Object Lock retention settings for new * objects placed in the specified bucket.

            * *
              @@ -10451,7 +10476,7 @@ export interface PublicAccessBlockConfiguration { /** *

              Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting - * this element to TRUE restricts access to this bucket to only Amazon Web Service principals and authorized users within this account if the bucket has + * this element to TRUE restricts access to this bucket to only Amazon Web Servicesservice principals and authorized users within this account if the bucket has * a public policy.

              *

              Enabling this setting doesn't affect previously stored bucket policies, except that * public and cross-account access within any public bucket policy, including non-public @@ -10518,9 +10543,6 @@ export interface HeadBucketOutput { /** *

              The Region that the bucket is located.

              - * - *

              This functionality is not supported for directory buckets.

              - *
              * @public */ BucketRegion?: string; @@ -10528,7 +10550,7 @@ export interface HeadBucketOutput { /** *

              Indicates whether the bucket name used in the request is an access point alias.

              * - *

              This functionality is not supported for directory buckets.

              + *

              For directory buckets, the value of this field is false.

              *
              * @public */ @@ -11497,6 +11519,36 @@ export interface ListBucketsOutput { * @public */ Owner?: Owner; + + /** + *

              + * ContinuationToken is included in the + * response when there are more buckets that can be listed with pagination. The next ListBuckets request to Amazon S3 can be continued with this ContinuationToken. ContinuationToken is obfuscated and is not a real bucket.

              + * @public + */ + ContinuationToken?: string; +} + +/** + * @public + */ +export interface ListBucketsRequest { + /** + *

              Maximum number of buckets to be returned in response. When the number is more than the count of buckets that are owned by an Amazon Web Services account, return all the buckets in response.

              + * @public + */ + MaxBuckets?: number; + + /** + *

              + * ContinuationToken indicates to Amazon S3 that the list is being continued on + * this bucket with a token. ContinuationToken is obfuscated and is not a real + * key. You can use this ContinuationToken for pagination of the list results.

              + *

              Length Constraints: Minimum length of 0. Maximum length of 1024.

              + *

              Required: No.

              + * @public + */ + ContinuationToken?: string; } /** @@ -11523,9 +11575,8 @@ export interface ListDirectoryBucketsOutput { export interface ListDirectoryBucketsRequest { /** *

              - * ContinuationToken indicates to Amazon S3 that the list is being continued on - * this bucket with a token. ContinuationToken is obfuscated and is not a real - * key. You can use this ContinuationToken for pagination of the list results.

              + * ContinuationToken indicates to Amazon S3 that the list is being continued on buckets in this account with a token. ContinuationToken is obfuscated and is not a real + * bucket name. You can use this ContinuationToken for the pagination of the list results.

              * @public */ ContinuationToken?: string; @@ -11818,11 +11869,19 @@ export interface ListMultipartUploadsRequest { Delimiter?: string; /** - *

              Requests Amazon S3 to encode the object keys in the response and specifies the encoding - * method to use. An object key can contain any Unicode character; however, the XML 1.0 parser - * cannot parse some characters, such as characters with an ASCII value from 0 to 10. For - * characters that are not supported in XML 1.0, you can add this parameter to request that - * Amazon S3 encode the keys in the response.

              + *

              Encoding type used by Amazon S3 to encode the object keys in the response. + * Responses are encoded only in UTF-8. An object key can contain any Unicode character. + * However, the XML 1.0 parser can't parse certain characters, such as characters with an + * ASCII value from 0 to 10. For characters that aren't supported in XML 1.0, you can add this + * parameter to request that Amazon S3 encode the keys in the response. For more information about + * characters to avoid in object key names, see Object key naming + * guidelines.

              + * + *

              When using the URL encoding type, non-ASCII characters that are used in an object's + * key name will be percent-encoded according to UTF-8 code values. For example, the object + * test_file(3).png will appear as + * test_file%283%29.png.

              + *
              * @public */ EncodingType?: EncodingType; @@ -12160,10 +12219,19 @@ export interface ListObjectsOutput { CommonPrefixes?: CommonPrefix[]; /** - *

              Encoding type used by Amazon S3 to encode object keys in the response. If using - * url, non-ASCII characters used in an object's key name will be URL encoded. - * For example, the object test_file(3).png will appear as + *

              Encoding type used by Amazon S3 to encode the object keys in the response. + * Responses are encoded only in UTF-8. An object key can contain any Unicode character. + * However, the XML 1.0 parser can't parse certain characters, such as characters with an + * ASCII value from 0 to 10. For characters that aren't supported in XML 1.0, you can add this + * parameter to request that Amazon S3 encode the keys in the response. For more information about + * characters to avoid in object key names, see Object key naming + * guidelines.

              + * + *

              When using the URL encoding type, non-ASCII characters that are used in an object's + * key name will be percent-encoded according to UTF-8 code values. For example, the object + * test_file(3).png will appear as * test_file%283%29.png.

              + *
              * @public */ EncodingType?: EncodingType; @@ -12226,11 +12294,19 @@ export interface ListObjectsRequest { Delimiter?: string; /** - *

              Requests Amazon S3 to encode the object keys in the response and specifies the encoding - * method to use. An object key can contain any Unicode character; however, the XML 1.0 parser - * cannot parse some characters, such as characters with an ASCII value from 0 to 10. For - * characters that are not supported in XML 1.0, you can add this parameter to request that - * Amazon S3 encode the keys in the response.

              + *

              Encoding type used by Amazon S3 to encode the object keys in the response. + * Responses are encoded only in UTF-8. An object key can contain any Unicode character. + * However, the XML 1.0 parser can't parse certain characters, such as characters with an + * ASCII value from 0 to 10. For characters that aren't supported in XML 1.0, you can add this + * parameter to request that Amazon S3 encode the keys in the response. For more information about + * characters to avoid in object key names, see Object key naming + * guidelines.

              + * + *

              When using the URL encoding type, non-ASCII characters that are used in an object's + * key name will be percent-encoded according to UTF-8 code values. For example, the object + * test_file(3).png will appear as + * test_file%283%29.png.

              + *
              * @public */ EncodingType?: EncodingType; @@ -12472,10 +12548,19 @@ export interface ListObjectsV2Request { Delimiter?: string; /** - *

              Encoding type used by Amazon S3 to encode object keys in the response. If using - * url, non-ASCII characters used in an object's key name will be URL encoded. - * For example, the object test_file(3).png will appear as + *

              Encoding type used by Amazon S3 to encode the object keys in the response. + * Responses are encoded only in UTF-8. An object key can contain any Unicode character. + * However, the XML 1.0 parser can't parse certain characters, such as characters with an + * ASCII value from 0 to 10. For characters that aren't supported in XML 1.0, you can add this + * parameter to request that Amazon S3 encode the keys in the response. For more information about + * characters to avoid in object key names, see Object key naming + * guidelines.

              + * + *

              When using the URL encoding type, non-ASCII characters that are used in an object's + * key name will be percent-encoded according to UTF-8 code values. For example, the object + * test_file(3).png will appear as * test_file%283%29.png.

              + *
              * @public */ EncodingType?: EncodingType; @@ -12813,11 +12898,19 @@ export interface ListObjectVersionsRequest { Delimiter?: string; /** - *

              Requests Amazon S3 to encode the object keys in the response and specifies the encoding - * method to use. An object key can contain any Unicode character; however, the XML 1.0 parser - * cannot parse some characters, such as characters with an ASCII value from 0 to 10. For - * characters that are not supported in XML 1.0, you can add this parameter to request that - * Amazon S3 encode the keys in the response.

              + *

              Encoding type used by Amazon S3 to encode the object keys in the response. + * Responses are encoded only in UTF-8. An object key can contain any Unicode character. + * However, the XML 1.0 parser can't parse certain characters, such as characters with an + * ASCII value from 0 to 10. For characters that aren't supported in XML 1.0, you can add this + * parameter to request that Amazon S3 encode the keys in the response. For more information about + * characters to avoid in object key names, see Object key naming + * guidelines.

              + * + *

              When using the URL encoding type, non-ASCII characters that are used in an object's + * key name will be percent-encoded according to UTF-8 code values. For example, the object + * test_file(3).png will appear as + * test_file%283%29.png.

              + *
              * @public */ EncodingType?: EncodingType; @@ -13729,99 +13822,6 @@ export interface PutBucketOwnershipControlsRequest { OwnershipControls: OwnershipControls | undefined; } -/** - * @public - */ -export interface PutBucketPolicyRequest { - /** - *

              The name of the bucket.

              - *

              - * Directory buckets - When you use this operation with a directory bucket, you must use path-style requests in the format https://s3express-control.region_code.amazonaws.com/bucket-name - * . Virtual-hosted-style requests aren't supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must also follow the format - * bucket_base_name--az_id--x-s3 (for example, - * DOC-EXAMPLE-BUCKET--usw2-az1--x-s3). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide - *

              - *

              Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies. - * For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues

              - * @public - */ - Bucket: string | undefined; - - /** - *

              The MD5 hash of the request body.

              - *

              For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.

              - * - *

              This functionality is not supported for directory buckets.

              - *
              - * @public - */ - ContentMD5?: string; - - /** - *

              Indicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any - * additional functionality if you don't use the SDK. When you send this header, there must be a corresponding x-amz-checksum-algorithm - * or - * x-amz-trailer header sent. Otherwise, Amazon S3 fails the request with the HTTP status code 400 Bad Request.

              - *

              For the x-amz-checksum-algorithm - * header, replace - * algorithm - * with the supported algorithm from the following list:

              - *
                - *
              • - *

                CRC32

                - *
              • - *
              • - *

                CRC32C

                - *
              • - *
              • - *

                SHA1

                - *
              • - *
              • - *

                SHA256

                - *
              • - *
              - *

              For more - * information, see Checking object integrity in - * the Amazon S3 User Guide.

              - *

              If the individual checksum value you provide through x-amz-checksum-algorithm - * doesn't match the checksum algorithm you set through x-amz-sdk-checksum-algorithm, Amazon S3 ignores any provided - * ChecksumAlgorithm parameter and uses the checksum algorithm that matches the provided value in x-amz-checksum-algorithm - * .

              - * - *

              For directory buckets, when you use Amazon Web Services SDKs, CRC32 is the default checksum algorithm that's used for performance.

              - *
              - * @public - */ - ChecksumAlgorithm?: ChecksumAlgorithm; - - /** - *

              Set this parameter to true to confirm that you want to remove your permissions to change - * this bucket policy in the future.

              - * - *

              This functionality is not supported for directory buckets.

              - *
              - * @public - */ - ConfirmRemoveSelfBucketAccess?: boolean; - - /** - *

              The bucket policy as a JSON document.

              - *

              For directory buckets, the only IAM action supported in the bucket policy is s3express:CreateSession.

              - * @public - */ - Policy: string | undefined; - - /** - *

              The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code 403 Forbidden (access denied).

              - * - *

              For directory buckets, this header is not supported in this API operation. If you specify this header, the request fails with the HTTP status code - * 501 Not Implemented.

              - *
              - * @public - */ - ExpectedBucketOwner?: string; -} - /** * @internal */ diff --git a/clients/client-s3/src/models/models_1.ts b/clients/client-s3/src/models/models_1.ts index b66d7727cacd8..534f2476f57bb 100644 --- a/clients/client-s3/src/models/models_1.ts +++ b/clients/client-s3/src/models/models_1.ts @@ -31,6 +31,99 @@ import { import { S3ServiceException as __BaseException } from "./S3ServiceException"; +/** + * @public + */ +export interface PutBucketPolicyRequest { + /** + *

              The name of the bucket.

              + *

              + * Directory buckets - When you use this operation with a directory bucket, you must use path-style requests in the format https://s3express-control.region_code.amazonaws.com/bucket-name + * . Virtual-hosted-style requests aren't supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must also follow the format + * bucket_base_name--az_id--x-s3 (for example, + * DOC-EXAMPLE-BUCKET--usw2-az1--x-s3). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide + *

              + *

              Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies. + * For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues

              + * @public + */ + Bucket: string | undefined; + + /** + *

              The MD5 hash of the request body.

              + *

              For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.

              + * + *

              This functionality is not supported for directory buckets.

              + *
              + * @public + */ + ContentMD5?: string; + + /** + *

              Indicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any + * additional functionality if you don't use the SDK. When you send this header, there must be a corresponding x-amz-checksum-algorithm + * or + * x-amz-trailer header sent. Otherwise, Amazon S3 fails the request with the HTTP status code 400 Bad Request.

              + *

              For the x-amz-checksum-algorithm + * header, replace + * algorithm + * with the supported algorithm from the following list:

              + *
                + *
              • + *

                CRC32

                + *
              • + *
              • + *

                CRC32C

                + *
              • + *
              • + *

                SHA1

                + *
              • + *
              • + *

                SHA256

                + *
              • + *
              + *

              For more + * information, see Checking object integrity in + * the Amazon S3 User Guide.

              + *

              If the individual checksum value you provide through x-amz-checksum-algorithm + * doesn't match the checksum algorithm you set through x-amz-sdk-checksum-algorithm, Amazon S3 ignores any provided + * ChecksumAlgorithm parameter and uses the checksum algorithm that matches the provided value in x-amz-checksum-algorithm + * .

              + * + *

              For directory buckets, when you use Amazon Web Services SDKs, CRC32 is the default checksum algorithm that's used for performance.

              + *
              + * @public + */ + ChecksumAlgorithm?: ChecksumAlgorithm; + + /** + *

              Set this parameter to true to confirm that you want to remove your permissions to change + * this bucket policy in the future.

              + * + *

              This functionality is not supported for directory buckets.

              + *
              + * @public + */ + ConfirmRemoveSelfBucketAccess?: boolean; + + /** + *

              The bucket policy as a JSON document.

              + *

              For directory buckets, the only IAM action supported in the bucket policy is s3express:CreateSession.

              + * @public + */ + Policy: string | undefined; + + /** + *

              The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code 403 Forbidden (access denied).

              + * + *

              For directory buckets, this header is not supported in this API operation. If you specify this header, the request fails with the HTTP status code + * 501 Not Implemented.

              + *
              + * @public + */ + ExpectedBucketOwner?: string; +} + /** * @public */ @@ -2231,7 +2324,12 @@ export interface ProgressEvent { */ export interface RecordsEvent { /** - *

              The byte array of partial, one or more result records.

              + *

              The byte array of partial, one or more result records. S3 Select doesn't guarantee that + * a record will be self-contained in one record frame. To ensure continuous streaming of + * data, S3 Select might split the same record across multiple record frames instead of + * aggregating the results in memory. Some S3 clients (for example, the SDK for Java) handle this behavior by creating a ByteStream out of the response by + * default. Other clients might not handle this behavior by default. In those cases, you must + * aggregate the results on the client side and parse the response.

              * @public */ Payload?: Uint8Array; diff --git a/clients/client-s3/src/pagination/ListBucketsPaginator.ts b/clients/client-s3/src/pagination/ListBucketsPaginator.ts new file mode 100644 index 0000000000000..0189811454498 --- /dev/null +++ b/clients/client-s3/src/pagination/ListBucketsPaginator.ts @@ -0,0 +1,20 @@ +// smithy-typescript generated code +import { createPaginator } from "@smithy/core"; +import { Paginator } from "@smithy/types"; + +import { ListBucketsCommand, ListBucketsCommandInput, ListBucketsCommandOutput } from "../commands/ListBucketsCommand"; +import { S3Client } from "../S3Client"; +import { S3PaginationConfiguration } from "./Interfaces"; + +/** + * @public + */ +export const paginateListBuckets: ( + config: S3PaginationConfiguration, + input: ListBucketsCommandInput, + ...rest: any[] +) => Paginator = createPaginator< + S3PaginationConfiguration, + ListBucketsCommandInput, + ListBucketsCommandOutput +>(S3Client, ListBucketsCommand, "ContinuationToken", "ContinuationToken", "MaxBuckets"); diff --git a/clients/client-s3/src/pagination/index.ts b/clients/client-s3/src/pagination/index.ts index 66532c3121efb..75829a540421e 100644 --- a/clients/client-s3/src/pagination/index.ts +++ b/clients/client-s3/src/pagination/index.ts @@ -1,5 +1,6 @@ // smithy-typescript generated code export * from "./Interfaces"; +export * from "./ListBucketsPaginator"; export * from "./ListDirectoryBucketsPaginator"; export * from "./ListObjectsV2Paginator"; export * from "./ListPartsPaginator"; diff --git a/clients/client-s3/src/protocols/Aws_restXml.ts b/clients/client-s3/src/protocols/Aws_restXml.ts index e7b56ec4af38f..31e26dee14710 100644 --- a/clients/client-s3/src/protocols/Aws_restXml.ts +++ b/clients/client-s3/src/protocols/Aws_restXml.ts @@ -1874,6 +1874,8 @@ export const se_ListBucketsCommand = async ( b.bp("/"); const query: any = map({ [_xi]: [, "ListBuckets"], + [_mb]: [() => input.MaxBuckets !== void 0, () => input[_MB]!.toString()], + [_ct_]: [, input[_CTo]!], }); let body: any; b.m("GET").h(headers).q(query).b(body); @@ -4487,6 +4489,9 @@ export const de_ListBucketsCommand = async ( } else if (data[_Bu] != null && data[_Bu][_B] != null) { contents[_Bu] = de_Buckets(__getArrayIfSingleItem(data[_Bu][_B]), context); } + if (data[_CTo] != null) { + contents[_CTo] = __expectString(data[_CTo]); + } if (data[_O] != null) { contents[_O] = de_Owner(data[_O], context); } @@ -9930,6 +9935,7 @@ const _LT = "LocationType"; const _M = "Marker"; const _MAO = "MetricsAndOperator"; const _MAS = "MaxAgeSeconds"; +const _MB = "MaxBuckets"; const _MC = "MetricsConfiguration"; const _MCL = "MetricsConfigurationList"; const _MD = "MetadataDirective"; @@ -10186,6 +10192,7 @@ const _log = "logging"; const _lt = "list-type"; const _m = "metrics"; const _ma = "marker"; +const _mb = "max-buckets"; const _mdb = "max-directory-buckets"; const _me = "member"; const _mk = "max-keys"; diff --git a/codegen/sdk-codegen/aws-models/s3.json b/codegen/sdk-codegen/aws-models/s3.json index 404ac5e8ce300..5bec54e76ad7b 100644 --- a/codegen/sdk-codegen/aws-models/s3.json +++ b/codegen/sdk-codegen/aws-models/s3.json @@ -60,7 +60,7 @@ } ], "traits": { - "smithy.api#documentation": "

              This operation aborts a multipart upload. After a multipart upload is aborted, no\n additional parts can be uploaded using that upload ID. The storage consumed by any\n previously uploaded parts will be freed. However, if any part uploads are currently in\n progress, those part uploads might or might not succeed. As a result, it might be necessary\n to abort a given multipart upload multiple times in order to completely free all storage\n consumed by all parts.

              \n

              To verify that all parts have been removed and prevent getting charged for the part\n storage, you should call the ListParts API operation and ensure that\n the parts list is empty.

              \n \n

              \n Directory buckets - For directory buckets, you must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com/key-name\n . Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the\n Amazon S3 User Guide.

              \n
              \n
              \n
              Permissions
              \n
              \n
                \n
              • \n

                \n General purpose bucket permissions - For information about permissions required to use the multipart upload, see Multipart Upload\n and Permissions in the Amazon S3\n User Guide.

                \n
              • \n
              • \n

                \n Directory bucket permissions - To grant access to this API operation on a directory bucket, we recommend that you use the \n CreateSession\n API operation for session-based authorization. Specifically, you grant the s3express:CreateSession permission to the directory bucket in a bucket policy or an IAM identity-based policy. Then, you make the CreateSession API call on the bucket to obtain a session token. With the session token in your request header, you can make API requests to this operation. After the session token expires, you make another CreateSession API call to generate a new session token for use. \nAmazon Web Services CLI or SDKs create session and refresh the session token automatically to avoid service interruptions when a session expires. For more information about authorization, see \n CreateSession\n .

                \n
              • \n
              \n
              \n
              HTTP Host header syntax
              \n
              \n

              \n Directory buckets - The HTTP Host header syntax is \n Bucket_name.s3express-az_id.region.amazonaws.com.

              \n
              \n
              \n

              The following operations are related to AbortMultipartUpload:

              \n ", + "smithy.api#documentation": "

              This operation aborts a multipart upload. After a multipart upload is aborted, no\n additional parts can be uploaded using that upload ID. The storage consumed by any\n previously uploaded parts will be freed. However, if any part uploads are currently in\n progress, those part uploads might or might not succeed. As a result, it might be necessary\n to abort a given multipart upload multiple times in order to completely free all storage\n consumed by all parts.

              \n

              To verify that all parts have been removed and prevent getting charged for the part\n storage, you should call the ListParts API operation and ensure that\n the parts list is empty.

              \n \n
                \n
              • \n

                \n Directory buckets - \n If multipart uploads in a directory bucket are in progress, you can't delete the bucket until all the in-progress multipart uploads are aborted or completed. \n To delete these in-progress multipart uploads, use the\n ListMultipartUploads operation to list the in-progress multipart\n uploads in the bucket and use the AbortMultupartUpload operation to\n abort all the in-progress multipart uploads.\n

                \n
              • \n
              • \n

                \n Directory buckets - For directory buckets, you must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com/key-name\n . Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the\n Amazon S3 User Guide.

                \n
              • \n
              \n
              \n
              \n
              Permissions
              \n
              \n
                \n
              • \n

                \n General purpose bucket permissions - For information about permissions required to use the multipart upload, see Multipart Upload\n and Permissions in the Amazon S3\n User Guide.

                \n
              • \n
              • \n

                \n Directory bucket permissions - To grant access to this API operation on a directory bucket, we recommend that you use the \n CreateSession\n API operation for session-based authorization. Specifically, you grant the s3express:CreateSession permission to the directory bucket in a bucket policy or an IAM identity-based policy. Then, you make the CreateSession API call on the bucket to obtain a session token. With the session token in your request header, you can make API requests to this operation. After the session token expires, you make another CreateSession API call to generate a new session token for use. \nAmazon Web Services CLI or SDKs create session and refresh the session token automatically to avoid service interruptions when a session expires. For more information about authorization, see \n CreateSession\n .

                \n
              • \n
              \n
              \n
              HTTP Host header syntax
              \n
              \n

              \n Directory buckets - The HTTP Host header syntax is \n Bucket_name.s3express-az_id.region.amazonaws.com.

              \n
              \n
              \n

              The following operations are related to AbortMultipartUpload:

              \n ", "smithy.api#examples": [ { "title": "To abort a multipart upload", @@ -18652,7 +18652,7 @@ } ], "traits": { - "smithy.api#documentation": "

              Creates a copy of an object that is already stored in Amazon S3.

              \n \n

              You can store individual objects of up to 5 TB in Amazon S3. You create a copy of your\n object up to 5 GB in size in a single atomic action using this API. However, to copy an\n object greater than 5 GB, you must use the multipart upload Upload Part - Copy\n (UploadPartCopy) API. For more information, see Copy Object Using the\n REST Multipart Upload API.

              \n
              \n

              You can copy individual objects between general purpose buckets, between directory buckets, and \n between general purpose buckets and directory buckets.

              \n \n

              \n Directory buckets - For directory buckets, you must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com/key-name\n . Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the\n Amazon S3 User Guide.

              \n
              \n

              Both the\n Region that you want to copy the object from and the Region that you want to copy the\n object to must be enabled for your account. For more information about how to enable a Region for your account, see Enable \n or disable a Region for standalone accounts in the\n Amazon Web Services Account Management Guide.

              \n \n

              Amazon S3 transfer acceleration does not support cross-Region copies. If you request a\n cross-Region copy using a transfer acceleration endpoint, you get a 400 Bad\n Request error. For more information, see Transfer\n Acceleration.

              \n
              \n
              \n
              Authentication and authorization
              \n
              \n

              All CopyObject requests must be authenticated and signed by using IAM credentials (access key ID and secret access key for the IAM identities). All headers with the x-amz- prefix, including\n x-amz-copy-source, must be signed. For more information, see REST Authentication.

              \n

              \n Directory buckets - You must use the IAM credentials to authenticate and authorize your access to the CopyObject API operation, instead of using the \n temporary security credentials through the CreateSession API operation.

              \n

              Amazon Web Services CLI or SDKs handles authentication and authorization on your behalf.

              \n
              \n
              Permissions
              \n
              \n

              You must have\n read access to the source object and write\n access to the destination bucket.

              \n
                \n
              • \n

                \n General purpose bucket permissions -\n You must have permissions in an IAM policy based on the source and destination\n bucket types in a CopyObject operation.

                \n
                  \n
                • \n

                  If the source object is in a general purpose bucket, you must have\n \n s3:GetObject\n \n permission to read the source object that is being copied.

                  \n
                • \n
                • \n

                  If the destination bucket is a general purpose bucket, you must have\n \n s3:PutObject\n \n permission to write the object copy to the destination bucket.

                  \n
                • \n
                \n
              • \n
              • \n

                \n Directory bucket permissions -\n You must have permissions in a bucket policy or an IAM identity-based policy based on the source and destination\n bucket types in a CopyObject operation.

                \n
                  \n
                • \n

                  If the source object that you want to copy is in a\n directory bucket, you must have the \n s3express:CreateSession\n permission in\n the Action element of a policy to read the object. By default, the session is in the ReadWrite mode. If you want to restrict the access, you can explicitly set the s3express:SessionMode condition key to ReadOnly on the copy source bucket.

                  \n
                • \n
                • \n

                  If the copy destination is a directory bucket, you must have the \n s3express:CreateSession\n permission in the\n Action element of a policy to write the object\n to the destination. The s3express:SessionMode condition\n key can't be set to ReadOnly on the copy destination bucket.

                  \n
                • \n
                \n

                For example policies, see Example bucket policies for S3 Express One Zone and Amazon Web Services Identity and Access Management (IAM) identity-based policies for S3 Express One Zone in the\n Amazon S3 User Guide.

                \n
              • \n
              \n
              \n
              Response and special errors
              \n
              \n

              When the request is an HTTP 1.1 request, the response is chunk encoded. When\n the request is not an HTTP 1.1 request, the response would not contain the\n Content-Length. You always need to read the entire response body\n to check if the copy succeeds.

              \n
                \n
              • \n

                If the copy is successful, you receive a response with information about the copied\n object.

                \n
              • \n
              • \n

                A copy request might return an error when Amazon S3 receives the copy request or while Amazon S3\n is copying the files. A 200 OK response can contain either a success or an error.

                \n
                  \n
                • \n

                  If the error occurs before the copy action starts, you receive a\n standard Amazon S3 error.

                  \n
                • \n
                • \n

                  If the error occurs during the copy operation, the error response is\n embedded in the 200 OK response. For example, in a cross-region copy, you \n may encounter throttling and receive a 200 OK response. \n For more information, see Resolve \n the Error 200 response when copying objects to Amazon S3. \n The 200 OK status code means the copy was accepted, but \n it doesn't mean the copy is complete. Another example is \n when you disconnect from Amazon S3 before the copy is complete, Amazon S3 might cancel the copy and you may receive a 200 OK response. \n You must stay connected to Amazon S3 until the entire response is successfully received and processed.

                  \n

                  If you call this API operation directly, make\n sure to design your application to parse the content of the response and handle it\n appropriately. If you use Amazon Web Services SDKs, SDKs handle this condition. The SDKs detect the\n embedded error and apply error handling per your configuration settings (including\n automatically retrying the request as appropriate). If the condition persists, the SDKs\n throw an exception (or, for the SDKs that don't use exceptions, they return an \n error).

                  \n
                • \n
                \n
              • \n
              \n
              \n
              Charge
              \n
              \n

              The copy request charge is based on the storage class and Region that you specify for\n the destination object. The request can also result in a data retrieval charge for the\n source if the source storage class bills for data retrieval. If the copy source is in a different region, the data transfer is billed to the copy source account. For pricing information, see\n Amazon S3 pricing.

              \n
              \n
              HTTP Host header syntax
              \n
              \n

              \n Directory buckets - The HTTP Host header syntax is \n Bucket_name.s3express-az_id.region.amazonaws.com.

              \n
              \n
              \n

              The following operations are related to CopyObject:

              \n ", + "smithy.api#documentation": "

              Creates a copy of an object that is already stored in Amazon S3.

              \n \n

              You can store individual objects of up to 5 TB in Amazon S3. You create a copy of your\n object up to 5 GB in size in a single atomic action using this API. However, to copy an\n object greater than 5 GB, you must use the multipart upload Upload Part - Copy\n (UploadPartCopy) API. For more information, see Copy Object Using the\n REST Multipart Upload API.

              \n
              \n

              You can copy individual objects between general purpose buckets, between directory buckets, and \n between general purpose buckets and directory buckets.

              \n \n
                \n
              • \n

                Amazon S3 supports copy operations using Multi-Region Access Points only as a destination when using the Multi-Region Access Point ARN.

                \n
              • \n
              • \n

                \n Directory buckets - For directory buckets, you must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com/key-name\n . Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the\n Amazon S3 User Guide.

                \n
              • \n
              • \n

                VPC endpoints don't support cross-Region requests (including copies). If you're using VPC endpoints, your source and destination buckets should be in the same Amazon Web Services Region as your VPC endpoint.

                \n
              • \n
              \n
              \n

              Both the\n Region that you want to copy the object from and the Region that you want to copy the\n object to must be enabled for your account. For more information about how to enable a Region for your account, see Enable \n or disable a Region for standalone accounts in the\n Amazon Web Services Account Management Guide.

              \n \n

              Amazon S3 transfer acceleration does not support cross-Region copies. If you request a\n cross-Region copy using a transfer acceleration endpoint, you get a 400 Bad\n Request error. For more information, see Transfer\n Acceleration.

              \n
              \n
              \n
              Authentication and authorization
              \n
              \n

              All CopyObject requests must be authenticated and signed by using IAM credentials (access key ID and secret access key for the IAM identities). All headers with the x-amz- prefix, including\n x-amz-copy-source, must be signed. For more information, see REST Authentication.

              \n

              \n Directory buckets - You must use the IAM credentials to authenticate and authorize your access to the CopyObject API operation, instead of using the \n temporary security credentials through the CreateSession API operation.

              \n

              Amazon Web Services CLI or SDKs handles authentication and authorization on your behalf.

              \n
              \n
              Permissions
              \n
              \n

              You must have\n read access to the source object and write\n access to the destination bucket.

              \n
                \n
              • \n

                \n General purpose bucket permissions -\n You must have permissions in an IAM policy based on the source and destination\n bucket types in a CopyObject operation.

                \n
                  \n
                • \n

                  If the source object is in a general purpose bucket, you must have\n \n s3:GetObject\n \n permission to read the source object that is being copied.

                  \n
                • \n
                • \n

                  If the destination bucket is a general purpose bucket, you must have\n \n s3:PutObject\n \n permission to write the object copy to the destination bucket.

                  \n
                • \n
                \n
              • \n
              • \n

                \n Directory bucket permissions -\n You must have permissions in a bucket policy or an IAM identity-based policy based on the source and destination\n bucket types in a CopyObject operation.

                \n
                  \n
                • \n

                  If the source object that you want to copy is in a\n directory bucket, you must have the \n s3express:CreateSession\n permission in\n the Action element of a policy to read the object. By default, the session is in the ReadWrite mode. If you want to restrict the access, you can explicitly set the s3express:SessionMode condition key to ReadOnly on the copy source bucket.

                  \n
                • \n
                • \n

                  If the copy destination is a directory bucket, you must have the \n s3express:CreateSession\n permission in the\n Action element of a policy to write the object\n to the destination. The s3express:SessionMode condition\n key can't be set to ReadOnly on the copy destination bucket.

                  \n
                • \n
                \n

                For example policies, see Example bucket policies for S3 Express One Zone and Amazon Web Services Identity and Access Management (IAM) identity-based policies for S3 Express One Zone in the\n Amazon S3 User Guide.

                \n
              • \n
              \n
              \n
              Response and special errors
              \n
              \n

              When the request is an HTTP 1.1 request, the response is chunk encoded. When\n the request is not an HTTP 1.1 request, the response would not contain the\n Content-Length. You always need to read the entire response body\n to check if the copy succeeds.

              \n
                \n
              • \n

                If the copy is successful, you receive a response with information about the copied\n object.

                \n
              • \n
              • \n

                A copy request might return an error when Amazon S3 receives the copy request or while Amazon S3\n is copying the files. A 200 OK response can contain either a success or an error.

                \n
                  \n
                • \n

                  If the error occurs before the copy action starts, you receive a\n standard Amazon S3 error.

                  \n
                • \n
                • \n

                  If the error occurs during the copy operation, the error response is\n embedded in the 200 OK response. For example, in a cross-region copy, you \n may encounter throttling and receive a 200 OK response. \n For more information, see Resolve \n the Error 200 response when copying objects to Amazon S3. \n The 200 OK status code means the copy was accepted, but \n it doesn't mean the copy is complete. Another example is \n when you disconnect from Amazon S3 before the copy is complete, Amazon S3 might cancel the copy and you may receive a 200 OK response. \n You must stay connected to Amazon S3 until the entire response is successfully received and processed.

                  \n

                  If you call this API operation directly, make\n sure to design your application to parse the content of the response and handle it\n appropriately. If you use Amazon Web Services SDKs, SDKs handle this condition. The SDKs detect the\n embedded error and apply error handling per your configuration settings (including\n automatically retrying the request as appropriate). If the condition persists, the SDKs\n throw an exception (or, for the SDKs that don't use exceptions, they return an \n error).

                  \n
                • \n
                \n
              • \n
              \n
              \n
              Charge
              \n
              \n

              The copy request charge is based on the storage class and Region that you specify for\n the destination object. The request can also result in a data retrieval charge for the\n source if the source storage class bills for data retrieval. If the copy source is in a different region, the data transfer is billed to the copy source account. For pricing information, see\n Amazon S3 pricing.

              \n
              \n
              HTTP Host header syntax
              \n
              \n

              \n Directory buckets - The HTTP Host header syntax is \n Bucket_name.s3express-az_id.region.amazonaws.com.

              \n
              \n
              \n

              The following operations are related to CopyObject:

              \n ", "smithy.api#examples": [ { "title": "To copy an object", @@ -19849,7 +19849,7 @@ } }, "traits": { - "smithy.api#documentation": "

              The container element for specifying the default Object Lock retention settings for new\n objects placed in the specified bucket.

              \n \n
                \n
              • \n

                The DefaultRetention settings require both a mode and a\n period.

                \n
              • \n
              • \n

                The DefaultRetention period can be either Days or\n Years but you must select one. You cannot specify\n Days and Years at the same time.

                \n
              • \n
              \n
              " + "smithy.api#documentation": "

              The container element for optionally specifying the default Object Lock retention settings for new\n objects placed in the specified bucket.

              \n \n
                \n
              • \n

                The DefaultRetention settings require both a mode and a\n period.

                \n
              • \n
              • \n

                The DefaultRetention period can be either Days or\n Years but you must select one. You cannot specify\n Days and Years at the same time.

                \n
              • \n
              \n
              " } }, "com.amazonaws.s3#Delete": { @@ -21216,7 +21216,7 @@ } }, "traits": { - "smithy.api#documentation": "

              Requests Amazon S3 to encode the object keys in the response and specifies the encoding\n method to use. An object key can contain any Unicode character; however, the XML 1.0 parser\n cannot parse some characters, such as characters with an ASCII value from 0 to 10. For\n characters that are not supported in XML 1.0, you can add this parameter to request that\n Amazon S3 encode the keys in the response.

              " + "smithy.api#documentation": "

              Encoding type used by Amazon S3 to encode the object keys in the response.\n Responses are encoded only in UTF-8. An object key can contain any Unicode character.\n However, the XML 1.0 parser can't parse certain characters, such as characters with an\n ASCII value from 0 to 10. For characters that aren't supported in XML 1.0, you can add this\n parameter to request that Amazon S3 encode the keys in the response. For more information about\n characters to avoid in object key names, see Object key naming\n guidelines.

              \n \n

              When using the URL encoding type, non-ASCII characters that are used in an object's\n key name will be percent-encoded according to UTF-8 code values. For example, the object\n test_file(3).png will appear as\n test_file%283%29.png.

              \n
              " } }, "com.amazonaws.s3#Encryption": { @@ -21257,7 +21257,7 @@ } }, "traits": { - "smithy.api#documentation": "

              Specifies encryption-related information for an Amazon S3 bucket that is a destination for\n replicated objects.

              " + "smithy.api#documentation": "

              Specifies encryption-related information for an Amazon S3 bucket that is a destination for\n replicated objects.

              \n \n

              If you're specifying a customer managed KMS key, we recommend using a fully qualified\n KMS key ARN. If you use a KMS key alias instead, then KMS resolves the key within the\n requester’s account. This behavior can result in data that's encrypted with a KMS key\n that belongs to the requester, and not the bucket owner.

              \n
              " } }, "com.amazonaws.s3#End": { @@ -24585,7 +24585,7 @@ } ], "traits": { - "smithy.api#documentation": "

              You can use this operation to determine if a bucket exists and if you have permission to access it. The action returns a 200 OK if the bucket exists and you have permission\n to access it.

              \n

              If the bucket does not exist or you do not have permission to access it, the\n HEAD request returns a generic 400 Bad Request, 403\n Forbidden or 404 Not Found code. A message body is not included, so\n you cannot determine the exception beyond these HTTP response codes.

              \n \n

              \n Directory buckets - You must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com. Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the\n Amazon S3 User Guide.

              \n
              \n
              \n
              Authentication and authorization
              \n
              \n

              All HeadBucket requests must be authenticated and signed by using IAM credentials (access key ID and secret access key for the IAM identities). All headers with the x-amz- prefix, including\n x-amz-copy-source, must be signed. For more information, see REST Authentication.

              \n

              \n Directory bucket - You must use IAM credentials to authenticate and authorize your access to the HeadBucket API operation, instead of using the \n temporary security credentials through the CreateSession API operation.

              \n

              Amazon Web Services CLI or SDKs handles authentication and authorization on your behalf.

              \n
              \n
              Permissions
              \n
              \n

              \n \n
              \n
              HTTP Host header syntax
              \n
              \n

              \n Directory buckets - The HTTP Host header syntax is \n Bucket_name.s3express-az_id.region.amazonaws.com.

              \n
              \n
              ", + "smithy.api#documentation": "

              You can use this operation to determine if a bucket exists and if you have permission to access it. The action returns a 200 OK if the bucket exists and you have permission\n to access it.

              \n \n

              If the bucket does not exist or you do not have permission to access it, the\n HEAD request returns a generic 400 Bad Request, 403\n Forbidden or 404 Not Found code. A message body is not included, so\n you cannot determine the exception beyond these HTTP response codes.

              \n
              \n
              \n
              Authentication and authorization
              \n
              \n

              \n General purpose buckets - Request to public buckets that grant the s3:ListBucket permission publicly do not need to be signed. All other HeadBucket requests must be authenticated and signed by using IAM credentials (access key ID and secret access key for the IAM identities). All headers with the x-amz- prefix, including\n x-amz-copy-source, must be signed. For more information, see REST Authentication.

              \n

              \n Directory buckets - You must use IAM credentials to authenticate and authorize your access to the HeadBucket API operation, instead of using the \n temporary security credentials through the CreateSession API operation.

              \n

              Amazon Web Services CLI or SDKs handles authentication and authorization on your behalf.

              \n
              \n
              Permissions
              \n
              \n

              \n \n
              \n
              HTTP Host header syntax
              \n
              \n

              \n Directory buckets - The HTTP Host header syntax is \n Bucket_name.s3express-az_id.region.amazonaws.com.

              \n \n

              You must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com. Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the\n Amazon S3 User Guide.

              \n
              \n
              \n
              ", "smithy.api#examples": [ { "title": "To determine if bucket exists", @@ -24652,14 +24652,14 @@ "BucketRegion": { "target": "com.amazonaws.s3#Region", "traits": { - "smithy.api#documentation": "

              The Region that the bucket is located.

              \n \n

              This functionality is not supported for directory buckets.

              \n
              ", + "smithy.api#documentation": "

              The Region that the bucket is located.

              ", "smithy.api#httpHeader": "x-amz-bucket-region" } }, "AccessPointAlias": { "target": "com.amazonaws.s3#AccessPointAlias", "traits": { - "smithy.api#documentation": "

              Indicates whether the bucket name used in the request is an access point alias.

              \n \n

              This functionality is not supported for directory buckets.

              \n
              ", + "smithy.api#documentation": "

              Indicates whether the bucket name used in the request is an access point alias.

              \n \n

              For directory buckets, the value of this field is false.

              \n
              ", "smithy.api#httpHeader": "x-amz-access-point-alias" } } @@ -24708,7 +24708,7 @@ } ], "traits": { - "smithy.api#documentation": "

              The HEAD operation retrieves metadata from an object without returning the\n object itself. This operation is useful if you're interested only in an object's metadata.

              \n

              A HEAD request has the same options as a GET operation on an\n object. The response is identical to the GET response except that there is no\n response body. Because of this, if the HEAD request generates an error, it\n returns a generic code, such as 400 Bad Request, 403 Forbidden, 404 Not\n Found, 405 Method Not Allowed, 412 Precondition Failed, or 304 Not Modified. \n It's not possible to retrieve the exact exception of these error codes.

              \n

              Request headers are limited to 8 KB in size. For more information, see Common\n Request Headers.

              \n \n

              \n Directory buckets - For directory buckets, you must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com/key-name\n . Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the\n Amazon S3 User Guide.

              \n
              \n
              \n
              Permissions
              \n
              \n

              \n
                \n
              • \n

                \n General purpose bucket permissions - To\n use HEAD, you must have the s3:GetObject permission. You need the relevant read object (or version) permission for this operation.\n For more information, see Actions, resources, and condition\n keys for Amazon S3 in the Amazon S3\n User Guide.

                \n

                If the object you request doesn't exist, the error that\n Amazon S3 returns depends on whether you also have the s3:ListBucket permission.

                \n
                  \n
                • \n

                  If you have the s3:ListBucket permission on the bucket, Amazon S3\n returns an HTTP status code 404 Not Found error.

                  \n
                • \n
                • \n

                  If you don’t have the s3:ListBucket permission, Amazon S3 returns\n an HTTP status code 403 Forbidden error.

                  \n
                • \n
                \n
              • \n
              • \n

                \n Directory bucket permissions - To grant access to this API operation on a directory bucket, we recommend that you use the \n CreateSession\n API operation for session-based authorization. Specifically, you grant the s3express:CreateSession permission to the directory bucket in a bucket policy or an IAM identity-based policy. Then, you make the CreateSession API call on the bucket to obtain a session token. With the session token in your request header, you can make API requests to this operation. After the session token expires, you make another CreateSession API call to generate a new session token for use. \nAmazon Web Services CLI or SDKs create session and refresh the session token automatically to avoid service interruptions when a session expires. For more information about authorization, see \n CreateSession\n .

                \n
              • \n
              \n
              \n
              Encryption
              \n
              \n \n

              Encryption request headers, like x-amz-server-side-encryption,\n should not be sent for HEAD requests if your object uses server-side\n encryption with Key Management Service (KMS) keys (SSE-KMS), dual-layer server-side\n encryption with Amazon Web Services KMS keys (DSSE-KMS), or server-side encryption with Amazon S3\n managed encryption keys (SSE-S3). The x-amz-server-side-encryption header is used when you PUT an object to S3 and want to specify the encryption method. \n If you include this header in a HEAD request for an object that uses these types of keys, \n you’ll get an HTTP 400 Bad Request error. It's because the encryption method can't be changed when you retrieve the object.

              \n
              \n

              If you encrypt an object by using server-side encryption with customer-provided\n encryption keys (SSE-C) when you store the object in Amazon S3, then when you retrieve the\n metadata from the object, you must use the following headers to provide the encryption key for the server to be able to retrieve the object's metadata. The headers are:

              \n
                \n
              • \n

                \n x-amz-server-side-encryption-customer-algorithm\n

                \n
              • \n
              • \n

                \n x-amz-server-side-encryption-customer-key\n

                \n
              • \n
              • \n

                \n x-amz-server-side-encryption-customer-key-MD5\n

                \n
              • \n
              \n

              For more information about SSE-C, see Server-Side Encryption\n (Using Customer-Provided Encryption Keys) in the Amazon S3\n User Guide.

              \n \n

              \n Directory bucket permissions - For directory buckets, only server-side encryption with Amazon S3 managed keys (SSE-S3) (AES256) is supported.

              \n
              \n
              \n
              Versioning
              \n
              \n
                \n
              • \n

                If the current version of the object is a delete marker, Amazon S3 behaves as if the object was deleted and includes x-amz-delete-marker: true in the response.

                \n
              • \n
              • \n

                If the specified version is a delete marker, the response returns a 405 Method Not Allowed error and the Last-Modified: timestamp response header.

                \n
              • \n
              \n \n
                \n
              • \n

                \n Directory buckets - Delete marker is not supported by directory buckets.

                \n
              • \n
              • \n

                \n Directory buckets - S3 Versioning isn't enabled and supported for directory buckets. For this API operation, only the null value of the version ID is supported by directory buckets. You can only specify null \n to the versionId query parameter in the request.

                \n
              • \n
              \n
              \n
              \n
              HTTP Host header syntax
              \n
              \n

              \n Directory buckets - The HTTP Host header syntax is \n Bucket_name.s3express-az_id.region.amazonaws.com.

              \n
              \n
              \n

              The following actions are related to HeadObject:

              \n ", + "smithy.api#documentation": "

              The HEAD operation retrieves metadata from an object without returning the\n object itself. This operation is useful if you're interested only in an object's metadata.

              \n \n

              A HEAD request has the same options as a GET operation on an\n object. The response is identical to the GET response except that there is no\n response body. Because of this, if the HEAD request generates an error, it\n returns a generic code, such as 400 Bad Request, 403 Forbidden, 404 Not\n Found, 405 Method Not Allowed, 412 Precondition Failed, or 304 Not Modified. \n It's not possible to retrieve the exact exception of these error codes.

              \n
              \n

              Request headers are limited to 8 KB in size. For more information, see Common\n Request Headers.

              \n
              \n
              Permissions
              \n
              \n

              \n
                \n
              • \n

                \n General purpose bucket permissions - To\n use HEAD, you must have the s3:GetObject permission. You need the relevant read object (or version) permission for this operation.\n For more information, see Actions, resources, and condition\n keys for Amazon S3 in the Amazon S3\n User Guide.

                \n

                If the object you request doesn't exist, the error that\n Amazon S3 returns depends on whether you also have the s3:ListBucket permission.

                \n
                  \n
                • \n

                  If you have the s3:ListBucket permission on the bucket, Amazon S3\n returns an HTTP status code 404 Not Found error.

                  \n
                • \n
                • \n

                  If you don’t have the s3:ListBucket permission, Amazon S3 returns\n an HTTP status code 403 Forbidden error.

                  \n
                • \n
                \n
              • \n
              • \n

                \n Directory bucket permissions - To grant access to this API operation on a directory bucket, we recommend that you use the \n CreateSession\n API operation for session-based authorization. Specifically, you grant the s3express:CreateSession permission to the directory bucket in a bucket policy or an IAM identity-based policy. Then, you make the CreateSession API call on the bucket to obtain a session token. With the session token in your request header, you can make API requests to this operation. After the session token expires, you make another CreateSession API call to generate a new session token for use. \nAmazon Web Services CLI or SDKs create session and refresh the session token automatically to avoid service interruptions when a session expires. For more information about authorization, see \n CreateSession\n .

                \n
              • \n
              \n
              \n
              Encryption
              \n
              \n \n

              Encryption request headers, like x-amz-server-side-encryption,\n should not be sent for HEAD requests if your object uses server-side\n encryption with Key Management Service (KMS) keys (SSE-KMS), dual-layer server-side\n encryption with Amazon Web Services KMS keys (DSSE-KMS), or server-side encryption with Amazon S3\n managed encryption keys (SSE-S3). The x-amz-server-side-encryption header is used when you PUT an object to S3 and want to specify the encryption method. \n If you include this header in a HEAD request for an object that uses these types of keys, \n you’ll get an HTTP 400 Bad Request error. It's because the encryption method can't be changed when you retrieve the object.

              \n
              \n

              If you encrypt an object by using server-side encryption with customer-provided\n encryption keys (SSE-C) when you store the object in Amazon S3, then when you retrieve the\n metadata from the object, you must use the following headers to provide the encryption key for the server to be able to retrieve the object's metadata. The headers are:

              \n
                \n
              • \n

                \n x-amz-server-side-encryption-customer-algorithm\n

                \n
              • \n
              • \n

                \n x-amz-server-side-encryption-customer-key\n

                \n
              • \n
              • \n

                \n x-amz-server-side-encryption-customer-key-MD5\n

                \n
              • \n
              \n

              For more information about SSE-C, see Server-Side Encryption\n (Using Customer-Provided Encryption Keys) in the Amazon S3\n User Guide.

              \n \n

              \n Directory bucket permissions - For directory buckets, only server-side encryption with Amazon S3 managed keys (SSE-S3) (AES256) is supported.

              \n
              \n
              \n
              Versioning
              \n
              \n
                \n
              • \n

                If the current version of the object is a delete marker, Amazon S3 behaves as if the object was deleted and includes x-amz-delete-marker: true in the response.

                \n
              • \n
              • \n

                If the specified version is a delete marker, the response returns a 405 Method Not Allowed error and the Last-Modified: timestamp response header.

                \n
              • \n
              \n \n
                \n
              • \n

                \n Directory buckets - Delete marker is not supported by directory buckets.

                \n
              • \n
              • \n

                \n Directory buckets - S3 Versioning isn't enabled and supported for directory buckets. For this API operation, only the null value of the version ID is supported by directory buckets. You can only specify null \n to the versionId query parameter in the request.

                \n
              • \n
              \n
              \n
              \n
              HTTP Host header syntax
              \n
              \n

              \n Directory buckets - The HTTP Host header syntax is \n Bucket_name.s3express-az_id.region.amazonaws.com.

              \n \n

              For directory buckets, you must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com/key-name\n . Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the\n Amazon S3 User Guide.

              \n
              \n
              \n
              \n

              The following actions are related to HeadObject:

              \n ", "smithy.api#http": { "method": "HEAD", "uri": "/{Bucket}/{Key+}", @@ -26351,7 +26351,7 @@ "com.amazonaws.s3#ListBuckets": { "type": "operation", "input": { - "target": "smithy.api#Unit" + "target": "com.amazonaws.s3#ListBucketsRequest" }, "output": { "target": "com.amazonaws.s3#ListBucketsOutput" @@ -26388,6 +26388,12 @@ "method": "GET", "uri": "/?x-id=ListBuckets", "code": 200 + }, + "smithy.api#paginated": { + "inputToken": "ContinuationToken", + "outputToken": "ContinuationToken", + "items": "Buckets", + "pageSize": "MaxBuckets" } } }, @@ -26405,6 +26411,12 @@ "traits": { "smithy.api#documentation": "

              The owner of the buckets listed.

              " } + }, + "ContinuationToken": { + "target": "com.amazonaws.s3#NextToken", + "traits": { + "smithy.api#documentation": "

              \n ContinuationToken is included in the\n response when there are more buckets that can be listed with pagination. The next ListBuckets request to Amazon S3 can be continued with this ContinuationToken. ContinuationToken is obfuscated and is not a real bucket.

              " + } } }, "traits": { @@ -26412,6 +26424,28 @@ "smithy.api#xmlName": "ListAllMyBucketsResult" } }, + "com.amazonaws.s3#ListBucketsRequest": { + "type": "structure", + "members": { + "MaxBuckets": { + "target": "com.amazonaws.s3#MaxBuckets", + "traits": { + "smithy.api#documentation": "

              Maximum number of buckets to be returned in response. When the number is more than the count of buckets that are owned by an Amazon Web Services account, return all the buckets in response.

              ", + "smithy.api#httpQuery": "max-buckets" + } + }, + "ContinuationToken": { + "target": "com.amazonaws.s3#Token", + "traits": { + "smithy.api#documentation": "

              \n ContinuationToken indicates to Amazon S3 that the list is being continued on\n this bucket with a token. ContinuationToken is obfuscated and is not a real\n key. You can use this ContinuationToken for pagination of the list results.

              \n

              Length Constraints: Minimum length of 0. Maximum length of 1024.

              \n

              Required: No.

              ", + "smithy.api#httpQuery": "continuation-token" + } + } + }, + "traits": { + "smithy.api#input": {} + } + }, "com.amazonaws.s3#ListDirectoryBuckets": { "type": "operation", "input": { @@ -26466,7 +26500,7 @@ "ContinuationToken": { "target": "com.amazonaws.s3#DirectoryBucketToken", "traits": { - "smithy.api#documentation": "

              \n ContinuationToken indicates to Amazon S3 that the list is being continued on\n this bucket with a token. ContinuationToken is obfuscated and is not a real\n key. You can use this ContinuationToken for pagination of the list results.

              ", + "smithy.api#documentation": "

              \n ContinuationToken indicates to Amazon S3 that the list is being continued on buckets in this account with a token. ContinuationToken is obfuscated and is not a real\n bucket name. You can use this ContinuationToken for the pagination of the list results.

              ", "smithy.api#httpQuery": "continuation-token" } }, @@ -26491,7 +26525,7 @@ "target": "com.amazonaws.s3#ListMultipartUploadsOutput" }, "traits": { - "smithy.api#documentation": "

              This operation lists in-progress multipart uploads in a bucket. An in-progress multipart upload is a\n multipart upload that has been initiated by the CreateMultipartUpload request, but\n has not yet been completed or aborted.

              \n \n

              \n Directory buckets - \n If multipart uploads in a directory bucket are in progress, you can't delete the bucket until all the in-progress multipart uploads are aborted or completed.\n

              \n
              \n

              The ListMultipartUploads operation returns a maximum of 1,000 multipart uploads in the response. The limit of 1,000 multipart\n uploads is also the default\n value. You can further limit the number of uploads in a response by specifying the\n max-uploads request parameter. If there are more than 1,000 multipart uploads that \n satisfy your ListMultipartUploads request, the response returns an IsTruncated element\n with the value of true, a NextKeyMarker element, and a NextUploadIdMarker element. \n To list the remaining multipart uploads, you need to make subsequent ListMultipartUploads requests. \n In these requests, include two query parameters: key-marker and upload-id-marker. \n Set the value of key-marker to the NextKeyMarker value from the previous response. \n Similarly, set the value of upload-id-marker to the NextUploadIdMarker value from the previous response.

              \n \n

              \n Directory buckets - The upload-id-marker element and \n the NextUploadIdMarker element aren't supported by directory buckets. \n To list the additional multipart uploads, you only need to set the value of key-marker to the NextKeyMarker value from the previous response.

              \n
              \n

              For more information about multipart uploads, see Uploading Objects Using Multipart\n Upload in the Amazon S3\n User Guide.

              \n \n

              \n Directory buckets - For directory buckets, you must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com/key-name\n . Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the\n Amazon S3 User Guide.

              \n
              \n
              \n
              Permissions
              \n
              \n
                \n
              • \n

                \n General purpose bucket permissions - For information about permissions required to use the multipart upload API, see Multipart Upload\n and Permissions in the Amazon S3\n User Guide.

                \n
              • \n
              • \n

                \n Directory bucket permissions - To grant access to this API operation on a directory bucket, we recommend that you use the \n CreateSession\n API operation for session-based authorization. Specifically, you grant the s3express:CreateSession permission to the directory bucket in a bucket policy or an IAM identity-based policy. Then, you make the CreateSession API call on the bucket to obtain a session token. With the session token in your request header, you can make API requests to this operation. After the session token expires, you make another CreateSession API call to generate a new session token for use. \nAmazon Web Services CLI or SDKs create session and refresh the session token automatically to avoid service interruptions when a session expires. For more information about authorization, see \n CreateSession\n .

                \n
              • \n
              \n
              \n
              Sorting of multipart uploads in response
              \n
              \n
                \n
              • \n

                \n General purpose bucket - In the ListMultipartUploads response, the multipart uploads are sorted based on two criteria:

                \n
                  \n
                • \n

                  Key-based sorting - Multipart uploads are initially sorted in ascending order based on their object keys.

                  \n
                • \n
                • \n

                  Time-based sorting - For uploads that share the same object key, \n they are further sorted in ascending order based on the upload initiation time. Among uploads with the same key, the one that was initiated first will appear before the ones that were initiated later.

                  \n
                • \n
                \n
              • \n
              • \n

                \n Directory bucket - In the ListMultipartUploads response, the multipart uploads aren't sorted lexicographically based on the object keys. \n \n

                \n
              • \n
              \n
              \n
              HTTP Host header syntax
              \n
              \n

              \n Directory buckets - The HTTP Host header syntax is \n Bucket_name.s3express-az_id.region.amazonaws.com.

              \n
              \n
              \n

              The following operations are related to ListMultipartUploads:

              \n ", + "smithy.api#documentation": "

              This operation lists in-progress multipart uploads in a bucket. An in-progress multipart upload is a\n multipart upload that has been initiated by the CreateMultipartUpload request, but\n has not yet been completed or aborted.

              \n \n

              \n Directory buckets - \n If multipart uploads in a directory bucket are in progress, you can't delete the bucket until all the in-progress multipart uploads are aborted or completed. \n To delete these in-progress multipart uploads, use the ListMultipartUploads operation to list the in-progress multipart\n uploads in the bucket and use the AbortMultupartUpload operation to abort all the in-progress multipart uploads.\n

              \n
              \n

              The ListMultipartUploads operation returns a maximum of 1,000 multipart uploads in the response. The limit of 1,000 multipart\n uploads is also the default\n value. You can further limit the number of uploads in a response by specifying the\n max-uploads request parameter. If there are more than 1,000 multipart uploads that \n satisfy your ListMultipartUploads request, the response returns an IsTruncated element\n with the value of true, a NextKeyMarker element, and a NextUploadIdMarker element. \n To list the remaining multipart uploads, you need to make subsequent ListMultipartUploads requests. \n In these requests, include two query parameters: key-marker and upload-id-marker. \n Set the value of key-marker to the NextKeyMarker value from the previous response. \n Similarly, set the value of upload-id-marker to the NextUploadIdMarker value from the previous response.

              \n \n

              \n Directory buckets - The upload-id-marker element and \n the NextUploadIdMarker element aren't supported by directory buckets. \n To list the additional multipart uploads, you only need to set the value of key-marker to the NextKeyMarker value from the previous response.

              \n
              \n

              For more information about multipart uploads, see Uploading Objects Using Multipart\n Upload in the Amazon S3\n User Guide.

              \n \n

              \n Directory buckets - For directory buckets, you must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com/key-name\n . Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the\n Amazon S3 User Guide.

              \n
              \n
              \n
              Permissions
              \n
              \n
                \n
              • \n

                \n General purpose bucket permissions - For information about permissions required to use the multipart upload API, see Multipart Upload\n and Permissions in the Amazon S3\n User Guide.

                \n
              • \n
              • \n

                \n Directory bucket permissions - To grant access to this API operation on a directory bucket, we recommend that you use the \n CreateSession\n API operation for session-based authorization. Specifically, you grant the s3express:CreateSession permission to the directory bucket in a bucket policy or an IAM identity-based policy. Then, you make the CreateSession API call on the bucket to obtain a session token. With the session token in your request header, you can make API requests to this operation. After the session token expires, you make another CreateSession API call to generate a new session token for use. \nAmazon Web Services CLI or SDKs create session and refresh the session token automatically to avoid service interruptions when a session expires. For more information about authorization, see \n CreateSession\n .

                \n
              • \n
              \n
              \n
              Sorting of multipart uploads in response
              \n
              \n
                \n
              • \n

                \n General purpose bucket - In the ListMultipartUploads response, the multipart uploads are sorted based on two criteria:

                \n
                  \n
                • \n

                  Key-based sorting - Multipart uploads are initially sorted in ascending order based on their object keys.

                  \n
                • \n
                • \n

                  Time-based sorting - For uploads that share the same object key, \n they are further sorted in ascending order based on the upload initiation time. Among uploads with the same key, the one that was initiated first will appear before the ones that were initiated later.

                  \n
                • \n
                \n
              • \n
              • \n

                \n Directory bucket - In the ListMultipartUploads response, the multipart uploads aren't sorted lexicographically based on the object keys. \n \n

                \n
              • \n
              \n
              \n
              HTTP Host header syntax
              \n
              \n

              \n Directory buckets - The HTTP Host header syntax is \n Bucket_name.s3express-az_id.region.amazonaws.com.

              \n
              \n
              \n

              The following operations are related to ListMultipartUploads:

              \n ", "smithy.api#examples": [ { "title": "To list in-progress multipart uploads on a bucket", @@ -27028,7 +27062,7 @@ "EncodingType": { "target": "com.amazonaws.s3#EncodingType", "traits": { - "smithy.api#documentation": "

              Encoding type used by Amazon S3 to encode object keys in the response. If using\n url, non-ASCII characters used in an object's key name will be URL encoded.\n For example, the object test_file(3).png will appear as\n test_file%283%29.png.

              " + "smithy.api#documentation": "

              Encoding type used by Amazon S3 to encode the object keys in the response.\n Responses are encoded only in UTF-8. An object key can contain any Unicode character.\n However, the XML 1.0 parser can't parse certain characters, such as characters with an\n ASCII value from 0 to 10. For characters that aren't supported in XML 1.0, you can add this\n parameter to request that Amazon S3 encode the keys in the response. For more information about\n characters to avoid in object key names, see Object key naming\n guidelines.

              \n \n

              When using the URL encoding type, non-ASCII characters that are used in an object's\n key name will be percent-encoded according to UTF-8 code values. For example, the object\n test_file(3).png will appear as\n test_file%283%29.png.

              \n
              " } }, "RequestCharged": { @@ -27134,7 +27168,7 @@ } ], "traits": { - "smithy.api#documentation": "

              Returns some or all (up to 1,000) of the objects in a bucket with each request. You can\n use the request parameters as selection criteria to return a subset of the objects in a\n bucket. A 200 OK response can contain valid or invalid XML. Make sure to\n design your application to parse the contents of the response and handle it appropriately.\n \n For more information about listing objects, see Listing object keys\n programmatically in the Amazon S3 User Guide. To get a list of your buckets, see ListBuckets.

              \n \n

              \n Directory buckets - For directory buckets, you must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com/key-name\n . Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the\n Amazon S3 User Guide.

              \n
              \n
              \n
              Permissions
              \n
              \n
                \n
              • \n

                \n General purpose bucket permissions - To use this operation, you must have READ access to the bucket. You must have permission to perform\n the s3:ListBucket action. The bucket owner has this permission by default and\n can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing\n Access Permissions to Your Amazon S3 Resources in the\n Amazon S3 User Guide.

                \n
              • \n
              • \n

                \n Directory bucket permissions - To grant access to this API operation on a directory bucket, we recommend that you use the \n CreateSession\n API operation for session-based authorization. Specifically, you grant the s3express:CreateSession permission to the directory bucket in a bucket policy or an IAM identity-based policy. Then, you make the CreateSession API call on the bucket to obtain a session token. With the session token in your request header, you can make API requests to this operation. After the session token expires, you make another CreateSession API call to generate a new session token for use. \nAmazon Web Services CLI or SDKs create session and refresh the session token automatically to avoid service interruptions when a session expires. For more information about authorization, see \n CreateSession\n .

                \n
              • \n
              \n
              \n
              Sorting order of returned objects
              \n
              \n
                \n
              • \n

                \n General purpose bucket - For general purpose buckets, ListObjectsV2 returns objects in lexicographical order based on their key names.

                \n
              • \n
              • \n

                \n Directory bucket - For directory buckets, ListObjectsV2 does not return objects in lexicographical order.

                \n
              • \n
              \n
              \n
              HTTP Host header syntax
              \n
              \n

              \n Directory buckets - The HTTP Host header syntax is \n Bucket_name.s3express-az_id.region.amazonaws.com.

              \n
              \n
              \n \n

              This section describes the latest revision of this action. We recommend that you use\n this revised API operation for application development. For backward compatibility, Amazon S3\n continues to support the prior version of this API operation, ListObjects.

              \n
              \n

              The following operations are related to ListObjectsV2:

              \n ", + "smithy.api#documentation": "

              Returns some or all (up to 1,000) of the objects in a bucket with each request. You can\n use the request parameters as selection criteria to return a subset of the objects in a\n bucket. A 200 OK response can contain valid or invalid XML. Make sure to\n design your application to parse the contents of the response and handle it appropriately.\n \n For more information about listing objects, see Listing object keys\n programmatically in the Amazon S3 User Guide. To get a list of your buckets, see ListBuckets.

              \n \n
                \n
              • \n

                \n General purpose bucket - For general purpose buckets, ListObjectsV2 doesn't return prefixes that are related only to in-progress multipart uploads.

                \n
              • \n
              • \n

                \n Directory buckets - \n For directory buckets, ListObjectsV2 response includes the prefixes that are related only to in-progress multipart uploads.\n

                \n
              • \n
              • \n

                \n Directory buckets - For directory buckets, you must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format https://bucket_name.s3express-az_id.region.amazonaws.com/key-name\n . Path-style requests are not supported. For more information, see Regional and Zonal endpoints in the\n Amazon S3 User Guide.

                \n
              • \n
              \n
              \n
              \n
              Permissions
              \n
              \n
                \n
              • \n

                \n General purpose bucket permissions - To use this operation, you must have READ access to the bucket. You must have permission to perform\n the s3:ListBucket action. The bucket owner has this permission by default and\n can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing\n Access Permissions to Your Amazon S3 Resources in the\n Amazon S3 User Guide.

                \n
              • \n
              • \n

                \n Directory bucket permissions - To grant access to this API operation on a directory bucket, we recommend that you use the \n CreateSession\n API operation for session-based authorization. Specifically, you grant the s3express:CreateSession permission to the directory bucket in a bucket policy or an IAM identity-based policy. Then, you make the CreateSession API call on the bucket to obtain a session token. With the session token in your request header, you can make API requests to this operation. After the session token expires, you make another CreateSession API call to generate a new session token for use. \nAmazon Web Services CLI or SDKs create session and refresh the session token automatically to avoid service interruptions when a session expires. For more information about authorization, see \n CreateSession\n .

                \n
              • \n
              \n
              \n
              Sorting order of returned objects
              \n
              \n
                \n
              • \n

                \n General purpose bucket - For general purpose buckets, ListObjectsV2 returns objects in lexicographical order based on their key names.

                \n
              • \n
              • \n

                \n Directory bucket - For directory buckets, ListObjectsV2 does not return objects in lexicographical order.

                \n
              • \n
              \n
              \n
              HTTP Host header syntax
              \n
              \n

              \n Directory buckets - The HTTP Host header syntax is \n Bucket_name.s3express-az_id.region.amazonaws.com.

              \n
              \n
              \n \n

              This section describes the latest revision of this action. We recommend that you use\n this revised API operation for application development. For backward compatibility, Amazon S3\n continues to support the prior version of this API operation, ListObjects.

              \n
              \n

              The following operations are related to ListObjectsV2:

              \n ", "smithy.api#http": { "method": "GET", "uri": "/{Bucket}?list-type=2", @@ -27260,7 +27294,7 @@ "EncodingType": { "target": "com.amazonaws.s3#EncodingType", "traits": { - "smithy.api#documentation": "

              Encoding type used by Amazon S3 to encode object keys in the response. If using\n url, non-ASCII characters used in an object's key name will be URL encoded.\n For example, the object test_file(3).png will appear as\n test_file%283%29.png.

              ", + "smithy.api#documentation": "

              Encoding type used by Amazon S3 to encode the object keys in the response.\n Responses are encoded only in UTF-8. An object key can contain any Unicode character.\n However, the XML 1.0 parser can't parse certain characters, such as characters with an\n ASCII value from 0 to 10. For characters that aren't supported in XML 1.0, you can add this\n parameter to request that Amazon S3 encode the keys in the response. For more information about\n characters to avoid in object key names, see Object key naming\n guidelines.

              \n \n

              When using the URL encoding type, non-ASCII characters that are used in an object's\n key name will be percent-encoded according to UTF-8 code values. For example, the object\n test_file(3).png will appear as\n test_file%283%29.png.

              \n
              ", "smithy.api#httpQuery": "encoding-type" } }, @@ -27657,6 +27691,15 @@ "com.amazonaws.s3#MaxAgeSeconds": { "type": "integer" }, + "com.amazonaws.s3#MaxBuckets": { + "type": "integer", + "traits": { + "smithy.api#range": { + "min": 1, + "max": 1000 + } + } + }, "com.amazonaws.s3#MaxDirectoryBuckets": { "type": "integer", "traits": { @@ -28882,7 +28925,7 @@ "PartitionDateSource": { "target": "com.amazonaws.s3#PartitionDateSource", "traits": { - "smithy.api#documentation": "

              Specifies the partition date source for the partitioned prefix. PartitionDateSource can be EventTime or DeliveryTime.

              " + "smithy.api#documentation": "

              Specifies the partition date source for the partitioned prefix.\n PartitionDateSource can be EventTime or\n DeliveryTime.

              \n

              For DeliveryTime, the time in the log file names corresponds to the\n delivery time for the log files.

              \n

              For EventTime, The logs delivered are for a specific day only. The year,\n month, and day correspond to the day on which the event occurred, and the hour, minutes and\n seconds are set to 00 in the key.

              " } } }, @@ -29067,7 +29110,7 @@ "RestrictPublicBuckets": { "target": "com.amazonaws.s3#Setting", "traits": { - "smithy.api#documentation": "

              Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting\n this element to TRUE restricts access to this bucket to only Amazon Web Service principals and authorized users within this account if the bucket has\n a public policy.

              \n

              Enabling this setting doesn't affect previously stored bucket policies, except that\n public and cross-account access within any public bucket policy, including non-public\n delegation to specific accounts, is blocked.

              ", + "smithy.api#documentation": "

              Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting\n this element to TRUE restricts access to this bucket to only Amazon Web Servicesservice principals and authorized users within this account if the bucket has\n a public policy.

              \n

              Enabling this setting doesn't affect previously stored bucket policies, except that\n public and cross-account access within any public bucket policy, including non-public\n delegation to specific accounts, is blocked.

              ", "smithy.api#xmlName": "RestrictPublicBuckets" } } @@ -29450,7 +29493,7 @@ "requestAlgorithmMember": "ChecksumAlgorithm", "requestChecksumRequired": true }, - "smithy.api#documentation": "\n

              This operation is not supported by directory buckets.

              \n
              \n

              This action uses the encryption subresource to configure default encryption\n and Amazon S3 Bucket Keys for an existing bucket.

              \n

              By default, all buckets have a default encryption configuration that uses server-side\n encryption with Amazon S3 managed keys (SSE-S3). You can optionally configure default encryption\n for a bucket by using server-side encryption with Key Management Service (KMS) keys (SSE-KMS) or\n dual-layer server-side encryption with Amazon Web Services KMS keys (DSSE-KMS). If you specify default encryption by using\n SSE-KMS, you can also configure Amazon S3 Bucket\n Keys. If you use PutBucketEncryption to set your default bucket encryption to SSE-KMS, you should verify that your KMS key ID is correct. Amazon S3 does not validate the KMS key ID provided in PutBucketEncryption requests.

              \n \n

              This action requires Amazon Web Services Signature Version 4. For more information, see \n Authenticating Requests (Amazon Web Services Signature Version 4).

              \n
              \n

              To use this operation, you must have permission to perform the\n s3:PutEncryptionConfiguration action. The bucket owner has this permission\n by default. The bucket owner can grant this permission to others. For more information\n about permissions, see Permissions Related to Bucket Subresource Operations and Managing\n Access Permissions to Your Amazon S3 Resources in the\n Amazon S3 User Guide.

              \n

              The following operations are related to PutBucketEncryption:

              \n ", + "smithy.api#documentation": "\n

              This operation is not supported by directory buckets.

              \n
              \n

              This action uses the encryption subresource to configure default encryption\n and Amazon S3 Bucket Keys for an existing bucket.

              \n

              By default, all buckets have a default encryption configuration that uses server-side\n encryption with Amazon S3 managed keys (SSE-S3). You can optionally configure default encryption\n for a bucket by using server-side encryption with Key Management Service (KMS) keys (SSE-KMS) or\n dual-layer server-side encryption with Amazon Web Services KMS keys (DSSE-KMS). If you specify default encryption by using\n SSE-KMS, you can also configure Amazon S3 Bucket\n Keys. If you use PutBucketEncryption to set your default bucket encryption to SSE-KMS, you should verify that your KMS key ID is correct. Amazon S3 does not validate the KMS key ID provided in PutBucketEncryption requests.

              \n \n

              If you're specifying a customer managed KMS key, we recommend using a fully qualified\n KMS key ARN. If you use a KMS key alias instead, then KMS resolves the key within the\n requester’s account. This behavior can result in data that's encrypted with a KMS key\n that belongs to the requester, and not the bucket owner.

              \n

              Also, this action requires Amazon Web Services Signature Version 4. For more information, see \n Authenticating Requests (Amazon Web Services Signature Version 4).

              \n
              \n

              To use this operation, you must have permission to perform the\n s3:PutEncryptionConfiguration action. The bucket owner has this permission\n by default. The bucket owner can grant this permission to others. For more information\n about permissions, see Permissions Related to Bucket Subresource Operations and Managing\n Access Permissions to Your Amazon S3 Resources in the\n Amazon S3 User Guide.

              \n

              The following operations are related to PutBucketEncryption:

              \n ", "smithy.api#http": { "method": "PUT", "uri": "/{Bucket}?encryption", @@ -30431,7 +30474,7 @@ "requestAlgorithmMember": "ChecksumAlgorithm", "requestChecksumRequired": true }, - "smithy.api#documentation": "\n

              This operation is not supported by directory buckets.

              \n
              \n

              Sets the versioning state of an existing bucket.

              \n

              You can set the versioning state with one of the following values:

              \n

              \n Enabled—Enables versioning for the objects in the\n bucket. All objects added to the bucket receive a unique version ID.

              \n

              \n Suspended—Disables versioning for the objects in the\n bucket. All objects added to the bucket receive the version ID null.

              \n

              If the versioning state has never been set on a bucket, it has no versioning state; a\n GetBucketVersioning request does not return a versioning state value.

              \n

              In order to enable MFA Delete, you must be the bucket owner. If you are the bucket owner\n and want to enable MFA Delete in the bucket versioning configuration, you must include the\n x-amz-mfa request header and the Status and the\n MfaDelete request elements in a request to set the versioning state of the\n bucket.

              \n \n

              If you have an object expiration lifecycle configuration in your non-versioned bucket\n and you want to maintain the same permanent delete behavior when you enable versioning,\n you must add a noncurrent expiration policy. The noncurrent expiration lifecycle\n configuration will manage the deletes of the noncurrent object versions in the\n version-enabled bucket. (A version-enabled bucket maintains one current and zero or more\n noncurrent object versions.) For more information, see Lifecycle and Versioning.

              \n
              \n

              The following operations are related to PutBucketVersioning:

              \n ", + "smithy.api#documentation": "\n

              This operation is not supported by directory buckets.

              \n
              \n \n

              When you enable versioning on a bucket for the first time, it might take a short\n amount of time for the change to be fully propagated. We recommend that you wait for 15\n minutes after enabling versioning before issuing write operations\n (PUT\n or\n DELETE)\n on objects in the bucket.

              \n
              \n

              Sets the versioning state of an existing bucket.

              \n

              You can set the versioning state with one of the following values:

              \n

              \n Enabled—Enables versioning for the objects in the\n bucket. All objects added to the bucket receive a unique version ID.

              \n

              \n Suspended—Disables versioning for the objects in the\n bucket. All objects added to the bucket receive the version ID null.

              \n

              If the versioning state has never been set on a bucket, it has no versioning state; a\n GetBucketVersioning request does not return a versioning state value.

              \n

              In order to enable MFA Delete, you must be the bucket owner. If you are the bucket owner\n and want to enable MFA Delete in the bucket versioning configuration, you must include the\n x-amz-mfa request header and the Status and the\n MfaDelete request elements in a request to set the versioning state of the\n bucket.

              \n \n

              If you have an object expiration lifecycle configuration in your non-versioned bucket\n and you want to maintain the same permanent delete behavior when you enable versioning,\n you must add a noncurrent expiration policy. The noncurrent expiration lifecycle\n configuration will manage the deletes of the noncurrent object versions in the\n version-enabled bucket. (A version-enabled bucket maintains one current and zero or more\n noncurrent object versions.) For more information, see Lifecycle and Versioning.

              \n
              \n

              The following operations are related to PutBucketVersioning:

              \n ", "smithy.api#examples": [ { "title": "Set versioning configuration on a bucket", @@ -31874,7 +31917,7 @@ "Payload": { "target": "com.amazonaws.s3#Body", "traits": { - "smithy.api#documentation": "

              The byte array of partial, one or more result records.

              ", + "smithy.api#documentation": "

              The byte array of partial, one or more result records. S3 Select doesn't guarantee that\n a record will be self-contained in one record frame. To ensure continuous streaming of\n data, S3 Select might split the same record across multiple record frames instead of\n aggregating the results in memory. Some S3 clients (for example, the SDK for Java) handle this behavior by creating a ByteStream out of the response by\n default. Other clients might not handle this behavior by default. In those cases, you must\n aggregate the results on the client side and parse the response.

              ", "smithy.api#eventPayload": {} } } @@ -32947,7 +32990,7 @@ } }, "traits": { - "smithy.api#documentation": "

              Describes the default server-side encryption to apply to new objects in the bucket. If a\n PUT Object request doesn't specify any server-side encryption, this default encryption will\n be applied. If you don't specify a customer managed key at configuration, Amazon S3 automatically creates\n an Amazon Web Services KMS key in your Amazon Web Services account the first time that you add an object encrypted\n with SSE-KMS to a bucket. By default, Amazon S3 uses this KMS key for SSE-KMS. For more\n information, see PUT Bucket encryption in\n the Amazon S3 API Reference.

              " + "smithy.api#documentation": "

              Describes the default server-side encryption to apply to new objects in the bucket. If a\n PUT Object request doesn't specify any server-side encryption, this default encryption will\n be applied. If you don't specify a customer managed key at configuration, Amazon S3 automatically creates\n an Amazon Web Services KMS key in your Amazon Web Services account the first time that you add an object encrypted\n with SSE-KMS to a bucket. By default, Amazon S3 uses this KMS key for SSE-KMS. For more\n information, see PUT Bucket encryption in\n the Amazon S3 API Reference.

              \n \n

              If you're specifying a customer managed KMS key, we recommend using a fully qualified\n KMS key ARN. If you use a KMS key alias instead, then KMS resolves the key within the\n requester’s account. This behavior can result in data that's encrypted with a KMS key\n that belongs to the requester, and not the bucket owner.

              \n
              " } }, "com.amazonaws.s3#ServerSideEncryptionConfiguration": { @@ -32984,7 +33027,7 @@ } }, "traits": { - "smithy.api#documentation": "

              Specifies the default server-side encryption configuration.

              " + "smithy.api#documentation": "

              Specifies the default server-side encryption configuration.

              \n \n

              If you're specifying a customer managed KMS key, we recommend using a fully qualified\n KMS key ARN. If you use a KMS key alias instead, then KMS resolves the key within the\n requester’s account. This behavior can result in data that's encrypted with a KMS key\n that belongs to the requester, and not the bucket owner.

              \n
              " } }, "com.amazonaws.s3#ServerSideEncryptionRules": { From 05ff22bfc526d93628f7bf5bdf48126be2a15c65 Mon Sep 17 00:00:00 2001 From: awstools Date: Thu, 15 Aug 2024 18:16:06 +0000 Subject: [PATCH 8/9] feat(clients): update client endpoints as of 2024-08-15 --- .../aws/typescript/codegen/endpoints.json | 145 +++++++++++++++--- 1 file changed, 122 insertions(+), 23 deletions(-) diff --git a/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/endpoints.json b/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/endpoints.json index 12ed8d1fc2b72..943af1036a260 100644 --- a/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/endpoints.json +++ b/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/endpoints.json @@ -1759,6 +1759,7 @@ "ap-southeast-1": {}, "ap-southeast-2": {}, "ap-southeast-3": {}, + "ap-southeast-4": {}, "ca-central-1": {}, "eu-central-1": {}, "eu-central-2": {}, @@ -1768,6 +1769,7 @@ "eu-west-1": {}, "eu-west-2": {}, "eu-west-3": {}, + "il-central-1": {}, "me-central-1": {}, "me-south-1": {}, "sa-east-1": {}, @@ -5972,12 +5974,6 @@ ] }, "endpoints": { - "af-south-1": { - "hostname": "datazone.af-south-1.api.aws" - }, - "ap-east-1": { - "hostname": "datazone.ap-east-1.api.aws" - }, "ap-northeast-1": { "hostname": "datazone.ap-northeast-1.api.aws" }, @@ -5987,9 +5983,6 @@ "ap-northeast-3": { "hostname": "datazone.ap-northeast-3.api.aws" }, - "ap-south-1": { - "hostname": "datazone.ap-south-1.api.aws" - }, "ap-south-2": { "hostname": "datazone.ap-south-2.api.aws" }, @@ -6020,18 +6013,12 @@ "eu-central-1": { "hostname": "datazone.eu-central-1.api.aws" }, - "eu-central-2": { - "hostname": "datazone.eu-central-2.api.aws" - }, "eu-north-1": { "hostname": "datazone.eu-north-1.api.aws" }, "eu-south-1": { "hostname": "datazone.eu-south-1.api.aws" }, - "eu-south-2": { - "hostname": "datazone.eu-south-2.api.aws" - }, "eu-west-1": { "hostname": "datazone.eu-west-1.api.aws" }, @@ -11992,8 +11979,22 @@ "ap-southeast-2": {}, "ap-southeast-3": {}, "ap-southeast-4": {}, - "ca-central-1": {}, - "ca-west-1": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "kinesisanalytics-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "kinesisanalytics-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, "eu-central-1": {}, "eu-central-2": {}, "eu-north-1": {}, @@ -12002,14 +12003,84 @@ "eu-west-1": {}, "eu-west-2": {}, "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "kinesisanalytics-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "kinesisanalytics-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "kinesisanalytics-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "kinesisanalytics-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "kinesisanalytics-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "kinesisanalytics-fips.us-west-2.amazonaws.com" + }, "il-central-1": {}, "me-central-1": {}, "me-south-1": {}, "sa-east-1": {}, - "us-east-1": {}, - "us-east-2": {}, - "us-west-1": {}, - "us-west-2": {} + "us-east-1": { + "variants": [ + { + "hostname": "kinesisanalytics-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "kinesisanalytics-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "kinesisanalytics-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "kinesisanalytics-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } } }, "kinesisvideo": { @@ -28880,8 +28951,36 @@ }, "kinesisanalytics": { "endpoints": { - "us-gov-east-1": {}, - "us-gov-west-1": {} + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "kinesisanalytics-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "kinesisanalytics-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "kinesisanalytics-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "kinesisanalytics-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } } }, "kinesisvideo": { From 704fc4755a1d4eb9b88618a94af6d3bcda1391da Mon Sep 17 00:00:00 2001 From: awstools Date: Thu, 15 Aug 2024 18:32:59 +0000 Subject: [PATCH 9/9] Publish v3.632.0 --- CHANGELOG.md | 22 +++++++++++++++++++ benchmark/size/report.md | 8 +++---- clients/client-accessanalyzer/CHANGELOG.md | 8 +++++++ clients/client-accessanalyzer/package.json | 2 +- clients/client-account/CHANGELOG.md | 8 +++++++ clients/client-account/package.json | 2 +- clients/client-acm-pca/CHANGELOG.md | 8 +++++++ clients/client-acm-pca/package.json | 2 +- clients/client-acm/CHANGELOG.md | 8 +++++++ clients/client-acm/package.json | 2 +- clients/client-amp/CHANGELOG.md | 8 +++++++ clients/client-amp/package.json | 2 +- clients/client-amplify/CHANGELOG.md | 8 +++++++ clients/client-amplify/package.json | 2 +- clients/client-amplifybackend/CHANGELOG.md | 8 +++++++ clients/client-amplifybackend/package.json | 2 +- clients/client-amplifyuibuilder/CHANGELOG.md | 8 +++++++ clients/client-amplifyuibuilder/package.json | 2 +- clients/client-api-gateway/CHANGELOG.md | 8 +++++++ clients/client-api-gateway/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- clients/client-apigatewayv2/CHANGELOG.md | 8 +++++++ clients/client-apigatewayv2/package.json | 2 +- clients/client-app-mesh/CHANGELOG.md | 8 +++++++ clients/client-app-mesh/package.json | 2 +- clients/client-appconfig/CHANGELOG.md | 8 +++++++ clients/client-appconfig/package.json | 2 +- clients/client-appconfigdata/CHANGELOG.md | 8 +++++++ clients/client-appconfigdata/package.json | 2 +- clients/client-appfabric/CHANGELOG.md | 8 +++++++ clients/client-appfabric/package.json | 2 +- clients/client-appflow/CHANGELOG.md | 8 +++++++ clients/client-appflow/package.json | 2 +- clients/client-appintegrations/CHANGELOG.md | 8 +++++++ clients/client-appintegrations/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../client-application-insights/CHANGELOG.md | 8 +++++++ .../client-application-insights/package.json | 2 +- .../client-application-signals/CHANGELOG.md | 8 +++++++ .../client-application-signals/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- clients/client-apprunner/CHANGELOG.md | 8 +++++++ clients/client-apprunner/package.json | 2 +- clients/client-appstream/CHANGELOG.md | 8 +++++++ clients/client-appstream/package.json | 2 +- clients/client-appsync/CHANGELOG.md | 8 +++++++ clients/client-appsync/package.json | 2 +- clients/client-apptest/CHANGELOG.md | 8 +++++++ clients/client-apptest/package.json | 2 +- clients/client-arc-zonal-shift/CHANGELOG.md | 8 +++++++ clients/client-arc-zonal-shift/package.json | 2 +- clients/client-artifact/CHANGELOG.md | 8 +++++++ clients/client-artifact/package.json | 2 +- clients/client-athena/CHANGELOG.md | 8 +++++++ clients/client-athena/package.json | 2 +- clients/client-auditmanager/CHANGELOG.md | 8 +++++++ clients/client-auditmanager/package.json | 2 +- .../client-auto-scaling-plans/CHANGELOG.md | 8 +++++++ .../client-auto-scaling-plans/package.json | 2 +- clients/client-auto-scaling/CHANGELOG.md | 8 +++++++ clients/client-auto-scaling/package.json | 2 +- clients/client-b2bi/CHANGELOG.md | 8 +++++++ clients/client-b2bi/package.json | 2 +- clients/client-backup-gateway/CHANGELOG.md | 8 +++++++ clients/client-backup-gateway/package.json | 2 +- clients/client-backup/CHANGELOG.md | 8 +++++++ clients/client-backup/package.json | 2 +- clients/client-batch/CHANGELOG.md | 8 +++++++ clients/client-batch/package.json | 2 +- clients/client-bcm-data-exports/CHANGELOG.md | 8 +++++++ clients/client-bcm-data-exports/package.json | 2 +- .../client-bedrock-agent-runtime/CHANGELOG.md | 8 +++++++ .../client-bedrock-agent-runtime/package.json | 2 +- clients/client-bedrock-agent/CHANGELOG.md | 8 +++++++ clients/client-bedrock-agent/package.json | 2 +- clients/client-bedrock-runtime/CHANGELOG.md | 8 +++++++ clients/client-bedrock-runtime/package.json | 2 +- clients/client-bedrock/CHANGELOG.md | 8 +++++++ clients/client-bedrock/package.json | 2 +- clients/client-billingconductor/CHANGELOG.md | 8 +++++++ clients/client-billingconductor/package.json | 2 +- clients/client-braket/CHANGELOG.md | 8 +++++++ clients/client-braket/package.json | 2 +- clients/client-budgets/CHANGELOG.md | 8 +++++++ clients/client-budgets/package.json | 2 +- clients/client-chatbot/CHANGELOG.md | 8 +++++++ clients/client-chatbot/package.json | 2 +- .../client-chime-sdk-identity/CHANGELOG.md | 8 +++++++ .../client-chime-sdk-identity/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../client-chime-sdk-meetings/CHANGELOG.md | 8 +++++++ .../client-chime-sdk-meetings/package.json | 2 +- .../client-chime-sdk-messaging/CHANGELOG.md | 8 +++++++ .../client-chime-sdk-messaging/package.json | 2 +- clients/client-chime-sdk-voice/CHANGELOG.md | 8 +++++++ clients/client-chime-sdk-voice/package.json | 2 +- clients/client-chime/CHANGELOG.md | 8 +++++++ clients/client-chime/package.json | 2 +- clients/client-cleanrooms/CHANGELOG.md | 8 +++++++ clients/client-cleanrooms/package.json | 2 +- clients/client-cleanroomsml/CHANGELOG.md | 8 +++++++ clients/client-cleanroomsml/package.json | 2 +- clients/client-cloud9/CHANGELOG.md | 8 +++++++ clients/client-cloud9/package.json | 2 +- clients/client-cloudcontrol/CHANGELOG.md | 8 +++++++ clients/client-cloudcontrol/package.json | 2 +- clients/client-clouddirectory/CHANGELOG.md | 8 +++++++ clients/client-clouddirectory/package.json | 2 +- clients/client-cloudformation/CHANGELOG.md | 8 +++++++ clients/client-cloudformation/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- clients/client-cloudfront/CHANGELOG.md | 8 +++++++ clients/client-cloudfront/package.json | 2 +- clients/client-cloudhsm-v2/CHANGELOG.md | 8 +++++++ clients/client-cloudhsm-v2/package.json | 2 +- clients/client-cloudhsm/CHANGELOG.md | 8 +++++++ clients/client-cloudhsm/package.json | 2 +- .../client-cloudsearch-domain/CHANGELOG.md | 8 +++++++ .../client-cloudsearch-domain/package.json | 2 +- clients/client-cloudsearch/CHANGELOG.md | 8 +++++++ clients/client-cloudsearch/package.json | 2 +- clients/client-cloudtrail-data/CHANGELOG.md | 8 +++++++ clients/client-cloudtrail-data/package.json | 2 +- clients/client-cloudtrail/CHANGELOG.md | 8 +++++++ clients/client-cloudtrail/package.json | 2 +- clients/client-cloudwatch-events/CHANGELOG.md | 8 +++++++ clients/client-cloudwatch-events/package.json | 2 +- clients/client-cloudwatch-logs/CHANGELOG.md | 8 +++++++ clients/client-cloudwatch-logs/package.json | 2 +- clients/client-cloudwatch/CHANGELOG.md | 8 +++++++ clients/client-cloudwatch/package.json | 2 +- clients/client-codeartifact/CHANGELOG.md | 8 +++++++ clients/client-codeartifact/package.json | 2 +- clients/client-codebuild/CHANGELOG.md | 8 +++++++ clients/client-codebuild/package.json | 2 +- clients/client-codecatalyst/CHANGELOG.md | 8 +++++++ clients/client-codecatalyst/package.json | 2 +- clients/client-codecommit/CHANGELOG.md | 8 +++++++ clients/client-codecommit/package.json | 2 +- clients/client-codeconnections/CHANGELOG.md | 8 +++++++ clients/client-codeconnections/package.json | 2 +- clients/client-codedeploy/CHANGELOG.md | 8 +++++++ clients/client-codedeploy/package.json | 2 +- clients/client-codeguru-reviewer/CHANGELOG.md | 8 +++++++ clients/client-codeguru-reviewer/package.json | 2 +- clients/client-codeguru-security/CHANGELOG.md | 8 +++++++ clients/client-codeguru-security/package.json | 2 +- clients/client-codeguruprofiler/CHANGELOG.md | 8 +++++++ clients/client-codeguruprofiler/package.json | 2 +- clients/client-codepipeline/CHANGELOG.md | 8 +++++++ clients/client-codepipeline/package.json | 2 +- .../client-codestar-connections/CHANGELOG.md | 8 +++++++ .../client-codestar-connections/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- clients/client-codestar/CHANGELOG.md | 8 +++++++ clients/client-codestar/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- clients/client-cognito-identity/CHANGELOG.md | 8 +++++++ clients/client-cognito-identity/package.json | 2 +- clients/client-cognito-sync/CHANGELOG.md | 8 +++++++ clients/client-cognito-sync/package.json | 2 +- clients/client-comprehend/CHANGELOG.md | 8 +++++++ clients/client-comprehend/package.json | 2 +- clients/client-comprehendmedical/CHANGELOG.md | 8 +++++++ clients/client-comprehendmedical/package.json | 2 +- clients/client-compute-optimizer/CHANGELOG.md | 8 +++++++ clients/client-compute-optimizer/package.json | 2 +- clients/client-config-service/CHANGELOG.md | 8 +++++++ clients/client-config-service/package.json | 2 +- .../client-connect-contact-lens/CHANGELOG.md | 8 +++++++ .../client-connect-contact-lens/package.json | 2 +- clients/client-connect/CHANGELOG.md | 8 +++++++ clients/client-connect/package.json | 2 +- clients/client-connectcampaigns/CHANGELOG.md | 8 +++++++ clients/client-connectcampaigns/package.json | 2 +- clients/client-connectcases/CHANGELOG.md | 8 +++++++ clients/client-connectcases/package.json | 2 +- .../client-connectparticipant/CHANGELOG.md | 8 +++++++ .../client-connectparticipant/package.json | 2 +- clients/client-controlcatalog/CHANGELOG.md | 8 +++++++ clients/client-controlcatalog/package.json | 2 +- clients/client-controltower/CHANGELOG.md | 8 +++++++ clients/client-controltower/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- clients/client-cost-explorer/CHANGELOG.md | 8 +++++++ clients/client-cost-explorer/package.json | 2 +- .../client-cost-optimization-hub/CHANGELOG.md | 8 +++++++ .../client-cost-optimization-hub/package.json | 2 +- clients/client-customer-profiles/CHANGELOG.md | 8 +++++++ clients/client-customer-profiles/package.json | 2 +- clients/client-data-pipeline/CHANGELOG.md | 8 +++++++ clients/client-data-pipeline/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- clients/client-databrew/CHANGELOG.md | 8 +++++++ clients/client-databrew/package.json | 2 +- clients/client-dataexchange/CHANGELOG.md | 8 +++++++ clients/client-dataexchange/package.json | 2 +- clients/client-datasync/CHANGELOG.md | 8 +++++++ clients/client-datasync/package.json | 2 +- clients/client-datazone/CHANGELOG.md | 8 +++++++ clients/client-datazone/package.json | 2 +- clients/client-dax/CHANGELOG.md | 8 +++++++ clients/client-dax/package.json | 2 +- clients/client-deadline/CHANGELOG.md | 8 +++++++ clients/client-deadline/package.json | 2 +- clients/client-detective/CHANGELOG.md | 8 +++++++ clients/client-detective/package.json | 2 +- clients/client-device-farm/CHANGELOG.md | 8 +++++++ clients/client-device-farm/package.json | 2 +- clients/client-devops-guru/CHANGELOG.md | 8 +++++++ clients/client-devops-guru/package.json | 2 +- clients/client-direct-connect/CHANGELOG.md | 8 +++++++ clients/client-direct-connect/package.json | 2 +- clients/client-directory-service/CHANGELOG.md | 8 +++++++ clients/client-directory-service/package.json | 2 +- clients/client-dlm/CHANGELOG.md | 8 +++++++ clients/client-dlm/package.json | 2 +- clients/client-docdb-elastic/CHANGELOG.md | 8 +++++++ clients/client-docdb-elastic/package.json | 2 +- clients/client-docdb/CHANGELOG.md | 11 ++++++++++ clients/client-docdb/package.json | 2 +- clients/client-drs/CHANGELOG.md | 8 +++++++ clients/client-drs/package.json | 2 +- clients/client-dynamodb-streams/CHANGELOG.md | 8 +++++++ clients/client-dynamodb-streams/package.json | 2 +- clients/client-dynamodb/CHANGELOG.md | 8 +++++++ clients/client-dynamodb/package.json | 2 +- clients/client-ebs/CHANGELOG.md | 8 +++++++ clients/client-ebs/package.json | 2 +- .../client-ec2-instance-connect/CHANGELOG.md | 8 +++++++ .../client-ec2-instance-connect/package.json | 2 +- clients/client-ec2/CHANGELOG.md | 8 +++++++ clients/client-ec2/package.json | 2 +- clients/client-ecr-public/CHANGELOG.md | 8 +++++++ clients/client-ecr-public/package.json | 2 +- clients/client-ecr/CHANGELOG.md | 8 +++++++ clients/client-ecr/package.json | 2 +- clients/client-ecs/CHANGELOG.md | 11 ++++++++++ clients/client-ecs/package.json | 2 +- clients/client-efs/CHANGELOG.md | 8 +++++++ clients/client-efs/package.json | 2 +- clients/client-eks-auth/CHANGELOG.md | 8 +++++++ clients/client-eks-auth/package.json | 2 +- clients/client-eks/CHANGELOG.md | 8 +++++++ clients/client-eks/package.json | 2 +- clients/client-elastic-beanstalk/CHANGELOG.md | 8 +++++++ clients/client-elastic-beanstalk/package.json | 2 +- clients/client-elastic-inference/CHANGELOG.md | 8 +++++++ clients/client-elastic-inference/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../client-elastic-transcoder/CHANGELOG.md | 8 +++++++ .../client-elastic-transcoder/package.json | 2 +- clients/client-elasticache/CHANGELOG.md | 8 +++++++ clients/client-elasticache/package.json | 2 +- .../client-elasticsearch-service/CHANGELOG.md | 8 +++++++ .../client-elasticsearch-service/package.json | 2 +- clients/client-emr-containers/CHANGELOG.md | 8 +++++++ clients/client-emr-containers/package.json | 2 +- clients/client-emr-serverless/CHANGELOG.md | 8 +++++++ clients/client-emr-serverless/package.json | 2 +- clients/client-emr/CHANGELOG.md | 8 +++++++ clients/client-emr/package.json | 2 +- clients/client-entityresolution/CHANGELOG.md | 8 +++++++ clients/client-entityresolution/package.json | 2 +- clients/client-eventbridge/CHANGELOG.md | 8 +++++++ clients/client-eventbridge/package.json | 2 +- clients/client-evidently/CHANGELOG.md | 8 +++++++ clients/client-evidently/package.json | 2 +- clients/client-finspace-data/CHANGELOG.md | 8 +++++++ clients/client-finspace-data/package.json | 2 +- clients/client-finspace/CHANGELOG.md | 8 +++++++ clients/client-finspace/package.json | 2 +- clients/client-firehose/CHANGELOG.md | 8 +++++++ clients/client-firehose/package.json | 2 +- clients/client-fis/CHANGELOG.md | 8 +++++++ clients/client-fis/package.json | 2 +- clients/client-fms/CHANGELOG.md | 8 +++++++ clients/client-fms/package.json | 2 +- clients/client-forecast/CHANGELOG.md | 8 +++++++ clients/client-forecast/package.json | 2 +- clients/client-forecastquery/CHANGELOG.md | 8 +++++++ clients/client-forecastquery/package.json | 2 +- clients/client-frauddetector/CHANGELOG.md | 8 +++++++ clients/client-frauddetector/package.json | 2 +- clients/client-freetier/CHANGELOG.md | 8 +++++++ clients/client-freetier/package.json | 2 +- clients/client-fsx/CHANGELOG.md | 8 +++++++ clients/client-fsx/package.json | 2 +- clients/client-gamelift/CHANGELOG.md | 8 +++++++ clients/client-gamelift/package.json | 2 +- clients/client-glacier/CHANGELOG.md | 8 +++++++ clients/client-glacier/package.json | 2 +- .../client-global-accelerator/CHANGELOG.md | 8 +++++++ .../client-global-accelerator/package.json | 2 +- clients/client-glue/CHANGELOG.md | 8 +++++++ clients/client-glue/package.json | 2 +- clients/client-grafana/CHANGELOG.md | 8 +++++++ clients/client-grafana/package.json | 2 +- clients/client-greengrass/CHANGELOG.md | 8 +++++++ clients/client-greengrass/package.json | 2 +- clients/client-greengrassv2/CHANGELOG.md | 8 +++++++ clients/client-greengrassv2/package.json | 2 +- clients/client-groundstation/CHANGELOG.md | 8 +++++++ clients/client-groundstation/package.json | 2 +- clients/client-guardduty/CHANGELOG.md | 8 +++++++ clients/client-guardduty/package.json | 2 +- clients/client-health/CHANGELOG.md | 8 +++++++ clients/client-health/package.json | 2 +- clients/client-healthlake/CHANGELOG.md | 8 +++++++ clients/client-healthlake/package.json | 2 +- clients/client-iam/CHANGELOG.md | 11 ++++++++++ clients/client-iam/package.json | 2 +- clients/client-identitystore/CHANGELOG.md | 8 +++++++ clients/client-identitystore/package.json | 2 +- clients/client-imagebuilder/CHANGELOG.md | 8 +++++++ clients/client-imagebuilder/package.json | 2 +- clients/client-inspector-scan/CHANGELOG.md | 8 +++++++ clients/client-inspector-scan/package.json | 2 +- clients/client-inspector/CHANGELOG.md | 8 +++++++ clients/client-inspector/package.json | 2 +- clients/client-inspector2/CHANGELOG.md | 8 +++++++ clients/client-inspector2/package.json | 2 +- clients/client-internetmonitor/CHANGELOG.md | 8 +++++++ clients/client-internetmonitor/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../client-iot-1click-projects/CHANGELOG.md | 8 +++++++ .../client-iot-1click-projects/package.json | 2 +- clients/client-iot-data-plane/CHANGELOG.md | 8 +++++++ clients/client-iot-data-plane/package.json | 2 +- clients/client-iot-events-data/CHANGELOG.md | 8 +++++++ clients/client-iot-events-data/package.json | 2 +- clients/client-iot-events/CHANGELOG.md | 8 +++++++ clients/client-iot-events/package.json | 2 +- .../client-iot-jobs-data-plane/CHANGELOG.md | 8 +++++++ .../client-iot-jobs-data-plane/package.json | 2 +- clients/client-iot-wireless/CHANGELOG.md | 8 +++++++ clients/client-iot-wireless/package.json | 2 +- clients/client-iot/CHANGELOG.md | 8 +++++++ clients/client-iot/package.json | 2 +- clients/client-iotanalytics/CHANGELOG.md | 8 +++++++ clients/client-iotanalytics/package.json | 2 +- clients/client-iotdeviceadvisor/CHANGELOG.md | 8 +++++++ clients/client-iotdeviceadvisor/package.json | 2 +- clients/client-iotfleethub/CHANGELOG.md | 8 +++++++ clients/client-iotfleethub/package.json | 2 +- clients/client-iotfleetwise/CHANGELOG.md | 8 +++++++ clients/client-iotfleetwise/package.json | 2 +- .../client-iotsecuretunneling/CHANGELOG.md | 8 +++++++ .../client-iotsecuretunneling/package.json | 2 +- clients/client-iotsitewise/CHANGELOG.md | 8 +++++++ clients/client-iotsitewise/package.json | 2 +- clients/client-iotthingsgraph/CHANGELOG.md | 8 +++++++ clients/client-iotthingsgraph/package.json | 2 +- clients/client-iottwinmaker/CHANGELOG.md | 8 +++++++ clients/client-iottwinmaker/package.json | 2 +- clients/client-ivs-realtime/CHANGELOG.md | 8 +++++++ clients/client-ivs-realtime/package.json | 2 +- clients/client-ivs/CHANGELOG.md | 8 +++++++ clients/client-ivs/package.json | 2 +- clients/client-ivschat/CHANGELOG.md | 8 +++++++ clients/client-ivschat/package.json | 2 +- clients/client-kafka/CHANGELOG.md | 8 +++++++ clients/client-kafka/package.json | 2 +- clients/client-kafkaconnect/CHANGELOG.md | 8 +++++++ clients/client-kafkaconnect/package.json | 2 +- clients/client-kendra-ranking/CHANGELOG.md | 8 +++++++ clients/client-kendra-ranking/package.json | 2 +- clients/client-kendra/CHANGELOG.md | 8 +++++++ clients/client-kendra/package.json | 2 +- clients/client-keyspaces/CHANGELOG.md | 8 +++++++ clients/client-keyspaces/package.json | 2 +- .../client-kinesis-analytics-v2/CHANGELOG.md | 8 +++++++ .../client-kinesis-analytics-v2/package.json | 2 +- clients/client-kinesis-analytics/CHANGELOG.md | 8 +++++++ clients/client-kinesis-analytics/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../client-kinesis-video-media/CHANGELOG.md | 8 +++++++ .../client-kinesis-video-media/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- clients/client-kinesis-video/CHANGELOG.md | 8 +++++++ clients/client-kinesis-video/package.json | 2 +- clients/client-kinesis/CHANGELOG.md | 8 +++++++ clients/client-kinesis/package.json | 2 +- clients/client-kms/CHANGELOG.md | 8 +++++++ clients/client-kms/package.json | 2 +- clients/client-lakeformation/CHANGELOG.md | 8 +++++++ clients/client-lakeformation/package.json | 2 +- clients/client-lambda/CHANGELOG.md | 8 +++++++ clients/client-lambda/package.json | 2 +- clients/client-launch-wizard/CHANGELOG.md | 8 +++++++ clients/client-launch-wizard/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- clients/client-lex-models-v2/CHANGELOG.md | 8 +++++++ clients/client-lex-models-v2/package.json | 2 +- .../client-lex-runtime-service/CHANGELOG.md | 8 +++++++ .../client-lex-runtime-service/package.json | 2 +- clients/client-lex-runtime-v2/CHANGELOG.md | 8 +++++++ clients/client-lex-runtime-v2/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- clients/client-license-manager/CHANGELOG.md | 8 +++++++ clients/client-license-manager/package.json | 2 +- clients/client-lightsail/CHANGELOG.md | 8 +++++++ clients/client-lightsail/package.json | 2 +- clients/client-location/CHANGELOG.md | 8 +++++++ clients/client-location/package.json | 2 +- clients/client-lookoutequipment/CHANGELOG.md | 8 +++++++ clients/client-lookoutequipment/package.json | 2 +- clients/client-lookoutmetrics/CHANGELOG.md | 8 +++++++ clients/client-lookoutmetrics/package.json | 2 +- clients/client-lookoutvision/CHANGELOG.md | 8 +++++++ clients/client-lookoutvision/package.json | 2 +- clients/client-m2/CHANGELOG.md | 8 +++++++ clients/client-m2/package.json | 2 +- clients/client-machine-learning/CHANGELOG.md | 8 +++++++ clients/client-machine-learning/package.json | 2 +- clients/client-macie2/CHANGELOG.md | 8 +++++++ clients/client-macie2/package.json | 2 +- clients/client-mailmanager/CHANGELOG.md | 8 +++++++ clients/client-mailmanager/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- clients/client-managedblockchain/CHANGELOG.md | 8 +++++++ clients/client-managedblockchain/package.json | 2 +- .../client-marketplace-agreement/CHANGELOG.md | 8 +++++++ .../client-marketplace-agreement/package.json | 2 +- .../client-marketplace-catalog/CHANGELOG.md | 8 +++++++ .../client-marketplace-catalog/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../client-marketplace-metering/CHANGELOG.md | 8 +++++++ .../client-marketplace-metering/package.json | 2 +- clients/client-mediaconnect/CHANGELOG.md | 8 +++++++ clients/client-mediaconnect/package.json | 2 +- clients/client-mediaconvert/CHANGELOG.md | 8 +++++++ clients/client-mediaconvert/package.json | 2 +- clients/client-medialive/CHANGELOG.md | 8 +++++++ clients/client-medialive/package.json | 2 +- clients/client-mediapackage-vod/CHANGELOG.md | 8 +++++++ clients/client-mediapackage-vod/package.json | 2 +- clients/client-mediapackage/CHANGELOG.md | 8 +++++++ clients/client-mediapackage/package.json | 2 +- clients/client-mediapackagev2/CHANGELOG.md | 8 +++++++ clients/client-mediapackagev2/package.json | 2 +- clients/client-mediastore-data/CHANGELOG.md | 8 +++++++ clients/client-mediastore-data/package.json | 2 +- clients/client-mediastore/CHANGELOG.md | 8 +++++++ clients/client-mediastore/package.json | 2 +- clients/client-mediatailor/CHANGELOG.md | 8 +++++++ clients/client-mediatailor/package.json | 2 +- clients/client-medical-imaging/CHANGELOG.md | 8 +++++++ clients/client-medical-imaging/package.json | 2 +- clients/client-memorydb/CHANGELOG.md | 8 +++++++ clients/client-memorydb/package.json | 2 +- clients/client-mgn/CHANGELOG.md | 8 +++++++ clients/client-mgn/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- clients/client-migration-hub/CHANGELOG.md | 8 +++++++ clients/client-migration-hub/package.json | 2 +- .../client-migrationhub-config/CHANGELOG.md | 8 +++++++ .../client-migrationhub-config/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../client-migrationhubstrategy/CHANGELOG.md | 8 +++++++ .../client-migrationhubstrategy/package.json | 2 +- clients/client-mq/CHANGELOG.md | 8 +++++++ clients/client-mq/package.json | 2 +- clients/client-mturk/CHANGELOG.md | 8 +++++++ clients/client-mturk/package.json | 2 +- clients/client-mwaa/CHANGELOG.md | 8 +++++++ clients/client-mwaa/package.json | 2 +- clients/client-neptune-graph/CHANGELOG.md | 8 +++++++ clients/client-neptune-graph/package.json | 2 +- clients/client-neptune/CHANGELOG.md | 8 +++++++ clients/client-neptune/package.json | 2 +- clients/client-neptunedata/CHANGELOG.md | 8 +++++++ clients/client-neptunedata/package.json | 2 +- clients/client-network-firewall/CHANGELOG.md | 8 +++++++ clients/client-network-firewall/package.json | 2 +- clients/client-networkmanager/CHANGELOG.md | 8 +++++++ clients/client-networkmanager/package.json | 2 +- clients/client-networkmonitor/CHANGELOG.md | 8 +++++++ clients/client-networkmonitor/package.json | 2 +- clients/client-nimble/CHANGELOG.md | 8 +++++++ clients/client-nimble/package.json | 2 +- clients/client-oam/CHANGELOG.md | 8 +++++++ clients/client-oam/package.json | 2 +- clients/client-omics/CHANGELOG.md | 8 +++++++ clients/client-omics/package.json | 2 +- clients/client-opensearch/CHANGELOG.md | 8 +++++++ clients/client-opensearch/package.json | 2 +- .../client-opensearchserverless/CHANGELOG.md | 8 +++++++ .../client-opensearchserverless/package.json | 2 +- clients/client-opsworks/CHANGELOG.md | 8 +++++++ clients/client-opsworks/package.json | 2 +- clients/client-opsworkscm/CHANGELOG.md | 8 +++++++ clients/client-opsworkscm/package.json | 2 +- clients/client-organizations/CHANGELOG.md | 8 +++++++ clients/client-organizations/package.json | 2 +- clients/client-osis/CHANGELOG.md | 8 +++++++ clients/client-osis/package.json | 2 +- clients/client-outposts/CHANGELOG.md | 8 +++++++ clients/client-outposts/package.json | 2 +- clients/client-panorama/CHANGELOG.md | 8 +++++++ clients/client-panorama/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../client-payment-cryptography/CHANGELOG.md | 8 +++++++ .../client-payment-cryptography/package.json | 2 +- clients/client-pca-connector-ad/CHANGELOG.md | 8 +++++++ clients/client-pca-connector-ad/package.json | 2 +- .../client-pca-connector-scep/CHANGELOG.md | 8 +++++++ .../client-pca-connector-scep/package.json | 2 +- .../client-personalize-events/CHANGELOG.md | 8 +++++++ .../client-personalize-events/package.json | 2 +- .../client-personalize-runtime/CHANGELOG.md | 8 +++++++ .../client-personalize-runtime/package.json | 2 +- clients/client-personalize/CHANGELOG.md | 8 +++++++ clients/client-personalize/package.json | 2 +- clients/client-pi/CHANGELOG.md | 8 +++++++ clients/client-pi/package.json | 2 +- clients/client-pinpoint-email/CHANGELOG.md | 8 +++++++ clients/client-pinpoint-email/package.json | 2 +- .../client-pinpoint-sms-voice-v2/CHANGELOG.md | 8 +++++++ .../client-pinpoint-sms-voice-v2/package.json | 2 +- .../client-pinpoint-sms-voice/CHANGELOG.md | 8 +++++++ .../client-pinpoint-sms-voice/package.json | 2 +- clients/client-pinpoint/CHANGELOG.md | 8 +++++++ clients/client-pinpoint/package.json | 2 +- clients/client-pipes/CHANGELOG.md | 8 +++++++ clients/client-pipes/package.json | 2 +- clients/client-polly/CHANGELOG.md | 8 +++++++ clients/client-polly/package.json | 2 +- clients/client-pricing/CHANGELOG.md | 8 +++++++ clients/client-pricing/package.json | 2 +- clients/client-privatenetworks/CHANGELOG.md | 8 +++++++ clients/client-privatenetworks/package.json | 2 +- clients/client-proton/CHANGELOG.md | 8 +++++++ clients/client-proton/package.json | 2 +- clients/client-qapps/CHANGELOG.md | 8 +++++++ clients/client-qapps/package.json | 2 +- clients/client-qbusiness/CHANGELOG.md | 8 +++++++ clients/client-qbusiness/package.json | 2 +- clients/client-qconnect/CHANGELOG.md | 8 +++++++ clients/client-qconnect/package.json | 2 +- clients/client-qldb-session/CHANGELOG.md | 8 +++++++ clients/client-qldb-session/package.json | 2 +- clients/client-qldb/CHANGELOG.md | 8 +++++++ clients/client-qldb/package.json | 2 +- clients/client-quicksight/CHANGELOG.md | 8 +++++++ clients/client-quicksight/package.json | 2 +- clients/client-ram/CHANGELOG.md | 8 +++++++ clients/client-ram/package.json | 2 +- clients/client-rbin/CHANGELOG.md | 8 +++++++ clients/client-rbin/package.json | 2 +- clients/client-rds-data/CHANGELOG.md | 8 +++++++ clients/client-rds-data/package.json | 2 +- clients/client-rds/CHANGELOG.md | 8 +++++++ clients/client-rds/package.json | 2 +- clients/client-redshift-data/CHANGELOG.md | 8 +++++++ clients/client-redshift-data/package.json | 2 +- .../client-redshift-serverless/CHANGELOG.md | 8 +++++++ .../client-redshift-serverless/package.json | 2 +- clients/client-redshift/CHANGELOG.md | 8 +++++++ clients/client-redshift/package.json | 2 +- clients/client-rekognition/CHANGELOG.md | 8 +++++++ clients/client-rekognition/package.json | 2 +- .../client-rekognitionstreaming/CHANGELOG.md | 8 +++++++ .../client-rekognitionstreaming/package.json | 2 +- clients/client-repostspace/CHANGELOG.md | 8 +++++++ clients/client-repostspace/package.json | 2 +- clients/client-resiliencehub/CHANGELOG.md | 8 +++++++ clients/client-resiliencehub/package.json | 2 +- .../client-resource-explorer-2/CHANGELOG.md | 8 +++++++ .../client-resource-explorer-2/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- clients/client-resource-groups/CHANGELOG.md | 8 +++++++ clients/client-resource-groups/package.json | 2 +- clients/client-robomaker/CHANGELOG.md | 8 +++++++ clients/client-robomaker/package.json | 2 +- clients/client-rolesanywhere/CHANGELOG.md | 8 +++++++ clients/client-rolesanywhere/package.json | 2 +- clients/client-route-53-domains/CHANGELOG.md | 8 +++++++ clients/client-route-53-domains/package.json | 2 +- clients/client-route-53/CHANGELOG.md | 8 +++++++ clients/client-route-53/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- clients/client-route53profiles/CHANGELOG.md | 8 +++++++ clients/client-route53profiles/package.json | 2 +- clients/client-route53resolver/CHANGELOG.md | 8 +++++++ clients/client-route53resolver/package.json | 2 +- clients/client-rum/CHANGELOG.md | 8 +++++++ clients/client-rum/package.json | 2 +- clients/client-s3-control/CHANGELOG.md | 8 +++++++ clients/client-s3-control/package.json | 2 +- clients/client-s3/CHANGELOG.md | 11 ++++++++++ clients/client-s3/package.json | 2 +- clients/client-s3outposts/CHANGELOG.md | 8 +++++++ clients/client-s3outposts/package.json | 2 +- .../client-sagemaker-a2i-runtime/CHANGELOG.md | 8 +++++++ .../client-sagemaker-a2i-runtime/package.json | 2 +- clients/client-sagemaker-edge/CHANGELOG.md | 8 +++++++ clients/client-sagemaker-edge/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../client-sagemaker-geospatial/CHANGELOG.md | 8 +++++++ .../client-sagemaker-geospatial/package.json | 2 +- clients/client-sagemaker-metrics/CHANGELOG.md | 8 +++++++ clients/client-sagemaker-metrics/package.json | 2 +- clients/client-sagemaker-runtime/CHANGELOG.md | 8 +++++++ clients/client-sagemaker-runtime/package.json | 2 +- clients/client-sagemaker/CHANGELOG.md | 8 +++++++ clients/client-sagemaker/package.json | 2 +- clients/client-savingsplans/CHANGELOG.md | 8 +++++++ clients/client-savingsplans/package.json | 2 +- clients/client-scheduler/CHANGELOG.md | 8 +++++++ clients/client-scheduler/package.json | 2 +- clients/client-schemas/CHANGELOG.md | 8 +++++++ clients/client-schemas/package.json | 2 +- clients/client-secrets-manager/CHANGELOG.md | 8 +++++++ clients/client-secrets-manager/package.json | 2 +- clients/client-securityhub/CHANGELOG.md | 8 +++++++ clients/client-securityhub/package.json | 2 +- clients/client-securitylake/CHANGELOG.md | 8 +++++++ clients/client-securitylake/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- clients/client-service-catalog/CHANGELOG.md | 8 +++++++ clients/client-service-catalog/package.json | 2 +- clients/client-service-quotas/CHANGELOG.md | 8 +++++++ clients/client-service-quotas/package.json | 2 +- clients/client-servicediscovery/CHANGELOG.md | 8 +++++++ clients/client-servicediscovery/package.json | 2 +- clients/client-ses/CHANGELOG.md | 8 +++++++ clients/client-ses/package.json | 2 +- clients/client-sesv2/CHANGELOG.md | 8 +++++++ clients/client-sesv2/package.json | 2 +- clients/client-sfn/CHANGELOG.md | 8 +++++++ clients/client-sfn/package.json | 2 +- clients/client-shield/CHANGELOG.md | 8 +++++++ clients/client-shield/package.json | 2 +- clients/client-signer/CHANGELOG.md | 8 +++++++ clients/client-signer/package.json | 2 +- clients/client-simspaceweaver/CHANGELOG.md | 8 +++++++ clients/client-simspaceweaver/package.json | 2 +- clients/client-sms/CHANGELOG.md | 8 +++++++ clients/client-sms/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- clients/client-snowball/CHANGELOG.md | 8 +++++++ clients/client-snowball/package.json | 2 +- clients/client-sns/CHANGELOG.md | 8 +++++++ clients/client-sns/package.json | 2 +- clients/client-sqs/CHANGELOG.md | 8 +++++++ clients/client-sqs/package.json | 2 +- clients/client-ssm-contacts/CHANGELOG.md | 8 +++++++ clients/client-ssm-contacts/package.json | 2 +- clients/client-ssm-incidents/CHANGELOG.md | 8 +++++++ clients/client-ssm-incidents/package.json | 2 +- clients/client-ssm-quicksetup/CHANGELOG.md | 8 +++++++ clients/client-ssm-quicksetup/package.json | 2 +- clients/client-ssm-sap/CHANGELOG.md | 8 +++++++ clients/client-ssm-sap/package.json | 2 +- clients/client-ssm/CHANGELOG.md | 8 +++++++ clients/client-ssm/package.json | 2 +- clients/client-sso-admin/CHANGELOG.md | 8 +++++++ clients/client-sso-admin/package.json | 2 +- clients/client-sso-oidc/CHANGELOG.md | 8 +++++++ clients/client-sso-oidc/package.json | 2 +- clients/client-sso/CHANGELOG.md | 8 +++++++ clients/client-sso/package.json | 2 +- clients/client-storage-gateway/CHANGELOG.md | 8 +++++++ clients/client-storage-gateway/package.json | 2 +- clients/client-sts/CHANGELOG.md | 11 ++++++++++ clients/client-sts/package.json | 2 +- clients/client-supplychain/CHANGELOG.md | 8 +++++++ clients/client-supplychain/package.json | 2 +- clients/client-support-app/CHANGELOG.md | 8 +++++++ clients/client-support-app/package.json | 2 +- clients/client-support/CHANGELOG.md | 8 +++++++ clients/client-support/package.json | 2 +- clients/client-swf/CHANGELOG.md | 8 +++++++ clients/client-swf/package.json | 2 +- clients/client-synthetics/CHANGELOG.md | 8 +++++++ clients/client-synthetics/package.json | 2 +- clients/client-taxsettings/CHANGELOG.md | 8 +++++++ clients/client-taxsettings/package.json | 2 +- clients/client-textract/CHANGELOG.md | 8 +++++++ clients/client-textract/package.json | 2 +- .../client-timestream-influxdb/CHANGELOG.md | 8 +++++++ .../client-timestream-influxdb/package.json | 2 +- clients/client-timestream-query/CHANGELOG.md | 8 +++++++ clients/client-timestream-query/package.json | 2 +- clients/client-timestream-write/CHANGELOG.md | 8 +++++++ clients/client-timestream-write/package.json | 2 +- clients/client-tnb/CHANGELOG.md | 8 +++++++ clients/client-tnb/package.json | 2 +- .../client-transcribe-streaming/CHANGELOG.md | 8 +++++++ .../client-transcribe-streaming/package.json | 2 +- clients/client-transcribe/CHANGELOG.md | 8 +++++++ clients/client-transcribe/package.json | 2 +- clients/client-transfer/CHANGELOG.md | 8 +++++++ clients/client-transfer/package.json | 2 +- clients/client-translate/CHANGELOG.md | 8 +++++++ clients/client-translate/package.json | 2 +- clients/client-trustedadvisor/CHANGELOG.md | 8 +++++++ clients/client-trustedadvisor/package.json | 2 +- .../client-verifiedpermissions/CHANGELOG.md | 8 +++++++ .../client-verifiedpermissions/package.json | 2 +- clients/client-voice-id/CHANGELOG.md | 8 +++++++ clients/client-voice-id/package.json | 2 +- clients/client-vpc-lattice/CHANGELOG.md | 8 +++++++ clients/client-vpc-lattice/package.json | 2 +- clients/client-waf-regional/CHANGELOG.md | 8 +++++++ clients/client-waf-regional/package.json | 2 +- clients/client-waf/CHANGELOG.md | 8 +++++++ clients/client-waf/package.json | 2 +- clients/client-wafv2/CHANGELOG.md | 8 +++++++ clients/client-wafv2/package.json | 2 +- clients/client-wellarchitected/CHANGELOG.md | 8 +++++++ clients/client-wellarchitected/package.json | 2 +- clients/client-wisdom/CHANGELOG.md | 8 +++++++ clients/client-wisdom/package.json | 2 +- clients/client-workdocs/CHANGELOG.md | 8 +++++++ clients/client-workdocs/package.json | 2 +- clients/client-worklink/CHANGELOG.md | 8 +++++++ clients/client-worklink/package.json | 2 +- clients/client-workmail/CHANGELOG.md | 8 +++++++ clients/client-workmail/package.json | 2 +- .../client-workmailmessageflow/CHANGELOG.md | 8 +++++++ .../client-workmailmessageflow/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- clients/client-workspaces-web/CHANGELOG.md | 8 +++++++ clients/client-workspaces-web/package.json | 2 +- clients/client-workspaces/CHANGELOG.md | 8 +++++++ clients/client-workspaces/package.json | 2 +- clients/client-xray/CHANGELOG.md | 8 +++++++ clients/client-xray/package.json | 2 +- lerna.json | 2 +- lib/lib-dynamodb/CHANGELOG.md | 11 ++++++++++ lib/lib-dynamodb/package.json | 2 +- lib/lib-storage/CHANGELOG.md | 8 +++++++ lib/lib-storage/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- packages/credential-provider-ini/CHANGELOG.md | 8 +++++++ packages/credential-provider-ini/package.json | 2 +- .../credential-provider-node/CHANGELOG.md | 8 +++++++ .../credential-provider-node/package.json | 2 +- packages/credential-provider-sso/CHANGELOG.md | 8 +++++++ packages/credential-provider-sso/package.json | 2 +- packages/credential-providers/CHANGELOG.md | 8 +++++++ packages/credential-providers/package.json | 2 +- packages/ec2-metadata-service/CHANGELOG.md | 8 +++++++ packages/ec2-metadata-service/package.json | 2 +- packages/karma-credential-loader/CHANGELOG.md | 8 +++++++ packages/karma-credential-loader/package.json | 2 +- .../middleware-sdk-s3-control/CHANGELOG.md | 8 +++++++ .../middleware-sdk-s3-control/package.json | 2 +- packages/middleware-user-agent/CHANGELOG.md | 8 +++++++ packages/middleware-user-agent/package.json | 2 +- packages/polly-request-presigner/CHANGELOG.md | 8 +++++++ packages/polly-request-presigner/package.json | 2 +- packages/rds-signer/CHANGELOG.md | 8 +++++++ packages/rds-signer/package.json | 2 +- packages/s3-presigned-post/CHANGELOG.md | 8 +++++++ packages/s3-presigned-post/package.json | 2 +- packages/s3-request-presigner/CHANGELOG.md | 8 +++++++ packages/s3-request-presigner/package.json | 2 +- packages/util-dynamodb/CHANGELOG.md | 8 +++++++ packages/util-dynamodb/package.json | 2 +- packages/util-endpoints/CHANGELOG.md | 11 ++++++++++ packages/util-endpoints/package.json | 2 +- private/aws-client-api-test/CHANGELOG.md | 8 +++++++ private/aws-client-api-test/package.json | 2 +- private/aws-client-retry-test/CHANGELOG.md | 8 +++++++ private/aws-client-retry-test/package.json | 2 +- private/aws-echo-service/CHANGELOG.md | 8 +++++++ private/aws-echo-service/package.json | 2 +- private/aws-middleware-test/CHANGELOG.md | 8 +++++++ private/aws-middleware-test/package.json | 2 +- private/aws-protocoltests-ec2/CHANGELOG.md | 8 +++++++ private/aws-protocoltests-ec2/package.json | 2 +- .../aws-protocoltests-json-10/CHANGELOG.md | 8 +++++++ .../aws-protocoltests-json-10/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- private/aws-protocoltests-json/CHANGELOG.md | 8 +++++++ private/aws-protocoltests-json/package.json | 2 +- private/aws-protocoltests-query/CHANGELOG.md | 8 +++++++ private/aws-protocoltests-query/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- .../aws-protocoltests-restjson/CHANGELOG.md | 8 +++++++ .../aws-protocoltests-restjson/package.json | 2 +- .../aws-protocoltests-restxml/CHANGELOG.md | 8 +++++++ .../aws-protocoltests-restxml/package.json | 2 +- private/aws-util-test/CHANGELOG.md | 8 +++++++ private/aws-util-test/package.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 2 +- private/weather-legacy-auth/CHANGELOG.md | 8 +++++++ private/weather-legacy-auth/package.json | 2 +- private/weather/CHANGELOG.md | 8 +++++++ private/weather/package.json | 2 +- 843 files changed, 3828 insertions(+), 425 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79dd44419133b..18f547ec21a1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,28 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + + +### Bug Fixes + +* **credential-providers:** avoid sharing http2 requestHandler with inner STS ([#6389](https://github.com/aws/aws-sdk-js-v3/issues/6389)) ([d7b1610](https://github.com/aws/aws-sdk-js-v3/commit/d7b161064452a259ebb26502a14ef17159cb1f90)) +* **lib-dynamodb:** missing `@smithy/core` dependency in `@aws-sdk/lib-dynamodb` ([#6384](https://github.com/aws/aws-sdk-js-v3/issues/6384)) ([84fd78b](https://github.com/aws/aws-sdk-js-v3/commit/84fd78ba51b3362b48ea983c263dd368b88f4287)) +* **util-endpoints:** parseArn when resourcePath contains both delimiters ([#6387](https://github.com/aws/aws-sdk-js-v3/issues/6387)) ([63cb133](https://github.com/aws/aws-sdk-js-v3/commit/63cb133fcfedaf307e06c5f519aea1b58cdeb77b)) + + +### Features + +* **client-docdb:** This release adds Global Cluster Failover capability which enables you to change your global cluster's primary AWS region, the region that serves writes, during a regional outage. Performing a failover action preserves your Global Cluster setup. ([62c6973](https://github.com/aws/aws-sdk-js-v3/commit/62c6973ca51b710f11b96e1a9e170ac9e489b58f)) +* **client-ecs:** This release introduces a new ContainerDefinition configuration to support the customer-managed keys for ECS container restart feature. ([e56be69](https://github.com/aws/aws-sdk-js-v3/commit/e56be6989649b228db0faf2798e772baefca0ff3)) +* **client-iam:** Make the LastUsedDate field in the GetAccessKeyLastUsed response optional. This may break customers who only call the API for access keys with a valid LastUsedDate. This fixes a deserialization issue for access keys without a LastUsedDate, because the field was marked as required but could be null. ([2e20e95](https://github.com/aws/aws-sdk-js-v3/commit/2e20e9570ac51a8eb820f0124bada8e2b5d6bca7)) +* **client-s3:** Amazon Simple Storage Service / Features : Adds support for pagination in the S3 ListBuckets API. ([f31c6ea](https://github.com/aws/aws-sdk-js-v3/commit/f31c6ea7efbf19998274e65d1cd87380ff21f191)) +* **clients:** update client endpoints as of 2024-08-15 ([05ff22b](https://github.com/aws/aws-sdk-js-v3/commit/05ff22bfc526d93628f7bf5bdf48126be2a15c65)) + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) diff --git a/benchmark/size/report.md b/benchmark/size/report.md index 38995af97bab0..56103500d07d1 100644 --- a/benchmark/size/report.md +++ b/benchmark/size/report.md @@ -38,10 +38,10 @@ |@aws-sdk/credential-provider-cognito-identity|3.496.0|36 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)| |@aws-sdk/credential-provider-env|3.609.0|18.4 KB|N/A|N/A|N/A| |@aws-sdk/credential-provider-imds|3.370.0|14.8 KB|N/A|N/A|N/A| -|@aws-sdk/credential-provider-ini|3.629.0|42.1 KB|N/A|N/A|N/A| -|@aws-sdk/credential-provider-node|3.629.0|34.2 KB|N/A|N/A|N/A| +|@aws-sdk/credential-provider-ini|3.631.0|42.1 KB|N/A|N/A|N/A| +|@aws-sdk/credential-provider-node|3.631.0|34.2 KB|N/A|N/A|N/A| |@aws-sdk/credential-provider-process|3.614.0|22.2 KB|N/A|N/A|N/A| -|@aws-sdk/credential-provider-sso|3.629.0|32.5 KB|N/A|N/A|N/A| +|@aws-sdk/credential-provider-sso|3.631.0|32.5 KB|N/A|N/A|N/A| |@aws-sdk/credential-provider-web-identity|3.495.0|28.9 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)| |@aws-sdk/credential-providers|3.496.0|84.3 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)| |@aws-sdk/fetch-http-handler|3.370.0|14.4 KB|✅(5.77.0)|✅(3.20.2)|✅(0.17.15)| @@ -50,7 +50,7 @@ |@aws-sdk/node-http-handler|3.370.0|14.4 KB|N/A|N/A|N/A| |@aws-sdk/polly-request-presigner|3.495.0|23.3 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)| |@aws-sdk/s3-presigned-post|3.496.0|27.4 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)| -|@aws-sdk/s3-request-presigner|3.629.0|32.1 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)| +|@aws-sdk/s3-request-presigner|3.631.0|32.1 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)| |@aws-sdk/signature-v4|3.370.0|14.4 KB|✅(5.77.0)|✅(3.20.2)|✅(0.17.15)| |@aws-sdk/signature-v4-crt|3.626.0|54.6 KB|N/A|N/A|N/A| |@aws-sdk/smithy-client|3.370.0|18.8 KB|✅(5.77.0)|✅(3.20.2)|✅(0.17.15)| diff --git a/clients/client-accessanalyzer/CHANGELOG.md b/clients/client-accessanalyzer/CHANGELOG.md index d951c6aaa5102..55a574556e5ff 100644 --- a/clients/client-accessanalyzer/CHANGELOG.md +++ b/clients/client-accessanalyzer/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-accessanalyzer + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-accessanalyzer diff --git a/clients/client-accessanalyzer/package.json b/clients/client-accessanalyzer/package.json index 8b08dcfaa4574..9441058bc07df 100644 --- a/clients/client-accessanalyzer/package.json +++ b/clients/client-accessanalyzer/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-accessanalyzer", "description": "AWS SDK for JavaScript Accessanalyzer Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-accessanalyzer", diff --git a/clients/client-account/CHANGELOG.md b/clients/client-account/CHANGELOG.md index c650d3c876fb6..9bb263c84e8ac 100644 --- a/clients/client-account/CHANGELOG.md +++ b/clients/client-account/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-account + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-account diff --git a/clients/client-account/package.json b/clients/client-account/package.json index 3d0a25c4cf306..d077101916cd0 100644 --- a/clients/client-account/package.json +++ b/clients/client-account/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-account", "description": "AWS SDK for JavaScript Account Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-account", diff --git a/clients/client-acm-pca/CHANGELOG.md b/clients/client-acm-pca/CHANGELOG.md index 2dcc840259bc8..587b3526154cc 100644 --- a/clients/client-acm-pca/CHANGELOG.md +++ b/clients/client-acm-pca/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-acm-pca + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-acm-pca diff --git a/clients/client-acm-pca/package.json b/clients/client-acm-pca/package.json index 918266f3b64f7..0d7eaa7c686b5 100644 --- a/clients/client-acm-pca/package.json +++ b/clients/client-acm-pca/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-acm-pca", "description": "AWS SDK for JavaScript Acm Pca Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-acm-pca", diff --git a/clients/client-acm/CHANGELOG.md b/clients/client-acm/CHANGELOG.md index 40ae439e9ab1a..321ecb8800f56 100644 --- a/clients/client-acm/CHANGELOG.md +++ b/clients/client-acm/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-acm + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-acm diff --git a/clients/client-acm/package.json b/clients/client-acm/package.json index 4091f1531f049..f9491c56fdc63 100644 --- a/clients/client-acm/package.json +++ b/clients/client-acm/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-acm", "description": "AWS SDK for JavaScript Acm Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-acm", diff --git a/clients/client-amp/CHANGELOG.md b/clients/client-amp/CHANGELOG.md index be8861a18eeb7..06b7af7bd0105 100644 --- a/clients/client-amp/CHANGELOG.md +++ b/clients/client-amp/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-amp + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-amp diff --git a/clients/client-amp/package.json b/clients/client-amp/package.json index 3a0686f577164..62505a097b695 100644 --- a/clients/client-amp/package.json +++ b/clients/client-amp/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-amp", "description": "AWS SDK for JavaScript Amp Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-amp", diff --git a/clients/client-amplify/CHANGELOG.md b/clients/client-amplify/CHANGELOG.md index 37fcc01b6e0a4..06dddb5f0b3c8 100644 --- a/clients/client-amplify/CHANGELOG.md +++ b/clients/client-amplify/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-amplify + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-amplify diff --git a/clients/client-amplify/package.json b/clients/client-amplify/package.json index 43ff188bff4a5..4392b4ff6273a 100644 --- a/clients/client-amplify/package.json +++ b/clients/client-amplify/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-amplify", "description": "AWS SDK for JavaScript Amplify Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-amplify", diff --git a/clients/client-amplifybackend/CHANGELOG.md b/clients/client-amplifybackend/CHANGELOG.md index b1afcbe9071cb..0187688376f2b 100644 --- a/clients/client-amplifybackend/CHANGELOG.md +++ b/clients/client-amplifybackend/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-amplifybackend + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-amplifybackend diff --git a/clients/client-amplifybackend/package.json b/clients/client-amplifybackend/package.json index 5df6d6513ac19..ac921b914aa0a 100644 --- a/clients/client-amplifybackend/package.json +++ b/clients/client-amplifybackend/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-amplifybackend", "description": "AWS SDK for JavaScript Amplifybackend Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-amplifybackend", diff --git a/clients/client-amplifyuibuilder/CHANGELOG.md b/clients/client-amplifyuibuilder/CHANGELOG.md index 4f398b1081926..46af3c2267727 100644 --- a/clients/client-amplifyuibuilder/CHANGELOG.md +++ b/clients/client-amplifyuibuilder/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-amplifyuibuilder + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-amplifyuibuilder diff --git a/clients/client-amplifyuibuilder/package.json b/clients/client-amplifyuibuilder/package.json index 87835a8b0503c..1d07e76363534 100644 --- a/clients/client-amplifyuibuilder/package.json +++ b/clients/client-amplifyuibuilder/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-amplifyuibuilder", "description": "AWS SDK for JavaScript Amplifyuibuilder Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-amplifyuibuilder", diff --git a/clients/client-api-gateway/CHANGELOG.md b/clients/client-api-gateway/CHANGELOG.md index 9017776d9374c..9278c980bd418 100644 --- a/clients/client-api-gateway/CHANGELOG.md +++ b/clients/client-api-gateway/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-api-gateway + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-api-gateway diff --git a/clients/client-api-gateway/package.json b/clients/client-api-gateway/package.json index fdf83ff9fee92..b3faf4f0baf2e 100644 --- a/clients/client-api-gateway/package.json +++ b/clients/client-api-gateway/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-api-gateway", "description": "AWS SDK for JavaScript Api Gateway Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-api-gateway", diff --git a/clients/client-apigatewaymanagementapi/CHANGELOG.md b/clients/client-apigatewaymanagementapi/CHANGELOG.md index a7500f03ecd75..61c43b4fd7e61 100644 --- a/clients/client-apigatewaymanagementapi/CHANGELOG.md +++ b/clients/client-apigatewaymanagementapi/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-apigatewaymanagementapi + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-apigatewaymanagementapi diff --git a/clients/client-apigatewaymanagementapi/package.json b/clients/client-apigatewaymanagementapi/package.json index a26bc70ff8586..390cf5c3772ea 100644 --- a/clients/client-apigatewaymanagementapi/package.json +++ b/clients/client-apigatewaymanagementapi/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-apigatewaymanagementapi", "description": "AWS SDK for JavaScript Apigatewaymanagementapi Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-apigatewaymanagementapi", diff --git a/clients/client-apigatewayv2/CHANGELOG.md b/clients/client-apigatewayv2/CHANGELOG.md index e01a212f43c0a..c3fe7a95a0317 100644 --- a/clients/client-apigatewayv2/CHANGELOG.md +++ b/clients/client-apigatewayv2/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-apigatewayv2 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-apigatewayv2 diff --git a/clients/client-apigatewayv2/package.json b/clients/client-apigatewayv2/package.json index f03533b9bf660..90c0c10553d57 100644 --- a/clients/client-apigatewayv2/package.json +++ b/clients/client-apigatewayv2/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-apigatewayv2", "description": "AWS SDK for JavaScript Apigatewayv2 Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-apigatewayv2", diff --git a/clients/client-app-mesh/CHANGELOG.md b/clients/client-app-mesh/CHANGELOG.md index 63b58268e551a..7c1c05676f992 100644 --- a/clients/client-app-mesh/CHANGELOG.md +++ b/clients/client-app-mesh/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-app-mesh + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-app-mesh diff --git a/clients/client-app-mesh/package.json b/clients/client-app-mesh/package.json index 93f7929be8339..eb350f5fba1a8 100644 --- a/clients/client-app-mesh/package.json +++ b/clients/client-app-mesh/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-app-mesh", "description": "AWS SDK for JavaScript App Mesh Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-app-mesh", diff --git a/clients/client-appconfig/CHANGELOG.md b/clients/client-appconfig/CHANGELOG.md index bdc3bb8541326..4ac8bd71f1962 100644 --- a/clients/client-appconfig/CHANGELOG.md +++ b/clients/client-appconfig/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-appconfig + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-appconfig diff --git a/clients/client-appconfig/package.json b/clients/client-appconfig/package.json index 19b742acfe65c..4829baf09bd39 100644 --- a/clients/client-appconfig/package.json +++ b/clients/client-appconfig/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-appconfig", "description": "AWS SDK for JavaScript Appconfig Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-appconfig", diff --git a/clients/client-appconfigdata/CHANGELOG.md b/clients/client-appconfigdata/CHANGELOG.md index 007152ad99d47..0079416d56258 100644 --- a/clients/client-appconfigdata/CHANGELOG.md +++ b/clients/client-appconfigdata/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-appconfigdata + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-appconfigdata diff --git a/clients/client-appconfigdata/package.json b/clients/client-appconfigdata/package.json index dc3530908339c..5f7926a3a40ed 100644 --- a/clients/client-appconfigdata/package.json +++ b/clients/client-appconfigdata/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-appconfigdata", "description": "AWS SDK for JavaScript Appconfigdata Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-appconfigdata", diff --git a/clients/client-appfabric/CHANGELOG.md b/clients/client-appfabric/CHANGELOG.md index af2d1e48b74a8..ff99d795f30b2 100644 --- a/clients/client-appfabric/CHANGELOG.md +++ b/clients/client-appfabric/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-appfabric + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-appfabric diff --git a/clients/client-appfabric/package.json b/clients/client-appfabric/package.json index 0932805f7699b..7165f5d89e111 100644 --- a/clients/client-appfabric/package.json +++ b/clients/client-appfabric/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-appfabric", "description": "AWS SDK for JavaScript Appfabric Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-appfabric", diff --git a/clients/client-appflow/CHANGELOG.md b/clients/client-appflow/CHANGELOG.md index 82edfbf2f1e43..8ff5192a92daf 100644 --- a/clients/client-appflow/CHANGELOG.md +++ b/clients/client-appflow/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-appflow + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-appflow diff --git a/clients/client-appflow/package.json b/clients/client-appflow/package.json index 2104c2f573427..006774d0e91ff 100644 --- a/clients/client-appflow/package.json +++ b/clients/client-appflow/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-appflow", "description": "AWS SDK for JavaScript Appflow Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-appflow", diff --git a/clients/client-appintegrations/CHANGELOG.md b/clients/client-appintegrations/CHANGELOG.md index 448038e9bc7cd..c42a464dbf75f 100644 --- a/clients/client-appintegrations/CHANGELOG.md +++ b/clients/client-appintegrations/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-appintegrations + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-appintegrations diff --git a/clients/client-appintegrations/package.json b/clients/client-appintegrations/package.json index 9b257a16bad30..547df76e41c44 100644 --- a/clients/client-appintegrations/package.json +++ b/clients/client-appintegrations/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-appintegrations", "description": "AWS SDK for JavaScript Appintegrations Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-appintegrations", diff --git a/clients/client-application-auto-scaling/CHANGELOG.md b/clients/client-application-auto-scaling/CHANGELOG.md index eb61da8ef7c44..197fe91630cc6 100644 --- a/clients/client-application-auto-scaling/CHANGELOG.md +++ b/clients/client-application-auto-scaling/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-application-auto-scaling + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-application-auto-scaling diff --git a/clients/client-application-auto-scaling/package.json b/clients/client-application-auto-scaling/package.json index ec4cf75ad0365..e90136b47e778 100644 --- a/clients/client-application-auto-scaling/package.json +++ b/clients/client-application-auto-scaling/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-application-auto-scaling", "description": "AWS SDK for JavaScript Application Auto Scaling Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-application-auto-scaling", diff --git a/clients/client-application-discovery-service/CHANGELOG.md b/clients/client-application-discovery-service/CHANGELOG.md index 5d11fc62c6f2e..ec207ed05d260 100644 --- a/clients/client-application-discovery-service/CHANGELOG.md +++ b/clients/client-application-discovery-service/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-application-discovery-service + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-application-discovery-service diff --git a/clients/client-application-discovery-service/package.json b/clients/client-application-discovery-service/package.json index 191c49e2a6d9d..cc83fcd593a4d 100644 --- a/clients/client-application-discovery-service/package.json +++ b/clients/client-application-discovery-service/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-application-discovery-service", "description": "AWS SDK for JavaScript Application Discovery Service Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-application-discovery-service", diff --git a/clients/client-application-insights/CHANGELOG.md b/clients/client-application-insights/CHANGELOG.md index 9e1821b090d26..497758a20e3ef 100644 --- a/clients/client-application-insights/CHANGELOG.md +++ b/clients/client-application-insights/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-application-insights + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-application-insights diff --git a/clients/client-application-insights/package.json b/clients/client-application-insights/package.json index d60e42ff8d08f..752b36779afa0 100644 --- a/clients/client-application-insights/package.json +++ b/clients/client-application-insights/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-application-insights", "description": "AWS SDK for JavaScript Application Insights Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-application-insights", diff --git a/clients/client-application-signals/CHANGELOG.md b/clients/client-application-signals/CHANGELOG.md index b9b103c9b0bad..23ff557280f89 100644 --- a/clients/client-application-signals/CHANGELOG.md +++ b/clients/client-application-signals/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-application-signals + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-application-signals diff --git a/clients/client-application-signals/package.json b/clients/client-application-signals/package.json index 35d425031f12f..09a35abfe0185 100644 --- a/clients/client-application-signals/package.json +++ b/clients/client-application-signals/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-application-signals", "description": "AWS SDK for JavaScript Application Signals Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/clients/client-applicationcostprofiler/CHANGELOG.md b/clients/client-applicationcostprofiler/CHANGELOG.md index e5ee6c61905ef..be8e0acd2192e 100644 --- a/clients/client-applicationcostprofiler/CHANGELOG.md +++ b/clients/client-applicationcostprofiler/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-applicationcostprofiler + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-applicationcostprofiler diff --git a/clients/client-applicationcostprofiler/package.json b/clients/client-applicationcostprofiler/package.json index bd1e0ae08af97..94e4e7dfc4867 100644 --- a/clients/client-applicationcostprofiler/package.json +++ b/clients/client-applicationcostprofiler/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-applicationcostprofiler", "description": "AWS SDK for JavaScript Applicationcostprofiler Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-applicationcostprofiler", diff --git a/clients/client-apprunner/CHANGELOG.md b/clients/client-apprunner/CHANGELOG.md index b4d21078c38cf..f1a27c5b56e35 100644 --- a/clients/client-apprunner/CHANGELOG.md +++ b/clients/client-apprunner/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-apprunner + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-apprunner diff --git a/clients/client-apprunner/package.json b/clients/client-apprunner/package.json index e142603ba9dea..9d4b354844237 100644 --- a/clients/client-apprunner/package.json +++ b/clients/client-apprunner/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-apprunner", "description": "AWS SDK for JavaScript Apprunner Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-apprunner", diff --git a/clients/client-appstream/CHANGELOG.md b/clients/client-appstream/CHANGELOG.md index c8845657b1932..e10049d96d82e 100644 --- a/clients/client-appstream/CHANGELOG.md +++ b/clients/client-appstream/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-appstream + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-appstream diff --git a/clients/client-appstream/package.json b/clients/client-appstream/package.json index 8df2ec35e3a79..e61d1d4b094a3 100644 --- a/clients/client-appstream/package.json +++ b/clients/client-appstream/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-appstream", "description": "AWS SDK for JavaScript Appstream Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-appstream", diff --git a/clients/client-appsync/CHANGELOG.md b/clients/client-appsync/CHANGELOG.md index 2f49c3821e1b0..a58773f8d0719 100644 --- a/clients/client-appsync/CHANGELOG.md +++ b/clients/client-appsync/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-appsync + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-appsync diff --git a/clients/client-appsync/package.json b/clients/client-appsync/package.json index 5caaed7c613d9..6fddea86703b3 100644 --- a/clients/client-appsync/package.json +++ b/clients/client-appsync/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-appsync", "description": "AWS SDK for JavaScript Appsync Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-appsync", diff --git a/clients/client-apptest/CHANGELOG.md b/clients/client-apptest/CHANGELOG.md index 7d01645741915..b6265f1f25350 100644 --- a/clients/client-apptest/CHANGELOG.md +++ b/clients/client-apptest/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-apptest + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-apptest diff --git a/clients/client-apptest/package.json b/clients/client-apptest/package.json index ba6e67ae577ac..e076cdfa4bdde 100644 --- a/clients/client-apptest/package.json +++ b/clients/client-apptest/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-apptest", "description": "AWS SDK for JavaScript Apptest Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/clients/client-arc-zonal-shift/CHANGELOG.md b/clients/client-arc-zonal-shift/CHANGELOG.md index 75462cc867baa..8667efaa9b519 100644 --- a/clients/client-arc-zonal-shift/CHANGELOG.md +++ b/clients/client-arc-zonal-shift/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-arc-zonal-shift + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-arc-zonal-shift diff --git a/clients/client-arc-zonal-shift/package.json b/clients/client-arc-zonal-shift/package.json index e27aabcd28c26..e3cf05dbb0fba 100644 --- a/clients/client-arc-zonal-shift/package.json +++ b/clients/client-arc-zonal-shift/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-arc-zonal-shift", "description": "AWS SDK for JavaScript Arc Zonal Shift Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-arc-zonal-shift", diff --git a/clients/client-artifact/CHANGELOG.md b/clients/client-artifact/CHANGELOG.md index c796f9671da73..eb8a5b2297f32 100644 --- a/clients/client-artifact/CHANGELOG.md +++ b/clients/client-artifact/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-artifact + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-artifact diff --git a/clients/client-artifact/package.json b/clients/client-artifact/package.json index 5cab04c88cd8a..30e25587ba47e 100644 --- a/clients/client-artifact/package.json +++ b/clients/client-artifact/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-artifact", "description": "AWS SDK for JavaScript Artifact Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/clients/client-athena/CHANGELOG.md b/clients/client-athena/CHANGELOG.md index ca92cf8faee29..e3378008d5bd4 100644 --- a/clients/client-athena/CHANGELOG.md +++ b/clients/client-athena/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-athena + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-athena diff --git a/clients/client-athena/package.json b/clients/client-athena/package.json index a92439fdde5be..158910e831c19 100644 --- a/clients/client-athena/package.json +++ b/clients/client-athena/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-athena", "description": "AWS SDK for JavaScript Athena Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-athena", diff --git a/clients/client-auditmanager/CHANGELOG.md b/clients/client-auditmanager/CHANGELOG.md index 3eefceab419e5..e76f9a01c12d8 100644 --- a/clients/client-auditmanager/CHANGELOG.md +++ b/clients/client-auditmanager/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-auditmanager + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-auditmanager diff --git a/clients/client-auditmanager/package.json b/clients/client-auditmanager/package.json index efd83d9a488a2..0839bdae3abbf 100644 --- a/clients/client-auditmanager/package.json +++ b/clients/client-auditmanager/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-auditmanager", "description": "AWS SDK for JavaScript Auditmanager Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-auditmanager", diff --git a/clients/client-auto-scaling-plans/CHANGELOG.md b/clients/client-auto-scaling-plans/CHANGELOG.md index 86e0775377b4b..9d6b1772dfdd5 100644 --- a/clients/client-auto-scaling-plans/CHANGELOG.md +++ b/clients/client-auto-scaling-plans/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-auto-scaling-plans + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-auto-scaling-plans diff --git a/clients/client-auto-scaling-plans/package.json b/clients/client-auto-scaling-plans/package.json index 494b16723868b..bf6be912d1503 100644 --- a/clients/client-auto-scaling-plans/package.json +++ b/clients/client-auto-scaling-plans/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-auto-scaling-plans", "description": "AWS SDK for JavaScript Auto Scaling Plans Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-auto-scaling-plans", diff --git a/clients/client-auto-scaling/CHANGELOG.md b/clients/client-auto-scaling/CHANGELOG.md index 04b3a9154cc10..f15e251ab1549 100644 --- a/clients/client-auto-scaling/CHANGELOG.md +++ b/clients/client-auto-scaling/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-auto-scaling + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-auto-scaling diff --git a/clients/client-auto-scaling/package.json b/clients/client-auto-scaling/package.json index 4176349d3d287..2e85f390e6646 100644 --- a/clients/client-auto-scaling/package.json +++ b/clients/client-auto-scaling/package.json @@ -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.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-auto-scaling", diff --git a/clients/client-b2bi/CHANGELOG.md b/clients/client-b2bi/CHANGELOG.md index f8d7924ba5bca..a206d9d6549e7 100644 --- a/clients/client-b2bi/CHANGELOG.md +++ b/clients/client-b2bi/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-b2bi + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-b2bi diff --git a/clients/client-b2bi/package.json b/clients/client-b2bi/package.json index 780ea93f8c60a..976112d05180f 100644 --- a/clients/client-b2bi/package.json +++ b/clients/client-b2bi/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-b2bi", "description": "AWS SDK for JavaScript B2bi Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-b2bi", diff --git a/clients/client-backup-gateway/CHANGELOG.md b/clients/client-backup-gateway/CHANGELOG.md index e205cf675d348..a82a443ba1fd2 100644 --- a/clients/client-backup-gateway/CHANGELOG.md +++ b/clients/client-backup-gateway/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-backup-gateway + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-backup-gateway diff --git a/clients/client-backup-gateway/package.json b/clients/client-backup-gateway/package.json index 807532f676e63..7622f3c4c88f0 100644 --- a/clients/client-backup-gateway/package.json +++ b/clients/client-backup-gateway/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-backup-gateway", "description": "AWS SDK for JavaScript Backup Gateway Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-backup-gateway", diff --git a/clients/client-backup/CHANGELOG.md b/clients/client-backup/CHANGELOG.md index 3fb1c318c1b06..bda4af358f070 100644 --- a/clients/client-backup/CHANGELOG.md +++ b/clients/client-backup/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-backup + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-backup diff --git a/clients/client-backup/package.json b/clients/client-backup/package.json index 093833781eb18..86cf7662f32ae 100644 --- a/clients/client-backup/package.json +++ b/clients/client-backup/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-backup", "description": "AWS SDK for JavaScript Backup Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-backup", diff --git a/clients/client-batch/CHANGELOG.md b/clients/client-batch/CHANGELOG.md index 7b877b8f35971..6d996fa7f92cc 100644 --- a/clients/client-batch/CHANGELOG.md +++ b/clients/client-batch/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-batch + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-batch diff --git a/clients/client-batch/package.json b/clients/client-batch/package.json index a43f391a254b5..d90764cf7e2cc 100644 --- a/clients/client-batch/package.json +++ b/clients/client-batch/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-batch", "description": "AWS SDK for JavaScript Batch Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-batch", diff --git a/clients/client-bcm-data-exports/CHANGELOG.md b/clients/client-bcm-data-exports/CHANGELOG.md index fdd8e0d2a1ee1..9d11a350deefd 100644 --- a/clients/client-bcm-data-exports/CHANGELOG.md +++ b/clients/client-bcm-data-exports/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-bcm-data-exports + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-bcm-data-exports diff --git a/clients/client-bcm-data-exports/package.json b/clients/client-bcm-data-exports/package.json index 9e50dc4e2c9ee..b8cf91e538c6f 100644 --- a/clients/client-bcm-data-exports/package.json +++ b/clients/client-bcm-data-exports/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-bcm-data-exports", "description": "AWS SDK for JavaScript Bcm Data Exports Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-bcm-data-exports", diff --git a/clients/client-bedrock-agent-runtime/CHANGELOG.md b/clients/client-bedrock-agent-runtime/CHANGELOG.md index de1631b73ade4..59422c4d9b983 100644 --- a/clients/client-bedrock-agent-runtime/CHANGELOG.md +++ b/clients/client-bedrock-agent-runtime/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-bedrock-agent-runtime + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-bedrock-agent-runtime diff --git a/clients/client-bedrock-agent-runtime/package.json b/clients/client-bedrock-agent-runtime/package.json index 6be6c69690bdf..6d8dd83d40671 100644 --- a/clients/client-bedrock-agent-runtime/package.json +++ b/clients/client-bedrock-agent-runtime/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-bedrock-agent-runtime", "description": "AWS SDK for JavaScript Bedrock Agent Runtime Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-bedrock-agent-runtime", diff --git a/clients/client-bedrock-agent/CHANGELOG.md b/clients/client-bedrock-agent/CHANGELOG.md index eeb4ee5306c56..601ea4638fc82 100644 --- a/clients/client-bedrock-agent/CHANGELOG.md +++ b/clients/client-bedrock-agent/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-bedrock-agent + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-bedrock-agent diff --git a/clients/client-bedrock-agent/package.json b/clients/client-bedrock-agent/package.json index a9a8680eb5c67..9d90c289dccd0 100644 --- a/clients/client-bedrock-agent/package.json +++ b/clients/client-bedrock-agent/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-bedrock-agent", "description": "AWS SDK for JavaScript Bedrock Agent Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-bedrock-agent", diff --git a/clients/client-bedrock-runtime/CHANGELOG.md b/clients/client-bedrock-runtime/CHANGELOG.md index 13a1a8854cc7b..8e5af1fcea7d0 100644 --- a/clients/client-bedrock-runtime/CHANGELOG.md +++ b/clients/client-bedrock-runtime/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-bedrock-runtime + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-bedrock-runtime diff --git a/clients/client-bedrock-runtime/package.json b/clients/client-bedrock-runtime/package.json index 492fa142b985e..0978adf2a0d31 100644 --- a/clients/client-bedrock-runtime/package.json +++ b/clients/client-bedrock-runtime/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-bedrock-runtime", "description": "AWS SDK for JavaScript Bedrock Runtime Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-bedrock-runtime", diff --git a/clients/client-bedrock/CHANGELOG.md b/clients/client-bedrock/CHANGELOG.md index 47ddf439a23bf..7b746ab3433d9 100644 --- a/clients/client-bedrock/CHANGELOG.md +++ b/clients/client-bedrock/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-bedrock + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-bedrock diff --git a/clients/client-bedrock/package.json b/clients/client-bedrock/package.json index 7bd4634686947..9365a8b547626 100644 --- a/clients/client-bedrock/package.json +++ b/clients/client-bedrock/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-bedrock", "description": "AWS SDK for JavaScript Bedrock Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-bedrock", diff --git a/clients/client-billingconductor/CHANGELOG.md b/clients/client-billingconductor/CHANGELOG.md index 6f82c9d89e4cd..fe6765d9129d4 100644 --- a/clients/client-billingconductor/CHANGELOG.md +++ b/clients/client-billingconductor/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-billingconductor + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-billingconductor diff --git a/clients/client-billingconductor/package.json b/clients/client-billingconductor/package.json index 12d17087fa364..eceda1f97c709 100644 --- a/clients/client-billingconductor/package.json +++ b/clients/client-billingconductor/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-billingconductor", "description": "AWS SDK for JavaScript Billingconductor Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-billingconductor", diff --git a/clients/client-braket/CHANGELOG.md b/clients/client-braket/CHANGELOG.md index 7b9dcbe87cc53..404ee5727acff 100644 --- a/clients/client-braket/CHANGELOG.md +++ b/clients/client-braket/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-braket + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-braket diff --git a/clients/client-braket/package.json b/clients/client-braket/package.json index 2c2891c5137e5..78c9388b2f606 100644 --- a/clients/client-braket/package.json +++ b/clients/client-braket/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-braket", "description": "AWS SDK for JavaScript Braket Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-braket", diff --git a/clients/client-budgets/CHANGELOG.md b/clients/client-budgets/CHANGELOG.md index aed9d91526f76..3ccf76dc3a071 100644 --- a/clients/client-budgets/CHANGELOG.md +++ b/clients/client-budgets/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-budgets + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-budgets diff --git a/clients/client-budgets/package.json b/clients/client-budgets/package.json index f1662dd8069c1..eaa6c924e4161 100644 --- a/clients/client-budgets/package.json +++ b/clients/client-budgets/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-budgets", "description": "AWS SDK for JavaScript Budgets Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-budgets", diff --git a/clients/client-chatbot/CHANGELOG.md b/clients/client-chatbot/CHANGELOG.md index a0a1331dbcb53..e521f38188bc4 100644 --- a/clients/client-chatbot/CHANGELOG.md +++ b/clients/client-chatbot/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-chatbot + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-chatbot diff --git a/clients/client-chatbot/package.json b/clients/client-chatbot/package.json index 52df724ae4d1c..376306104d508 100644 --- a/clients/client-chatbot/package.json +++ b/clients/client-chatbot/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-chatbot", "description": "AWS SDK for JavaScript Chatbot Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/clients/client-chime-sdk-identity/CHANGELOG.md b/clients/client-chime-sdk-identity/CHANGELOG.md index 658a1b45efc57..243057f2c030d 100644 --- a/clients/client-chime-sdk-identity/CHANGELOG.md +++ b/clients/client-chime-sdk-identity/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-chime-sdk-identity + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-chime-sdk-identity diff --git a/clients/client-chime-sdk-identity/package.json b/clients/client-chime-sdk-identity/package.json index 97305789b8976..c53d295d36eaa 100644 --- a/clients/client-chime-sdk-identity/package.json +++ b/clients/client-chime-sdk-identity/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-chime-sdk-identity", "description": "AWS SDK for JavaScript Chime Sdk Identity Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-chime-sdk-identity", diff --git a/clients/client-chime-sdk-media-pipelines/CHANGELOG.md b/clients/client-chime-sdk-media-pipelines/CHANGELOG.md index db415005196a1..3c2f31cbdf120 100644 --- a/clients/client-chime-sdk-media-pipelines/CHANGELOG.md +++ b/clients/client-chime-sdk-media-pipelines/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-chime-sdk-media-pipelines + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-chime-sdk-media-pipelines diff --git a/clients/client-chime-sdk-media-pipelines/package.json b/clients/client-chime-sdk-media-pipelines/package.json index 68a52d62b56fd..5d92d8096f7ee 100644 --- a/clients/client-chime-sdk-media-pipelines/package.json +++ b/clients/client-chime-sdk-media-pipelines/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-chime-sdk-media-pipelines", "description": "AWS SDK for JavaScript Chime Sdk Media Pipelines Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-chime-sdk-media-pipelines", diff --git a/clients/client-chime-sdk-meetings/CHANGELOG.md b/clients/client-chime-sdk-meetings/CHANGELOG.md index 9ba2f6d101c60..674bb0974e938 100644 --- a/clients/client-chime-sdk-meetings/CHANGELOG.md +++ b/clients/client-chime-sdk-meetings/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-chime-sdk-meetings + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-chime-sdk-meetings diff --git a/clients/client-chime-sdk-meetings/package.json b/clients/client-chime-sdk-meetings/package.json index 73dfd18f68fe8..c75eecbed4a1f 100644 --- a/clients/client-chime-sdk-meetings/package.json +++ b/clients/client-chime-sdk-meetings/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-chime-sdk-meetings", "description": "AWS SDK for JavaScript Chime Sdk Meetings Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-chime-sdk-meetings", diff --git a/clients/client-chime-sdk-messaging/CHANGELOG.md b/clients/client-chime-sdk-messaging/CHANGELOG.md index 7e5651dc9473e..64b7f1fb1a4a4 100644 --- a/clients/client-chime-sdk-messaging/CHANGELOG.md +++ b/clients/client-chime-sdk-messaging/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-chime-sdk-messaging + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-chime-sdk-messaging diff --git a/clients/client-chime-sdk-messaging/package.json b/clients/client-chime-sdk-messaging/package.json index b27c9cd18dd4a..082b2881a0170 100644 --- a/clients/client-chime-sdk-messaging/package.json +++ b/clients/client-chime-sdk-messaging/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-chime-sdk-messaging", "description": "AWS SDK for JavaScript Chime Sdk Messaging Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-chime-sdk-messaging", diff --git a/clients/client-chime-sdk-voice/CHANGELOG.md b/clients/client-chime-sdk-voice/CHANGELOG.md index 5bf67334b4c2f..5e210450f45b9 100644 --- a/clients/client-chime-sdk-voice/CHANGELOG.md +++ b/clients/client-chime-sdk-voice/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-chime-sdk-voice + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-chime-sdk-voice diff --git a/clients/client-chime-sdk-voice/package.json b/clients/client-chime-sdk-voice/package.json index 59fa948b57d5a..7b2e1f3f99b95 100644 --- a/clients/client-chime-sdk-voice/package.json +++ b/clients/client-chime-sdk-voice/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-chime-sdk-voice", "description": "AWS SDK for JavaScript Chime Sdk Voice Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-chime-sdk-voice", diff --git a/clients/client-chime/CHANGELOG.md b/clients/client-chime/CHANGELOG.md index 07b4983c7a8eb..993798d574ae5 100644 --- a/clients/client-chime/CHANGELOG.md +++ b/clients/client-chime/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-chime + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-chime diff --git a/clients/client-chime/package.json b/clients/client-chime/package.json index d4529f32d4e17..06bb5469190a6 100644 --- a/clients/client-chime/package.json +++ b/clients/client-chime/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-chime", "description": "AWS SDK for JavaScript Chime Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-chime", diff --git a/clients/client-cleanrooms/CHANGELOG.md b/clients/client-cleanrooms/CHANGELOG.md index d1a8458d3c9b7..5bdf47a45120e 100644 --- a/clients/client-cleanrooms/CHANGELOG.md +++ b/clients/client-cleanrooms/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cleanrooms + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cleanrooms diff --git a/clients/client-cleanrooms/package.json b/clients/client-cleanrooms/package.json index bb05d8a494c5c..5f22a39dd9a96 100644 --- a/clients/client-cleanrooms/package.json +++ b/clients/client-cleanrooms/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cleanrooms", "description": "AWS SDK for JavaScript Cleanrooms Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cleanrooms", diff --git a/clients/client-cleanroomsml/CHANGELOG.md b/clients/client-cleanroomsml/CHANGELOG.md index fbdfb4ce71001..2adefcfef3be0 100644 --- a/clients/client-cleanroomsml/CHANGELOG.md +++ b/clients/client-cleanroomsml/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cleanroomsml + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cleanroomsml diff --git a/clients/client-cleanroomsml/package.json b/clients/client-cleanroomsml/package.json index 68cb0d630bae0..282a62298241c 100644 --- a/clients/client-cleanroomsml/package.json +++ b/clients/client-cleanroomsml/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cleanroomsml", "description": "AWS SDK for JavaScript Cleanroomsml Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cleanroomsml", diff --git a/clients/client-cloud9/CHANGELOG.md b/clients/client-cloud9/CHANGELOG.md index f22a49573429c..3d40ae67ffc06 100644 --- a/clients/client-cloud9/CHANGELOG.md +++ b/clients/client-cloud9/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cloud9 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cloud9 diff --git a/clients/client-cloud9/package.json b/clients/client-cloud9/package.json index e81034a8e1e3f..7ca60a182451f 100644 --- a/clients/client-cloud9/package.json +++ b/clients/client-cloud9/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cloud9", "description": "AWS SDK for JavaScript Cloud9 Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cloud9", diff --git a/clients/client-cloudcontrol/CHANGELOG.md b/clients/client-cloudcontrol/CHANGELOG.md index c91fbba42dfe7..336a2ec42c4af 100644 --- a/clients/client-cloudcontrol/CHANGELOG.md +++ b/clients/client-cloudcontrol/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cloudcontrol + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cloudcontrol diff --git a/clients/client-cloudcontrol/package.json b/clients/client-cloudcontrol/package.json index b410b54c7b2d5..3670d99f3f394 100644 --- a/clients/client-cloudcontrol/package.json +++ b/clients/client-cloudcontrol/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cloudcontrol", "description": "AWS SDK for JavaScript Cloudcontrol Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cloudcontrol", diff --git a/clients/client-clouddirectory/CHANGELOG.md b/clients/client-clouddirectory/CHANGELOG.md index 5620733768f34..42a1e1bf20360 100644 --- a/clients/client-clouddirectory/CHANGELOG.md +++ b/clients/client-clouddirectory/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-clouddirectory + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-clouddirectory diff --git a/clients/client-clouddirectory/package.json b/clients/client-clouddirectory/package.json index 92f7aafaedfe1..2f8169623d66d 100644 --- a/clients/client-clouddirectory/package.json +++ b/clients/client-clouddirectory/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-clouddirectory", "description": "AWS SDK for JavaScript Clouddirectory Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-clouddirectory", diff --git a/clients/client-cloudformation/CHANGELOG.md b/clients/client-cloudformation/CHANGELOG.md index 71d334c4dfad9..52cdd6e2a35e9 100644 --- a/clients/client-cloudformation/CHANGELOG.md +++ b/clients/client-cloudformation/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cloudformation + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cloudformation diff --git a/clients/client-cloudformation/package.json b/clients/client-cloudformation/package.json index 9be1588d8e76b..3d276d524c2c5 100644 --- a/clients/client-cloudformation/package.json +++ b/clients/client-cloudformation/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cloudformation", "description": "AWS SDK for JavaScript Cloudformation Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cloudformation", diff --git a/clients/client-cloudfront-keyvaluestore/CHANGELOG.md b/clients/client-cloudfront-keyvaluestore/CHANGELOG.md index 8187fcc649711..45aa737e0f1ad 100644 --- a/clients/client-cloudfront-keyvaluestore/CHANGELOG.md +++ b/clients/client-cloudfront-keyvaluestore/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cloudfront-keyvaluestore + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cloudfront-keyvaluestore diff --git a/clients/client-cloudfront-keyvaluestore/package.json b/clients/client-cloudfront-keyvaluestore/package.json index 74bc0b04c96ee..f487c00748793 100644 --- a/clients/client-cloudfront-keyvaluestore/package.json +++ b/clients/client-cloudfront-keyvaluestore/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cloudfront-keyvaluestore", "description": "AWS SDK for JavaScript Cloudfront Keyvaluestore Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cloudfront-keyvaluestore", diff --git a/clients/client-cloudfront/CHANGELOG.md b/clients/client-cloudfront/CHANGELOG.md index 78ffac55085f4..322b81dd18fea 100644 --- a/clients/client-cloudfront/CHANGELOG.md +++ b/clients/client-cloudfront/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cloudfront + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cloudfront diff --git a/clients/client-cloudfront/package.json b/clients/client-cloudfront/package.json index 70a565b056691..d599d9540addc 100644 --- a/clients/client-cloudfront/package.json +++ b/clients/client-cloudfront/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cloudfront", "description": "AWS SDK for JavaScript Cloudfront Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cloudfront", diff --git a/clients/client-cloudhsm-v2/CHANGELOG.md b/clients/client-cloudhsm-v2/CHANGELOG.md index 300efcfca13ba..c71b504796068 100644 --- a/clients/client-cloudhsm-v2/CHANGELOG.md +++ b/clients/client-cloudhsm-v2/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cloudhsm-v2 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cloudhsm-v2 diff --git a/clients/client-cloudhsm-v2/package.json b/clients/client-cloudhsm-v2/package.json index 0c927540cfb92..34274da92f0b1 100644 --- a/clients/client-cloudhsm-v2/package.json +++ b/clients/client-cloudhsm-v2/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cloudhsm-v2", "description": "AWS SDK for JavaScript Cloudhsm V2 Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cloudhsm-v2", diff --git a/clients/client-cloudhsm/CHANGELOG.md b/clients/client-cloudhsm/CHANGELOG.md index 985541826a9e8..884e94a619b2a 100644 --- a/clients/client-cloudhsm/CHANGELOG.md +++ b/clients/client-cloudhsm/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cloudhsm + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cloudhsm diff --git a/clients/client-cloudhsm/package.json b/clients/client-cloudhsm/package.json index 393cfb309b873..2c016c7d54d3a 100644 --- a/clients/client-cloudhsm/package.json +++ b/clients/client-cloudhsm/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cloudhsm", "description": "AWS SDK for JavaScript Cloudhsm Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cloudhsm", diff --git a/clients/client-cloudsearch-domain/CHANGELOG.md b/clients/client-cloudsearch-domain/CHANGELOG.md index 81500e7b0f090..09ae386ad7f78 100644 --- a/clients/client-cloudsearch-domain/CHANGELOG.md +++ b/clients/client-cloudsearch-domain/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cloudsearch-domain + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cloudsearch-domain diff --git a/clients/client-cloudsearch-domain/package.json b/clients/client-cloudsearch-domain/package.json index dfa82f2b3ae11..f1a26ce5c0723 100644 --- a/clients/client-cloudsearch-domain/package.json +++ b/clients/client-cloudsearch-domain/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cloudsearch-domain", "description": "AWS SDK for JavaScript Cloudsearch Domain Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cloudsearch-domain", diff --git a/clients/client-cloudsearch/CHANGELOG.md b/clients/client-cloudsearch/CHANGELOG.md index 8674f8b577fba..00bd82f6eb6cd 100644 --- a/clients/client-cloudsearch/CHANGELOG.md +++ b/clients/client-cloudsearch/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cloudsearch + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cloudsearch diff --git a/clients/client-cloudsearch/package.json b/clients/client-cloudsearch/package.json index 8478a6ff8105c..1ff3503f9476c 100644 --- a/clients/client-cloudsearch/package.json +++ b/clients/client-cloudsearch/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cloudsearch", "description": "AWS SDK for JavaScript Cloudsearch Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cloudsearch", diff --git a/clients/client-cloudtrail-data/CHANGELOG.md b/clients/client-cloudtrail-data/CHANGELOG.md index 0fac8f01d2686..e0b375ec93662 100644 --- a/clients/client-cloudtrail-data/CHANGELOG.md +++ b/clients/client-cloudtrail-data/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cloudtrail-data + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cloudtrail-data diff --git a/clients/client-cloudtrail-data/package.json b/clients/client-cloudtrail-data/package.json index 4d5d8a6d6eab2..af6aa82721049 100644 --- a/clients/client-cloudtrail-data/package.json +++ b/clients/client-cloudtrail-data/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cloudtrail-data", "description": "AWS SDK for JavaScript Cloudtrail Data Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cloudtrail-data", diff --git a/clients/client-cloudtrail/CHANGELOG.md b/clients/client-cloudtrail/CHANGELOG.md index 6870e68e2c2d7..311d1e8462cdf 100644 --- a/clients/client-cloudtrail/CHANGELOG.md +++ b/clients/client-cloudtrail/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cloudtrail + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cloudtrail diff --git a/clients/client-cloudtrail/package.json b/clients/client-cloudtrail/package.json index cff5ada41b5c0..6b4e6aedc9884 100644 --- a/clients/client-cloudtrail/package.json +++ b/clients/client-cloudtrail/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cloudtrail", "description": "AWS SDK for JavaScript Cloudtrail Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cloudtrail", diff --git a/clients/client-cloudwatch-events/CHANGELOG.md b/clients/client-cloudwatch-events/CHANGELOG.md index 703f450b94bb6..cf4bed4dd1316 100644 --- a/clients/client-cloudwatch-events/CHANGELOG.md +++ b/clients/client-cloudwatch-events/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cloudwatch-events + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cloudwatch-events diff --git a/clients/client-cloudwatch-events/package.json b/clients/client-cloudwatch-events/package.json index a5a7b60126250..5a56eade6296f 100644 --- a/clients/client-cloudwatch-events/package.json +++ b/clients/client-cloudwatch-events/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cloudwatch-events", "description": "AWS SDK for JavaScript Cloudwatch Events Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cloudwatch-events", diff --git a/clients/client-cloudwatch-logs/CHANGELOG.md b/clients/client-cloudwatch-logs/CHANGELOG.md index 792054e9d7d09..66fac1baa72ac 100644 --- a/clients/client-cloudwatch-logs/CHANGELOG.md +++ b/clients/client-cloudwatch-logs/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cloudwatch-logs + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cloudwatch-logs diff --git a/clients/client-cloudwatch-logs/package.json b/clients/client-cloudwatch-logs/package.json index 3cec0e65d3da6..76c31b9128174 100644 --- a/clients/client-cloudwatch-logs/package.json +++ b/clients/client-cloudwatch-logs/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cloudwatch-logs", "description": "AWS SDK for JavaScript Cloudwatch Logs Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cloudwatch-logs", diff --git a/clients/client-cloudwatch/CHANGELOG.md b/clients/client-cloudwatch/CHANGELOG.md index 4a371f99c6f0b..23cdb25bcb6fe 100644 --- a/clients/client-cloudwatch/CHANGELOG.md +++ b/clients/client-cloudwatch/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cloudwatch + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cloudwatch diff --git a/clients/client-cloudwatch/package.json b/clients/client-cloudwatch/package.json index d8eb975a4c22e..7ab4603259c7e 100644 --- a/clients/client-cloudwatch/package.json +++ b/clients/client-cloudwatch/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cloudwatch", "description": "AWS SDK for JavaScript Cloudwatch Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cloudwatch", diff --git a/clients/client-codeartifact/CHANGELOG.md b/clients/client-codeartifact/CHANGELOG.md index c67aaec11e747..b903c3a4ad4a1 100644 --- a/clients/client-codeartifact/CHANGELOG.md +++ b/clients/client-codeartifact/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-codeartifact + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-codeartifact diff --git a/clients/client-codeartifact/package.json b/clients/client-codeartifact/package.json index 1e3f2d2e9ca78..c90961fceede2 100644 --- a/clients/client-codeartifact/package.json +++ b/clients/client-codeartifact/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-codeartifact", "description": "AWS SDK for JavaScript Codeartifact Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-codeartifact", diff --git a/clients/client-codebuild/CHANGELOG.md b/clients/client-codebuild/CHANGELOG.md index 74af9eb85ef2e..1f2eafaba95cb 100644 --- a/clients/client-codebuild/CHANGELOG.md +++ b/clients/client-codebuild/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-codebuild + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) diff --git a/clients/client-codebuild/package.json b/clients/client-codebuild/package.json index f0cf040d44da6..d6c8442b376d8 100644 --- a/clients/client-codebuild/package.json +++ b/clients/client-codebuild/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-codebuild", "description": "AWS SDK for JavaScript Codebuild Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-codebuild", diff --git a/clients/client-codecatalyst/CHANGELOG.md b/clients/client-codecatalyst/CHANGELOG.md index 7462f5adc9ffc..5f0adb76b26f5 100644 --- a/clients/client-codecatalyst/CHANGELOG.md +++ b/clients/client-codecatalyst/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-codecatalyst + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-codecatalyst diff --git a/clients/client-codecatalyst/package.json b/clients/client-codecatalyst/package.json index 7ebf228034810..125a6b1f1aad1 100644 --- a/clients/client-codecatalyst/package.json +++ b/clients/client-codecatalyst/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-codecatalyst", "description": "AWS SDK for JavaScript Codecatalyst Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-codecatalyst", diff --git a/clients/client-codecommit/CHANGELOG.md b/clients/client-codecommit/CHANGELOG.md index 32e78a24a51ff..140d6112cd811 100644 --- a/clients/client-codecommit/CHANGELOG.md +++ b/clients/client-codecommit/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-codecommit + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-codecommit diff --git a/clients/client-codecommit/package.json b/clients/client-codecommit/package.json index f69199e50f221..6c1057dde2906 100644 --- a/clients/client-codecommit/package.json +++ b/clients/client-codecommit/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-codecommit", "description": "AWS SDK for JavaScript Codecommit Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-codecommit", diff --git a/clients/client-codeconnections/CHANGELOG.md b/clients/client-codeconnections/CHANGELOG.md index 836887a54c97d..4357211516fa5 100644 --- a/clients/client-codeconnections/CHANGELOG.md +++ b/clients/client-codeconnections/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-codeconnections + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-codeconnections diff --git a/clients/client-codeconnections/package.json b/clients/client-codeconnections/package.json index 4b4e106685c65..359ec6fd098ac 100644 --- a/clients/client-codeconnections/package.json +++ b/clients/client-codeconnections/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-codeconnections", "description": "AWS SDK for JavaScript Codeconnections Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/clients/client-codedeploy/CHANGELOG.md b/clients/client-codedeploy/CHANGELOG.md index 086054db0aee8..222d66d17afe6 100644 --- a/clients/client-codedeploy/CHANGELOG.md +++ b/clients/client-codedeploy/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-codedeploy + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-codedeploy diff --git a/clients/client-codedeploy/package.json b/clients/client-codedeploy/package.json index 9665b7d3dcf50..afd75022bfddb 100644 --- a/clients/client-codedeploy/package.json +++ b/clients/client-codedeploy/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-codedeploy", "description": "AWS SDK for JavaScript Codedeploy Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-codedeploy", diff --git a/clients/client-codeguru-reviewer/CHANGELOG.md b/clients/client-codeguru-reviewer/CHANGELOG.md index 8db734bc4335d..b6313fd2ace1c 100644 --- a/clients/client-codeguru-reviewer/CHANGELOG.md +++ b/clients/client-codeguru-reviewer/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-codeguru-reviewer + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-codeguru-reviewer diff --git a/clients/client-codeguru-reviewer/package.json b/clients/client-codeguru-reviewer/package.json index 55b89ee3053ba..5a7a9b362e935 100644 --- a/clients/client-codeguru-reviewer/package.json +++ b/clients/client-codeguru-reviewer/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-codeguru-reviewer", "description": "AWS SDK for JavaScript Codeguru Reviewer Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-codeguru-reviewer", diff --git a/clients/client-codeguru-security/CHANGELOG.md b/clients/client-codeguru-security/CHANGELOG.md index a8d0b5bf929c6..fc0d9ce09629d 100644 --- a/clients/client-codeguru-security/CHANGELOG.md +++ b/clients/client-codeguru-security/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-codeguru-security + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-codeguru-security diff --git a/clients/client-codeguru-security/package.json b/clients/client-codeguru-security/package.json index fc930f5989af5..fd5886b0b88a8 100644 --- a/clients/client-codeguru-security/package.json +++ b/clients/client-codeguru-security/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-codeguru-security", "description": "AWS SDK for JavaScript Codeguru Security Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-codeguru-security", diff --git a/clients/client-codeguruprofiler/CHANGELOG.md b/clients/client-codeguruprofiler/CHANGELOG.md index 85d92e564e1e1..97c7cc0a78d78 100644 --- a/clients/client-codeguruprofiler/CHANGELOG.md +++ b/clients/client-codeguruprofiler/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-codeguruprofiler + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-codeguruprofiler diff --git a/clients/client-codeguruprofiler/package.json b/clients/client-codeguruprofiler/package.json index 2e802a5c31107..f8837f8df4bb9 100644 --- a/clients/client-codeguruprofiler/package.json +++ b/clients/client-codeguruprofiler/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-codeguruprofiler", "description": "AWS SDK for JavaScript Codeguruprofiler Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-codeguruprofiler", diff --git a/clients/client-codepipeline/CHANGELOG.md b/clients/client-codepipeline/CHANGELOG.md index 5fd93acc83129..5b4832aa78f96 100644 --- a/clients/client-codepipeline/CHANGELOG.md +++ b/clients/client-codepipeline/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-codepipeline + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-codepipeline diff --git a/clients/client-codepipeline/package.json b/clients/client-codepipeline/package.json index a32485acec5fa..e76839d6f01fb 100644 --- a/clients/client-codepipeline/package.json +++ b/clients/client-codepipeline/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-codepipeline", "description": "AWS SDK for JavaScript Codepipeline Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-codepipeline", diff --git a/clients/client-codestar-connections/CHANGELOG.md b/clients/client-codestar-connections/CHANGELOG.md index 6daeff3988ff7..8a3910f70b097 100644 --- a/clients/client-codestar-connections/CHANGELOG.md +++ b/clients/client-codestar-connections/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-codestar-connections + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-codestar-connections diff --git a/clients/client-codestar-connections/package.json b/clients/client-codestar-connections/package.json index f7dfb6e7193f2..3ccb9c809e9c1 100644 --- a/clients/client-codestar-connections/package.json +++ b/clients/client-codestar-connections/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-codestar-connections", "description": "AWS SDK for JavaScript Codestar Connections Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-codestar-connections", diff --git a/clients/client-codestar-notifications/CHANGELOG.md b/clients/client-codestar-notifications/CHANGELOG.md index 745740ec24852..db2c93f00dc7c 100644 --- a/clients/client-codestar-notifications/CHANGELOG.md +++ b/clients/client-codestar-notifications/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-codestar-notifications + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-codestar-notifications diff --git a/clients/client-codestar-notifications/package.json b/clients/client-codestar-notifications/package.json index cb698263956c2..ee4ae30b74386 100644 --- a/clients/client-codestar-notifications/package.json +++ b/clients/client-codestar-notifications/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-codestar-notifications", "description": "AWS SDK for JavaScript Codestar Notifications Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-codestar-notifications", diff --git a/clients/client-codestar/CHANGELOG.md b/clients/client-codestar/CHANGELOG.md index bb878fbd1eacd..d7af7a22fa6e4 100644 --- a/clients/client-codestar/CHANGELOG.md +++ b/clients/client-codestar/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-codestar + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-codestar diff --git a/clients/client-codestar/package.json b/clients/client-codestar/package.json index 6d68b98f93cd7..aaceff4df8a09 100644 --- a/clients/client-codestar/package.json +++ b/clients/client-codestar/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-codestar", "description": "AWS SDK for JavaScript Codestar Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-codestar", diff --git a/clients/client-cognito-identity-provider/CHANGELOG.md b/clients/client-cognito-identity-provider/CHANGELOG.md index eb30d1a334da4..5218419d39b37 100644 --- a/clients/client-cognito-identity-provider/CHANGELOG.md +++ b/clients/client-cognito-identity-provider/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cognito-identity-provider + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cognito-identity-provider diff --git a/clients/client-cognito-identity-provider/package.json b/clients/client-cognito-identity-provider/package.json index c45e80aea2660..c9a3a44c80485 100644 --- a/clients/client-cognito-identity-provider/package.json +++ b/clients/client-cognito-identity-provider/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cognito-identity-provider", "description": "AWS SDK for JavaScript Cognito Identity Provider Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cognito-identity-provider", diff --git a/clients/client-cognito-identity/CHANGELOG.md b/clients/client-cognito-identity/CHANGELOG.md index c00c0b7d22755..374c1bb28176e 100644 --- a/clients/client-cognito-identity/CHANGELOG.md +++ b/clients/client-cognito-identity/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cognito-identity + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cognito-identity diff --git a/clients/client-cognito-identity/package.json b/clients/client-cognito-identity/package.json index bac6a71e0d42d..8384805235580 100644 --- a/clients/client-cognito-identity/package.json +++ b/clients/client-cognito-identity/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cognito-identity", "description": "AWS SDK for JavaScript Cognito Identity Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cognito-identity", diff --git a/clients/client-cognito-sync/CHANGELOG.md b/clients/client-cognito-sync/CHANGELOG.md index 85e41a5f9688d..c11febf6482eb 100644 --- a/clients/client-cognito-sync/CHANGELOG.md +++ b/clients/client-cognito-sync/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cognito-sync + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cognito-sync diff --git a/clients/client-cognito-sync/package.json b/clients/client-cognito-sync/package.json index 67134a566aa2c..780bb1391c6b6 100644 --- a/clients/client-cognito-sync/package.json +++ b/clients/client-cognito-sync/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cognito-sync", "description": "AWS SDK for JavaScript Cognito Sync Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cognito-sync", diff --git a/clients/client-comprehend/CHANGELOG.md b/clients/client-comprehend/CHANGELOG.md index 0aea23e7ce181..17e3fa93416d9 100644 --- a/clients/client-comprehend/CHANGELOG.md +++ b/clients/client-comprehend/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-comprehend + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-comprehend diff --git a/clients/client-comprehend/package.json b/clients/client-comprehend/package.json index d39206cd140f8..a0a3dbc9b5ab0 100644 --- a/clients/client-comprehend/package.json +++ b/clients/client-comprehend/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-comprehend", "description": "AWS SDK for JavaScript Comprehend Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-comprehend", diff --git a/clients/client-comprehendmedical/CHANGELOG.md b/clients/client-comprehendmedical/CHANGELOG.md index ab4c4f2eb3284..aa7c893a27d36 100644 --- a/clients/client-comprehendmedical/CHANGELOG.md +++ b/clients/client-comprehendmedical/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-comprehendmedical + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-comprehendmedical diff --git a/clients/client-comprehendmedical/package.json b/clients/client-comprehendmedical/package.json index 1df40e3402925..4f17357692e4e 100644 --- a/clients/client-comprehendmedical/package.json +++ b/clients/client-comprehendmedical/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-comprehendmedical", "description": "AWS SDK for JavaScript Comprehendmedical Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-comprehendmedical", diff --git a/clients/client-compute-optimizer/CHANGELOG.md b/clients/client-compute-optimizer/CHANGELOG.md index 4f2f9016f197e..8bfbf29a67531 100644 --- a/clients/client-compute-optimizer/CHANGELOG.md +++ b/clients/client-compute-optimizer/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-compute-optimizer + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-compute-optimizer diff --git a/clients/client-compute-optimizer/package.json b/clients/client-compute-optimizer/package.json index c92ca80e8dd9c..a3c19b64dbd51 100644 --- a/clients/client-compute-optimizer/package.json +++ b/clients/client-compute-optimizer/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-compute-optimizer", "description": "AWS SDK for JavaScript Compute Optimizer Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-compute-optimizer", diff --git a/clients/client-config-service/CHANGELOG.md b/clients/client-config-service/CHANGELOG.md index 6b2ec64f9d078..fb1921b1e6443 100644 --- a/clients/client-config-service/CHANGELOG.md +++ b/clients/client-config-service/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-config-service + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-config-service diff --git a/clients/client-config-service/package.json b/clients/client-config-service/package.json index 18e8b274f8bc8..6d5a056afbd8e 100644 --- a/clients/client-config-service/package.json +++ b/clients/client-config-service/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-config-service", "description": "AWS SDK for JavaScript Config Service Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-config-service", diff --git a/clients/client-connect-contact-lens/CHANGELOG.md b/clients/client-connect-contact-lens/CHANGELOG.md index 3b54bd32c5dd7..9f9749f812c37 100644 --- a/clients/client-connect-contact-lens/CHANGELOG.md +++ b/clients/client-connect-contact-lens/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-connect-contact-lens + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-connect-contact-lens diff --git a/clients/client-connect-contact-lens/package.json b/clients/client-connect-contact-lens/package.json index 03d59ea0193cb..cf95257fcd022 100644 --- a/clients/client-connect-contact-lens/package.json +++ b/clients/client-connect-contact-lens/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-connect-contact-lens", "description": "AWS SDK for JavaScript Connect Contact Lens Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-connect-contact-lens", diff --git a/clients/client-connect/CHANGELOG.md b/clients/client-connect/CHANGELOG.md index d7243fe2faff9..f5f4b2f08470a 100644 --- a/clients/client-connect/CHANGELOG.md +++ b/clients/client-connect/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-connect + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-connect diff --git a/clients/client-connect/package.json b/clients/client-connect/package.json index d335c5f719785..a25e0260e4f4f 100644 --- a/clients/client-connect/package.json +++ b/clients/client-connect/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-connect", "description": "AWS SDK for JavaScript Connect Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-connect", diff --git a/clients/client-connectcampaigns/CHANGELOG.md b/clients/client-connectcampaigns/CHANGELOG.md index 3c0367eeaaea8..282c8bb38b050 100644 --- a/clients/client-connectcampaigns/CHANGELOG.md +++ b/clients/client-connectcampaigns/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-connectcampaigns + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-connectcampaigns diff --git a/clients/client-connectcampaigns/package.json b/clients/client-connectcampaigns/package.json index c8330c079f3d7..c83944b570789 100644 --- a/clients/client-connectcampaigns/package.json +++ b/clients/client-connectcampaigns/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-connectcampaigns", "description": "AWS SDK for JavaScript Connectcampaigns Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-connectcampaigns", diff --git a/clients/client-connectcases/CHANGELOG.md b/clients/client-connectcases/CHANGELOG.md index 2da51fbfa74d1..940241cd689d3 100644 --- a/clients/client-connectcases/CHANGELOG.md +++ b/clients/client-connectcases/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-connectcases + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-connectcases diff --git a/clients/client-connectcases/package.json b/clients/client-connectcases/package.json index e1d5068639534..4426a15abafce 100644 --- a/clients/client-connectcases/package.json +++ b/clients/client-connectcases/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-connectcases", "description": "AWS SDK for JavaScript Connectcases Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-connectcases", diff --git a/clients/client-connectparticipant/CHANGELOG.md b/clients/client-connectparticipant/CHANGELOG.md index 6fa8a39f096ad..b7d9eb75fc094 100644 --- a/clients/client-connectparticipant/CHANGELOG.md +++ b/clients/client-connectparticipant/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-connectparticipant + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-connectparticipant diff --git a/clients/client-connectparticipant/package.json b/clients/client-connectparticipant/package.json index 7792ea100e2a6..53911b403f4b0 100644 --- a/clients/client-connectparticipant/package.json +++ b/clients/client-connectparticipant/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-connectparticipant", "description": "AWS SDK for JavaScript Connectparticipant Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-connectparticipant", diff --git a/clients/client-controlcatalog/CHANGELOG.md b/clients/client-controlcatalog/CHANGELOG.md index 1d266149f8060..08a238d73cdbe 100644 --- a/clients/client-controlcatalog/CHANGELOG.md +++ b/clients/client-controlcatalog/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-controlcatalog + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-controlcatalog diff --git a/clients/client-controlcatalog/package.json b/clients/client-controlcatalog/package.json index 7a066a78e0de4..87bdcae269b38 100644 --- a/clients/client-controlcatalog/package.json +++ b/clients/client-controlcatalog/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-controlcatalog", "description": "AWS SDK for JavaScript Controlcatalog Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/clients/client-controltower/CHANGELOG.md b/clients/client-controltower/CHANGELOG.md index 134024614a542..c8bdcc9d4ae80 100644 --- a/clients/client-controltower/CHANGELOG.md +++ b/clients/client-controltower/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-controltower + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-controltower diff --git a/clients/client-controltower/package.json b/clients/client-controltower/package.json index 1630cdeedd09a..56eb7715fd255 100644 --- a/clients/client-controltower/package.json +++ b/clients/client-controltower/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-controltower", "description": "AWS SDK for JavaScript Controltower Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-controltower", diff --git a/clients/client-cost-and-usage-report-service/CHANGELOG.md b/clients/client-cost-and-usage-report-service/CHANGELOG.md index 0fadb20f67e3a..6835ebb693346 100644 --- a/clients/client-cost-and-usage-report-service/CHANGELOG.md +++ b/clients/client-cost-and-usage-report-service/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cost-and-usage-report-service + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cost-and-usage-report-service diff --git a/clients/client-cost-and-usage-report-service/package.json b/clients/client-cost-and-usage-report-service/package.json index 81cd34f6cb0c0..645e17aea6d8c 100644 --- a/clients/client-cost-and-usage-report-service/package.json +++ b/clients/client-cost-and-usage-report-service/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cost-and-usage-report-service", "description": "AWS SDK for JavaScript Cost And Usage Report Service Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cost-and-usage-report-service", diff --git a/clients/client-cost-explorer/CHANGELOG.md b/clients/client-cost-explorer/CHANGELOG.md index 89ae12736ab91..e2657aa2850a9 100644 --- a/clients/client-cost-explorer/CHANGELOG.md +++ b/clients/client-cost-explorer/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cost-explorer + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cost-explorer diff --git a/clients/client-cost-explorer/package.json b/clients/client-cost-explorer/package.json index ea6e7f5a5c45b..c3b1db6428ad0 100644 --- a/clients/client-cost-explorer/package.json +++ b/clients/client-cost-explorer/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cost-explorer", "description": "AWS SDK for JavaScript Cost Explorer Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cost-explorer", diff --git a/clients/client-cost-optimization-hub/CHANGELOG.md b/clients/client-cost-optimization-hub/CHANGELOG.md index 645a14931a785..de39deb910d67 100644 --- a/clients/client-cost-optimization-hub/CHANGELOG.md +++ b/clients/client-cost-optimization-hub/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-cost-optimization-hub + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-cost-optimization-hub diff --git a/clients/client-cost-optimization-hub/package.json b/clients/client-cost-optimization-hub/package.json index 225e39f11d8bd..5a6873017c843 100644 --- a/clients/client-cost-optimization-hub/package.json +++ b/clients/client-cost-optimization-hub/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-cost-optimization-hub", "description": "AWS SDK for JavaScript Cost Optimization Hub Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-cost-optimization-hub", diff --git a/clients/client-customer-profiles/CHANGELOG.md b/clients/client-customer-profiles/CHANGELOG.md index 85bbd68aea618..f5065859ed90f 100644 --- a/clients/client-customer-profiles/CHANGELOG.md +++ b/clients/client-customer-profiles/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-customer-profiles + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-customer-profiles diff --git a/clients/client-customer-profiles/package.json b/clients/client-customer-profiles/package.json index c40a9e14b684b..d39222965d159 100644 --- a/clients/client-customer-profiles/package.json +++ b/clients/client-customer-profiles/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-customer-profiles", "description": "AWS SDK for JavaScript Customer Profiles Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-customer-profiles", diff --git a/clients/client-data-pipeline/CHANGELOG.md b/clients/client-data-pipeline/CHANGELOG.md index 214469078cb7c..3eaf09d5b779d 100644 --- a/clients/client-data-pipeline/CHANGELOG.md +++ b/clients/client-data-pipeline/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-data-pipeline + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-data-pipeline diff --git a/clients/client-data-pipeline/package.json b/clients/client-data-pipeline/package.json index c5cdb41a39a06..d7804204d1fba 100644 --- a/clients/client-data-pipeline/package.json +++ b/clients/client-data-pipeline/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-data-pipeline", "description": "AWS SDK for JavaScript Data Pipeline Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-data-pipeline", diff --git a/clients/client-database-migration-service/CHANGELOG.md b/clients/client-database-migration-service/CHANGELOG.md index 89205ce411554..15d103774e494 100644 --- a/clients/client-database-migration-service/CHANGELOG.md +++ b/clients/client-database-migration-service/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-database-migration-service + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-database-migration-service diff --git a/clients/client-database-migration-service/package.json b/clients/client-database-migration-service/package.json index 0db96105c0844..70f4175db4785 100644 --- a/clients/client-database-migration-service/package.json +++ b/clients/client-database-migration-service/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-database-migration-service", "description": "AWS SDK for JavaScript Database Migration Service Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-database-migration-service", diff --git a/clients/client-databrew/CHANGELOG.md b/clients/client-databrew/CHANGELOG.md index 5ba19e62d7869..484b916f28200 100644 --- a/clients/client-databrew/CHANGELOG.md +++ b/clients/client-databrew/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-databrew + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-databrew diff --git a/clients/client-databrew/package.json b/clients/client-databrew/package.json index 6145bd07b17f5..66824c56f1305 100644 --- a/clients/client-databrew/package.json +++ b/clients/client-databrew/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-databrew", "description": "AWS SDK for JavaScript Databrew Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-databrew", diff --git a/clients/client-dataexchange/CHANGELOG.md b/clients/client-dataexchange/CHANGELOG.md index ce4846b550053..cc8eb34dd3e32 100644 --- a/clients/client-dataexchange/CHANGELOG.md +++ b/clients/client-dataexchange/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-dataexchange + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-dataexchange diff --git a/clients/client-dataexchange/package.json b/clients/client-dataexchange/package.json index e9069b8226a15..e71b7ecb9e44d 100644 --- a/clients/client-dataexchange/package.json +++ b/clients/client-dataexchange/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-dataexchange", "description": "AWS SDK for JavaScript Dataexchange Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-dataexchange", diff --git a/clients/client-datasync/CHANGELOG.md b/clients/client-datasync/CHANGELOG.md index 3f65263df5b6f..5c1aa9c40af1b 100644 --- a/clients/client-datasync/CHANGELOG.md +++ b/clients/client-datasync/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-datasync + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-datasync diff --git a/clients/client-datasync/package.json b/clients/client-datasync/package.json index e34c3514267bd..2c417ca6d715d 100644 --- a/clients/client-datasync/package.json +++ b/clients/client-datasync/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-datasync", "description": "AWS SDK for JavaScript Datasync Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-datasync", diff --git a/clients/client-datazone/CHANGELOG.md b/clients/client-datazone/CHANGELOG.md index 7e069941e82d2..9e349990e998a 100644 --- a/clients/client-datazone/CHANGELOG.md +++ b/clients/client-datazone/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-datazone + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-datazone diff --git a/clients/client-datazone/package.json b/clients/client-datazone/package.json index 83328e0e2d31b..dd253c242f60d 100644 --- a/clients/client-datazone/package.json +++ b/clients/client-datazone/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-datazone", "description": "AWS SDK for JavaScript Datazone Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-datazone", diff --git a/clients/client-dax/CHANGELOG.md b/clients/client-dax/CHANGELOG.md index 260b3119208d2..fa9e621ebd694 100644 --- a/clients/client-dax/CHANGELOG.md +++ b/clients/client-dax/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-dax + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-dax diff --git a/clients/client-dax/package.json b/clients/client-dax/package.json index f0bff79683bfe..81d06043f7242 100644 --- a/clients/client-dax/package.json +++ b/clients/client-dax/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-dax", "description": "AWS SDK for JavaScript Dax Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-dax", diff --git a/clients/client-deadline/CHANGELOG.md b/clients/client-deadline/CHANGELOG.md index 84a64a84929c8..a432d6a981c72 100644 --- a/clients/client-deadline/CHANGELOG.md +++ b/clients/client-deadline/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-deadline + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-deadline diff --git a/clients/client-deadline/package.json b/clients/client-deadline/package.json index 77c79d2381193..c32267210e4e8 100644 --- a/clients/client-deadline/package.json +++ b/clients/client-deadline/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-deadline", "description": "AWS SDK for JavaScript Deadline Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/clients/client-detective/CHANGELOG.md b/clients/client-detective/CHANGELOG.md index 91f93dffb0bcd..f06452f27940b 100644 --- a/clients/client-detective/CHANGELOG.md +++ b/clients/client-detective/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-detective + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-detective diff --git a/clients/client-detective/package.json b/clients/client-detective/package.json index 9d053b06be43b..8afecc44bb650 100644 --- a/clients/client-detective/package.json +++ b/clients/client-detective/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-detective", "description": "AWS SDK for JavaScript Detective Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-detective", diff --git a/clients/client-device-farm/CHANGELOG.md b/clients/client-device-farm/CHANGELOG.md index 465829a5dadd1..2a5c6824b92e6 100644 --- a/clients/client-device-farm/CHANGELOG.md +++ b/clients/client-device-farm/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-device-farm + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-device-farm diff --git a/clients/client-device-farm/package.json b/clients/client-device-farm/package.json index d3ce3265b97a3..474358c8ca817 100644 --- a/clients/client-device-farm/package.json +++ b/clients/client-device-farm/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-device-farm", "description": "AWS SDK for JavaScript Device Farm Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-device-farm", diff --git a/clients/client-devops-guru/CHANGELOG.md b/clients/client-devops-guru/CHANGELOG.md index cd3bf3f518834..54356c59fa7ac 100644 --- a/clients/client-devops-guru/CHANGELOG.md +++ b/clients/client-devops-guru/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-devops-guru + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-devops-guru diff --git a/clients/client-devops-guru/package.json b/clients/client-devops-guru/package.json index 66cec83d263b3..d06a3b6434bff 100644 --- a/clients/client-devops-guru/package.json +++ b/clients/client-devops-guru/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-devops-guru", "description": "AWS SDK for JavaScript Devops Guru Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-devops-guru", diff --git a/clients/client-direct-connect/CHANGELOG.md b/clients/client-direct-connect/CHANGELOG.md index 038721deb3d44..28b85f340863d 100644 --- a/clients/client-direct-connect/CHANGELOG.md +++ b/clients/client-direct-connect/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-direct-connect + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-direct-connect diff --git a/clients/client-direct-connect/package.json b/clients/client-direct-connect/package.json index 7078572bdfb84..3935ff827ff46 100644 --- a/clients/client-direct-connect/package.json +++ b/clients/client-direct-connect/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-direct-connect", "description": "AWS SDK for JavaScript Direct Connect Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-direct-connect", diff --git a/clients/client-directory-service/CHANGELOG.md b/clients/client-directory-service/CHANGELOG.md index eb32a98c582a6..babdcb0695207 100644 --- a/clients/client-directory-service/CHANGELOG.md +++ b/clients/client-directory-service/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-directory-service + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-directory-service diff --git a/clients/client-directory-service/package.json b/clients/client-directory-service/package.json index e63510182e5de..cdc5472d9bfef 100644 --- a/clients/client-directory-service/package.json +++ b/clients/client-directory-service/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-directory-service", "description": "AWS SDK for JavaScript Directory Service Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-directory-service", diff --git a/clients/client-dlm/CHANGELOG.md b/clients/client-dlm/CHANGELOG.md index 56b811fc90d21..dbb356d672a15 100644 --- a/clients/client-dlm/CHANGELOG.md +++ b/clients/client-dlm/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-dlm + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-dlm diff --git a/clients/client-dlm/package.json b/clients/client-dlm/package.json index 89d7deb086c4d..f92c933c1cd8f 100644 --- a/clients/client-dlm/package.json +++ b/clients/client-dlm/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-dlm", "description": "AWS SDK for JavaScript Dlm Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-dlm", diff --git a/clients/client-docdb-elastic/CHANGELOG.md b/clients/client-docdb-elastic/CHANGELOG.md index d003200c07860..9541589542687 100644 --- a/clients/client-docdb-elastic/CHANGELOG.md +++ b/clients/client-docdb-elastic/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-docdb-elastic + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-docdb-elastic diff --git a/clients/client-docdb-elastic/package.json b/clients/client-docdb-elastic/package.json index a1c5098c0615f..39e6734fecad0 100644 --- a/clients/client-docdb-elastic/package.json +++ b/clients/client-docdb-elastic/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-docdb-elastic", "description": "AWS SDK for JavaScript Docdb Elastic Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-docdb-elastic", diff --git a/clients/client-docdb/CHANGELOG.md b/clients/client-docdb/CHANGELOG.md index cecc9f2763ff1..964c399a9f456 100644 --- a/clients/client-docdb/CHANGELOG.md +++ b/clients/client-docdb/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + + +### Features + +* **client-docdb:** This release adds Global Cluster Failover capability which enables you to change your global cluster's primary AWS region, the region that serves writes, during a regional outage. Performing a failover action preserves your Global Cluster setup. ([62c6973](https://github.com/aws/aws-sdk-js-v3/commit/62c6973ca51b710f11b96e1a9e170ac9e489b58f)) + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-docdb diff --git a/clients/client-docdb/package.json b/clients/client-docdb/package.json index 3583078b685f6..c940eea872a9d 100644 --- a/clients/client-docdb/package.json +++ b/clients/client-docdb/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-docdb", "description": "AWS SDK for JavaScript Docdb Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-docdb", diff --git a/clients/client-drs/CHANGELOG.md b/clients/client-drs/CHANGELOG.md index fdf42819eddb1..73730dafdeb3d 100644 --- a/clients/client-drs/CHANGELOG.md +++ b/clients/client-drs/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-drs + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-drs diff --git a/clients/client-drs/package.json b/clients/client-drs/package.json index d58c86eeb5bde..4b8c9911aaa94 100644 --- a/clients/client-drs/package.json +++ b/clients/client-drs/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-drs", "description": "AWS SDK for JavaScript Drs Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-drs", diff --git a/clients/client-dynamodb-streams/CHANGELOG.md b/clients/client-dynamodb-streams/CHANGELOG.md index 1a4042d13e821..2028f90dcce30 100644 --- a/clients/client-dynamodb-streams/CHANGELOG.md +++ b/clients/client-dynamodb-streams/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-dynamodb-streams + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-dynamodb-streams diff --git a/clients/client-dynamodb-streams/package.json b/clients/client-dynamodb-streams/package.json index 33b7e69e3e50f..0b7a4e48dce57 100644 --- a/clients/client-dynamodb-streams/package.json +++ b/clients/client-dynamodb-streams/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-dynamodb-streams", "description": "AWS SDK for JavaScript Dynamodb Streams Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-dynamodb-streams", diff --git a/clients/client-dynamodb/CHANGELOG.md b/clients/client-dynamodb/CHANGELOG.md index 1eba6f718f0b7..d1a89973fbf5b 100644 --- a/clients/client-dynamodb/CHANGELOG.md +++ b/clients/client-dynamodb/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-dynamodb + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-dynamodb diff --git a/clients/client-dynamodb/package.json b/clients/client-dynamodb/package.json index e9a21090739eb..b2affae61433f 100644 --- a/clients/client-dynamodb/package.json +++ b/clients/client-dynamodb/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-dynamodb", "description": "AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-dynamodb", diff --git a/clients/client-ebs/CHANGELOG.md b/clients/client-ebs/CHANGELOG.md index b1773fe9870bc..7742e604149a9 100644 --- a/clients/client-ebs/CHANGELOG.md +++ b/clients/client-ebs/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-ebs + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-ebs diff --git a/clients/client-ebs/package.json b/clients/client-ebs/package.json index 06000cc525630..c0389763b41d6 100644 --- a/clients/client-ebs/package.json +++ b/clients/client-ebs/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-ebs", "description": "AWS SDK for JavaScript Ebs Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-ebs", diff --git a/clients/client-ec2-instance-connect/CHANGELOG.md b/clients/client-ec2-instance-connect/CHANGELOG.md index 87853bf9eceb2..7bde54ce2f4a7 100644 --- a/clients/client-ec2-instance-connect/CHANGELOG.md +++ b/clients/client-ec2-instance-connect/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-ec2-instance-connect + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-ec2-instance-connect diff --git a/clients/client-ec2-instance-connect/package.json b/clients/client-ec2-instance-connect/package.json index 21aa3cfe5b9eb..1a97b38e3ba54 100644 --- a/clients/client-ec2-instance-connect/package.json +++ b/clients/client-ec2-instance-connect/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-ec2-instance-connect", "description": "AWS SDK for JavaScript Ec2 Instance Connect Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-ec2-instance-connect", diff --git a/clients/client-ec2/CHANGELOG.md b/clients/client-ec2/CHANGELOG.md index e50a882a9e545..a88a6bcc7009c 100644 --- a/clients/client-ec2/CHANGELOG.md +++ b/clients/client-ec2/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-ec2 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-ec2 diff --git a/clients/client-ec2/package.json b/clients/client-ec2/package.json index af7591836069e..1867b17cd6c51 100644 --- a/clients/client-ec2/package.json +++ b/clients/client-ec2/package.json @@ -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.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-ec2", diff --git a/clients/client-ecr-public/CHANGELOG.md b/clients/client-ecr-public/CHANGELOG.md index cdbddf3fdb6d0..e8951972a269b 100644 --- a/clients/client-ecr-public/CHANGELOG.md +++ b/clients/client-ecr-public/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-ecr-public + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-ecr-public diff --git a/clients/client-ecr-public/package.json b/clients/client-ecr-public/package.json index fbf585e0f64e5..e8df731720a59 100644 --- a/clients/client-ecr-public/package.json +++ b/clients/client-ecr-public/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-ecr-public", "description": "AWS SDK for JavaScript Ecr Public Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-ecr-public", diff --git a/clients/client-ecr/CHANGELOG.md b/clients/client-ecr/CHANGELOG.md index ba4d45a9544fd..d2bfaa4d80bd6 100644 --- a/clients/client-ecr/CHANGELOG.md +++ b/clients/client-ecr/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-ecr + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-ecr diff --git a/clients/client-ecr/package.json b/clients/client-ecr/package.json index b079f950b98a8..46a1c3649efed 100644 --- a/clients/client-ecr/package.json +++ b/clients/client-ecr/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-ecr", "description": "AWS SDK for JavaScript Ecr Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-ecr", diff --git a/clients/client-ecs/CHANGELOG.md b/clients/client-ecs/CHANGELOG.md index 9c3ffc5155444..b70c360bb72a2 100644 --- a/clients/client-ecs/CHANGELOG.md +++ b/clients/client-ecs/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + + +### Features + +* **client-ecs:** This release introduces a new ContainerDefinition configuration to support the customer-managed keys for ECS container restart feature. ([e56be69](https://github.com/aws/aws-sdk-js-v3/commit/e56be6989649b228db0faf2798e772baefca0ff3)) + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-ecs diff --git a/clients/client-ecs/package.json b/clients/client-ecs/package.json index 1afaa87ea8062..2e582daa14a62 100644 --- a/clients/client-ecs/package.json +++ b/clients/client-ecs/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-ecs", "description": "AWS SDK for JavaScript Ecs Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-ecs", diff --git a/clients/client-efs/CHANGELOG.md b/clients/client-efs/CHANGELOG.md index 1524adba64bea..015097fce55ec 100644 --- a/clients/client-efs/CHANGELOG.md +++ b/clients/client-efs/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-efs + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-efs diff --git a/clients/client-efs/package.json b/clients/client-efs/package.json index 488f801237084..67fbb0a1b2aea 100644 --- a/clients/client-efs/package.json +++ b/clients/client-efs/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-efs", "description": "AWS SDK for JavaScript Efs Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-efs", diff --git a/clients/client-eks-auth/CHANGELOG.md b/clients/client-eks-auth/CHANGELOG.md index 7b5639ad9ea53..aed8c34c8a993 100644 --- a/clients/client-eks-auth/CHANGELOG.md +++ b/clients/client-eks-auth/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-eks-auth + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-eks-auth diff --git a/clients/client-eks-auth/package.json b/clients/client-eks-auth/package.json index 1404b09193cc3..2d806d6b8e0bb 100644 --- a/clients/client-eks-auth/package.json +++ b/clients/client-eks-auth/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-eks-auth", "description": "AWS SDK for JavaScript Eks Auth Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-eks-auth", diff --git a/clients/client-eks/CHANGELOG.md b/clients/client-eks/CHANGELOG.md index 03ec7163dd21f..63e69a88bccb6 100644 --- a/clients/client-eks/CHANGELOG.md +++ b/clients/client-eks/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-eks + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-eks diff --git a/clients/client-eks/package.json b/clients/client-eks/package.json index 16001a56e0515..558586bb12c8d 100644 --- a/clients/client-eks/package.json +++ b/clients/client-eks/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-eks", "description": "AWS SDK for JavaScript Eks Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-eks", diff --git a/clients/client-elastic-beanstalk/CHANGELOG.md b/clients/client-elastic-beanstalk/CHANGELOG.md index 79d5be27f680f..d18b643af97f1 100644 --- a/clients/client-elastic-beanstalk/CHANGELOG.md +++ b/clients/client-elastic-beanstalk/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-elastic-beanstalk + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-elastic-beanstalk diff --git a/clients/client-elastic-beanstalk/package.json b/clients/client-elastic-beanstalk/package.json index 4660863d5ee8d..9b2855c1b466e 100644 --- a/clients/client-elastic-beanstalk/package.json +++ b/clients/client-elastic-beanstalk/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-elastic-beanstalk", "description": "AWS SDK for JavaScript Elastic Beanstalk Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-elastic-beanstalk", diff --git a/clients/client-elastic-inference/CHANGELOG.md b/clients/client-elastic-inference/CHANGELOG.md index 0d65c8f9f4867..ca91dab8eb63e 100644 --- a/clients/client-elastic-inference/CHANGELOG.md +++ b/clients/client-elastic-inference/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-elastic-inference + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-elastic-inference diff --git a/clients/client-elastic-inference/package.json b/clients/client-elastic-inference/package.json index bffc53c5adf84..36d9d6c0ea516 100644 --- a/clients/client-elastic-inference/package.json +++ b/clients/client-elastic-inference/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-elastic-inference", "description": "AWS SDK for JavaScript Elastic Inference Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-elastic-inference", diff --git a/clients/client-elastic-load-balancing-v2/CHANGELOG.md b/clients/client-elastic-load-balancing-v2/CHANGELOG.md index ac223b0ce723f..2de36cadf771c 100644 --- a/clients/client-elastic-load-balancing-v2/CHANGELOG.md +++ b/clients/client-elastic-load-balancing-v2/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-elastic-load-balancing-v2 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-elastic-load-balancing-v2 diff --git a/clients/client-elastic-load-balancing-v2/package.json b/clients/client-elastic-load-balancing-v2/package.json index 938b2a94be1d5..5273aebd01114 100644 --- a/clients/client-elastic-load-balancing-v2/package.json +++ b/clients/client-elastic-load-balancing-v2/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-elastic-load-balancing-v2", "description": "AWS SDK for JavaScript Elastic Load Balancing V2 Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-elastic-load-balancing-v2", diff --git a/clients/client-elastic-load-balancing/CHANGELOG.md b/clients/client-elastic-load-balancing/CHANGELOG.md index a13337afd71f5..6e4c695fe5432 100644 --- a/clients/client-elastic-load-balancing/CHANGELOG.md +++ b/clients/client-elastic-load-balancing/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-elastic-load-balancing + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-elastic-load-balancing diff --git a/clients/client-elastic-load-balancing/package.json b/clients/client-elastic-load-balancing/package.json index fe9a3097980d9..91bb51a1bd0bc 100644 --- a/clients/client-elastic-load-balancing/package.json +++ b/clients/client-elastic-load-balancing/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-elastic-load-balancing", "description": "AWS SDK for JavaScript Elastic Load Balancing Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-elastic-load-balancing", diff --git a/clients/client-elastic-transcoder/CHANGELOG.md b/clients/client-elastic-transcoder/CHANGELOG.md index d38362dced454..976a9fe75575d 100644 --- a/clients/client-elastic-transcoder/CHANGELOG.md +++ b/clients/client-elastic-transcoder/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-elastic-transcoder + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-elastic-transcoder diff --git a/clients/client-elastic-transcoder/package.json b/clients/client-elastic-transcoder/package.json index e1a0602b4b9ff..612ce8869fa28 100644 --- a/clients/client-elastic-transcoder/package.json +++ b/clients/client-elastic-transcoder/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-elastic-transcoder", "description": "AWS SDK for JavaScript Elastic Transcoder Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-elastic-transcoder", diff --git a/clients/client-elasticache/CHANGELOG.md b/clients/client-elasticache/CHANGELOG.md index cf682088a8480..c24bb132a4331 100644 --- a/clients/client-elasticache/CHANGELOG.md +++ b/clients/client-elasticache/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-elasticache + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-elasticache diff --git a/clients/client-elasticache/package.json b/clients/client-elasticache/package.json index 9e534bad7b700..e4a86aacfba73 100644 --- a/clients/client-elasticache/package.json +++ b/clients/client-elasticache/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-elasticache", "description": "AWS SDK for JavaScript Elasticache Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-elasticache", diff --git a/clients/client-elasticsearch-service/CHANGELOG.md b/clients/client-elasticsearch-service/CHANGELOG.md index 6e11bc2c60a2b..8a0ffa9595b84 100644 --- a/clients/client-elasticsearch-service/CHANGELOG.md +++ b/clients/client-elasticsearch-service/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-elasticsearch-service + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-elasticsearch-service diff --git a/clients/client-elasticsearch-service/package.json b/clients/client-elasticsearch-service/package.json index 55cedc04efd49..e9ec5f53b3837 100644 --- a/clients/client-elasticsearch-service/package.json +++ b/clients/client-elasticsearch-service/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-elasticsearch-service", "description": "AWS SDK for JavaScript Elasticsearch Service Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-elasticsearch-service", diff --git a/clients/client-emr-containers/CHANGELOG.md b/clients/client-emr-containers/CHANGELOG.md index e6b38bf6c9339..7c3e331deaa59 100644 --- a/clients/client-emr-containers/CHANGELOG.md +++ b/clients/client-emr-containers/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-emr-containers + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-emr-containers diff --git a/clients/client-emr-containers/package.json b/clients/client-emr-containers/package.json index d5f5f0413391e..8f55eb4abec21 100644 --- a/clients/client-emr-containers/package.json +++ b/clients/client-emr-containers/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-emr-containers", "description": "AWS SDK for JavaScript Emr Containers Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-emr-containers", diff --git a/clients/client-emr-serverless/CHANGELOG.md b/clients/client-emr-serverless/CHANGELOG.md index 9ef2378997ff0..54e066db37df7 100644 --- a/clients/client-emr-serverless/CHANGELOG.md +++ b/clients/client-emr-serverless/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-emr-serverless + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-emr-serverless diff --git a/clients/client-emr-serverless/package.json b/clients/client-emr-serverless/package.json index d12b9a333640b..20eb5f7b9b3ea 100644 --- a/clients/client-emr-serverless/package.json +++ b/clients/client-emr-serverless/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-emr-serverless", "description": "AWS SDK for JavaScript Emr Serverless Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-emr-serverless", diff --git a/clients/client-emr/CHANGELOG.md b/clients/client-emr/CHANGELOG.md index 2aba1e0880864..185aefb83a942 100644 --- a/clients/client-emr/CHANGELOG.md +++ b/clients/client-emr/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-emr + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-emr diff --git a/clients/client-emr/package.json b/clients/client-emr/package.json index f2243b3805703..f8609063054f0 100644 --- a/clients/client-emr/package.json +++ b/clients/client-emr/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-emr", "description": "AWS SDK for JavaScript Emr Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-emr", diff --git a/clients/client-entityresolution/CHANGELOG.md b/clients/client-entityresolution/CHANGELOG.md index ec05c89cb7891..4090641fb6908 100644 --- a/clients/client-entityresolution/CHANGELOG.md +++ b/clients/client-entityresolution/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-entityresolution + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-entityresolution diff --git a/clients/client-entityresolution/package.json b/clients/client-entityresolution/package.json index 139c3dec7aeb5..64e9ef9673676 100644 --- a/clients/client-entityresolution/package.json +++ b/clients/client-entityresolution/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-entityresolution", "description": "AWS SDK for JavaScript Entityresolution Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-entityresolution", diff --git a/clients/client-eventbridge/CHANGELOG.md b/clients/client-eventbridge/CHANGELOG.md index 24e680ece8fbe..30882a11c2b52 100644 --- a/clients/client-eventbridge/CHANGELOG.md +++ b/clients/client-eventbridge/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-eventbridge + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-eventbridge diff --git a/clients/client-eventbridge/package.json b/clients/client-eventbridge/package.json index 6b99a54902a70..28dd2a939e22e 100644 --- a/clients/client-eventbridge/package.json +++ b/clients/client-eventbridge/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-eventbridge", "description": "AWS SDK for JavaScript Eventbridge Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-eventbridge", diff --git a/clients/client-evidently/CHANGELOG.md b/clients/client-evidently/CHANGELOG.md index 89d3101d2e01b..d65e9493b05f1 100644 --- a/clients/client-evidently/CHANGELOG.md +++ b/clients/client-evidently/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-evidently + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-evidently diff --git a/clients/client-evidently/package.json b/clients/client-evidently/package.json index 7eb10f021954a..ed566a59745e5 100644 --- a/clients/client-evidently/package.json +++ b/clients/client-evidently/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-evidently", "description": "AWS SDK for JavaScript Evidently Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-evidently", diff --git a/clients/client-finspace-data/CHANGELOG.md b/clients/client-finspace-data/CHANGELOG.md index c5f93b3476eec..5b22bd26b047a 100644 --- a/clients/client-finspace-data/CHANGELOG.md +++ b/clients/client-finspace-data/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-finspace-data + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-finspace-data diff --git a/clients/client-finspace-data/package.json b/clients/client-finspace-data/package.json index 16b0e0a98191d..29b60fa641784 100644 --- a/clients/client-finspace-data/package.json +++ b/clients/client-finspace-data/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-finspace-data", "description": "AWS SDK for JavaScript Finspace Data Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-finspace-data", diff --git a/clients/client-finspace/CHANGELOG.md b/clients/client-finspace/CHANGELOG.md index 7c8136d7a4fb0..891485678de4b 100644 --- a/clients/client-finspace/CHANGELOG.md +++ b/clients/client-finspace/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-finspace + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-finspace diff --git a/clients/client-finspace/package.json b/clients/client-finspace/package.json index b46cd2264c856..273609d929285 100644 --- a/clients/client-finspace/package.json +++ b/clients/client-finspace/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-finspace", "description": "AWS SDK for JavaScript Finspace Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-finspace", diff --git a/clients/client-firehose/CHANGELOG.md b/clients/client-firehose/CHANGELOG.md index 72d8abca7ae43..38f3f1386a86d 100644 --- a/clients/client-firehose/CHANGELOG.md +++ b/clients/client-firehose/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-firehose + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-firehose diff --git a/clients/client-firehose/package.json b/clients/client-firehose/package.json index 395918dff265c..d434987233c3b 100644 --- a/clients/client-firehose/package.json +++ b/clients/client-firehose/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-firehose", "description": "AWS SDK for JavaScript Firehose Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-firehose", diff --git a/clients/client-fis/CHANGELOG.md b/clients/client-fis/CHANGELOG.md index 650026264149a..0355d2324c149 100644 --- a/clients/client-fis/CHANGELOG.md +++ b/clients/client-fis/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-fis + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-fis diff --git a/clients/client-fis/package.json b/clients/client-fis/package.json index 1e94cc49b9018..3727877ae9d17 100644 --- a/clients/client-fis/package.json +++ b/clients/client-fis/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-fis", "description": "AWS SDK for JavaScript Fis Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-fis", diff --git a/clients/client-fms/CHANGELOG.md b/clients/client-fms/CHANGELOG.md index 5b5905689b1cd..1dde454dbb949 100644 --- a/clients/client-fms/CHANGELOG.md +++ b/clients/client-fms/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-fms + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-fms diff --git a/clients/client-fms/package.json b/clients/client-fms/package.json index d122cc12af846..b8405b942059c 100644 --- a/clients/client-fms/package.json +++ b/clients/client-fms/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-fms", "description": "AWS SDK for JavaScript Fms Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-fms", diff --git a/clients/client-forecast/CHANGELOG.md b/clients/client-forecast/CHANGELOG.md index a069485d104b7..e09b9603dcc7d 100644 --- a/clients/client-forecast/CHANGELOG.md +++ b/clients/client-forecast/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-forecast + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-forecast diff --git a/clients/client-forecast/package.json b/clients/client-forecast/package.json index 07b8f7dbdac77..cbad960e3c836 100644 --- a/clients/client-forecast/package.json +++ b/clients/client-forecast/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-forecast", "description": "AWS SDK for JavaScript Forecast Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-forecast", diff --git a/clients/client-forecastquery/CHANGELOG.md b/clients/client-forecastquery/CHANGELOG.md index 8727293c5a3d3..5188b92914946 100644 --- a/clients/client-forecastquery/CHANGELOG.md +++ b/clients/client-forecastquery/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-forecastquery + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-forecastquery diff --git a/clients/client-forecastquery/package.json b/clients/client-forecastquery/package.json index b7434489a7d3f..905ba0e6bdd01 100644 --- a/clients/client-forecastquery/package.json +++ b/clients/client-forecastquery/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-forecastquery", "description": "AWS SDK for JavaScript Forecastquery Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-forecastquery", diff --git a/clients/client-frauddetector/CHANGELOG.md b/clients/client-frauddetector/CHANGELOG.md index ff36a32b5d50a..96a624c136f9f 100644 --- a/clients/client-frauddetector/CHANGELOG.md +++ b/clients/client-frauddetector/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-frauddetector + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-frauddetector diff --git a/clients/client-frauddetector/package.json b/clients/client-frauddetector/package.json index 665b777ec4441..1824297186fa5 100644 --- a/clients/client-frauddetector/package.json +++ b/clients/client-frauddetector/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-frauddetector", "description": "AWS SDK for JavaScript Frauddetector Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-frauddetector", diff --git a/clients/client-freetier/CHANGELOG.md b/clients/client-freetier/CHANGELOG.md index f775b6ba6137e..fc9beeaf2b941 100644 --- a/clients/client-freetier/CHANGELOG.md +++ b/clients/client-freetier/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-freetier + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-freetier diff --git a/clients/client-freetier/package.json b/clients/client-freetier/package.json index 61044820149e4..7473003d1aef0 100644 --- a/clients/client-freetier/package.json +++ b/clients/client-freetier/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-freetier", "description": "AWS SDK for JavaScript Freetier Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-freetier", diff --git a/clients/client-fsx/CHANGELOG.md b/clients/client-fsx/CHANGELOG.md index 7cd4d7922f72c..4a89a02f7a75f 100644 --- a/clients/client-fsx/CHANGELOG.md +++ b/clients/client-fsx/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-fsx + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-fsx diff --git a/clients/client-fsx/package.json b/clients/client-fsx/package.json index 61be816f0060b..f4d52b4b86754 100644 --- a/clients/client-fsx/package.json +++ b/clients/client-fsx/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-fsx", "description": "AWS SDK for JavaScript Fsx Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-fsx", diff --git a/clients/client-gamelift/CHANGELOG.md b/clients/client-gamelift/CHANGELOG.md index d30054d8f4a0e..c9a9b8f79320c 100644 --- a/clients/client-gamelift/CHANGELOG.md +++ b/clients/client-gamelift/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-gamelift + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-gamelift diff --git a/clients/client-gamelift/package.json b/clients/client-gamelift/package.json index f022ecb545f4d..628faef3138eb 100644 --- a/clients/client-gamelift/package.json +++ b/clients/client-gamelift/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-gamelift", "description": "AWS SDK for JavaScript Gamelift Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-gamelift", diff --git a/clients/client-glacier/CHANGELOG.md b/clients/client-glacier/CHANGELOG.md index 5f65574c640b6..cda1eb872e7bd 100644 --- a/clients/client-glacier/CHANGELOG.md +++ b/clients/client-glacier/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-glacier + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-glacier diff --git a/clients/client-glacier/package.json b/clients/client-glacier/package.json index bc6c1f9cceaba..fcf0b6c94de7d 100644 --- a/clients/client-glacier/package.json +++ b/clients/client-glacier/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-glacier", "description": "AWS SDK for JavaScript Glacier Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-glacier", diff --git a/clients/client-global-accelerator/CHANGELOG.md b/clients/client-global-accelerator/CHANGELOG.md index 396463050981b..111aac0aeeced 100644 --- a/clients/client-global-accelerator/CHANGELOG.md +++ b/clients/client-global-accelerator/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-global-accelerator + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-global-accelerator diff --git a/clients/client-global-accelerator/package.json b/clients/client-global-accelerator/package.json index 53a48914f2937..77d76cf184593 100644 --- a/clients/client-global-accelerator/package.json +++ b/clients/client-global-accelerator/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-global-accelerator", "description": "AWS SDK for JavaScript Global Accelerator Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-global-accelerator", diff --git a/clients/client-glue/CHANGELOG.md b/clients/client-glue/CHANGELOG.md index 1a4d5f11d653b..f3888c0532cbc 100644 --- a/clients/client-glue/CHANGELOG.md +++ b/clients/client-glue/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-glue + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-glue diff --git a/clients/client-glue/package.json b/clients/client-glue/package.json index f04e772919412..0f00fbe2a9be9 100644 --- a/clients/client-glue/package.json +++ b/clients/client-glue/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-glue", "description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-glue", diff --git a/clients/client-grafana/CHANGELOG.md b/clients/client-grafana/CHANGELOG.md index 9e0b8136f728c..90022c26b658b 100644 --- a/clients/client-grafana/CHANGELOG.md +++ b/clients/client-grafana/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-grafana + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-grafana diff --git a/clients/client-grafana/package.json b/clients/client-grafana/package.json index 8676d45438130..e9462f5bb3676 100644 --- a/clients/client-grafana/package.json +++ b/clients/client-grafana/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-grafana", "description": "AWS SDK for JavaScript Grafana Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-grafana", diff --git a/clients/client-greengrass/CHANGELOG.md b/clients/client-greengrass/CHANGELOG.md index b7d6cf9f5660f..d5fe654308db8 100644 --- a/clients/client-greengrass/CHANGELOG.md +++ b/clients/client-greengrass/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-greengrass + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-greengrass diff --git a/clients/client-greengrass/package.json b/clients/client-greengrass/package.json index 1082260126aae..8644bad3a488d 100644 --- a/clients/client-greengrass/package.json +++ b/clients/client-greengrass/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-greengrass", "description": "AWS SDK for JavaScript Greengrass Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-greengrass", diff --git a/clients/client-greengrassv2/CHANGELOG.md b/clients/client-greengrassv2/CHANGELOG.md index aa8a4db33966d..bf40917ccf7d1 100644 --- a/clients/client-greengrassv2/CHANGELOG.md +++ b/clients/client-greengrassv2/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-greengrassv2 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-greengrassv2 diff --git a/clients/client-greengrassv2/package.json b/clients/client-greengrassv2/package.json index 08a2b87de6e9a..49fb5dec3826b 100644 --- a/clients/client-greengrassv2/package.json +++ b/clients/client-greengrassv2/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-greengrassv2", "description": "AWS SDK for JavaScript Greengrassv2 Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-greengrassv2", diff --git a/clients/client-groundstation/CHANGELOG.md b/clients/client-groundstation/CHANGELOG.md index bdcb79a39ebba..e53ba1df2979d 100644 --- a/clients/client-groundstation/CHANGELOG.md +++ b/clients/client-groundstation/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-groundstation + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-groundstation diff --git a/clients/client-groundstation/package.json b/clients/client-groundstation/package.json index 253bcc2e89da6..55714f07193fe 100644 --- a/clients/client-groundstation/package.json +++ b/clients/client-groundstation/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-groundstation", "description": "AWS SDK for JavaScript Groundstation Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-groundstation", diff --git a/clients/client-guardduty/CHANGELOG.md b/clients/client-guardduty/CHANGELOG.md index 41bfe7410e14b..38024e77347b1 100644 --- a/clients/client-guardduty/CHANGELOG.md +++ b/clients/client-guardduty/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-guardduty + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-guardduty diff --git a/clients/client-guardduty/package.json b/clients/client-guardduty/package.json index e4d4f4a52ae11..10c90b9e35e03 100644 --- a/clients/client-guardduty/package.json +++ b/clients/client-guardduty/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-guardduty", "description": "AWS SDK for JavaScript Guardduty Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-guardduty", diff --git a/clients/client-health/CHANGELOG.md b/clients/client-health/CHANGELOG.md index 5f5c165c9b1d5..22ac124d7d458 100644 --- a/clients/client-health/CHANGELOG.md +++ b/clients/client-health/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-health + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-health diff --git a/clients/client-health/package.json b/clients/client-health/package.json index d310c9c6cb32f..368b97d1eff18 100644 --- a/clients/client-health/package.json +++ b/clients/client-health/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-health", "description": "AWS SDK for JavaScript Health Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-health", diff --git a/clients/client-healthlake/CHANGELOG.md b/clients/client-healthlake/CHANGELOG.md index a7777f35cb915..c73d81c430521 100644 --- a/clients/client-healthlake/CHANGELOG.md +++ b/clients/client-healthlake/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-healthlake + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-healthlake diff --git a/clients/client-healthlake/package.json b/clients/client-healthlake/package.json index 38f82f447a72f..ac60346803f99 100644 --- a/clients/client-healthlake/package.json +++ b/clients/client-healthlake/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-healthlake", "description": "AWS SDK for JavaScript Healthlake Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-healthlake", diff --git a/clients/client-iam/CHANGELOG.md b/clients/client-iam/CHANGELOG.md index 9e471e5c1cc7f..13d6ec08a34a3 100644 --- a/clients/client-iam/CHANGELOG.md +++ b/clients/client-iam/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + + +### Features + +* **client-iam:** Make the LastUsedDate field in the GetAccessKeyLastUsed response optional. This may break customers who only call the API for access keys with a valid LastUsedDate. This fixes a deserialization issue for access keys without a LastUsedDate, because the field was marked as required but could be null. ([2e20e95](https://github.com/aws/aws-sdk-js-v3/commit/2e20e9570ac51a8eb820f0124bada8e2b5d6bca7)) + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-iam diff --git a/clients/client-iam/package.json b/clients/client-iam/package.json index 26fc593b65eaf..05c8f8751a1e9 100644 --- a/clients/client-iam/package.json +++ b/clients/client-iam/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-iam", "description": "AWS SDK for JavaScript Iam Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-iam", diff --git a/clients/client-identitystore/CHANGELOG.md b/clients/client-identitystore/CHANGELOG.md index 4945cf8dbaa1e..45b540c377130 100644 --- a/clients/client-identitystore/CHANGELOG.md +++ b/clients/client-identitystore/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-identitystore + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-identitystore diff --git a/clients/client-identitystore/package.json b/clients/client-identitystore/package.json index c98c0fd43be54..7f6563f53cc10 100644 --- a/clients/client-identitystore/package.json +++ b/clients/client-identitystore/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-identitystore", "description": "AWS SDK for JavaScript Identitystore Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-identitystore", diff --git a/clients/client-imagebuilder/CHANGELOG.md b/clients/client-imagebuilder/CHANGELOG.md index fd10c8663b0cf..426941a02a2e1 100644 --- a/clients/client-imagebuilder/CHANGELOG.md +++ b/clients/client-imagebuilder/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-imagebuilder + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-imagebuilder diff --git a/clients/client-imagebuilder/package.json b/clients/client-imagebuilder/package.json index 04be209c72d35..0924e9c31c229 100644 --- a/clients/client-imagebuilder/package.json +++ b/clients/client-imagebuilder/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-imagebuilder", "description": "AWS SDK for JavaScript Imagebuilder Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-imagebuilder", diff --git a/clients/client-inspector-scan/CHANGELOG.md b/clients/client-inspector-scan/CHANGELOG.md index 0a8a1b0c01177..843b5c7073069 100644 --- a/clients/client-inspector-scan/CHANGELOG.md +++ b/clients/client-inspector-scan/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-inspector-scan + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-inspector-scan diff --git a/clients/client-inspector-scan/package.json b/clients/client-inspector-scan/package.json index 5bc0925843e23..c6f602a56f5b8 100644 --- a/clients/client-inspector-scan/package.json +++ b/clients/client-inspector-scan/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-inspector-scan", "description": "AWS SDK for JavaScript Inspector Scan Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-inspector-scan", diff --git a/clients/client-inspector/CHANGELOG.md b/clients/client-inspector/CHANGELOG.md index b6c7b6b89c657..ecb3abf1a7cf0 100644 --- a/clients/client-inspector/CHANGELOG.md +++ b/clients/client-inspector/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-inspector + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-inspector diff --git a/clients/client-inspector/package.json b/clients/client-inspector/package.json index d3db108ef1e3d..2d3fd2e5efe27 100644 --- a/clients/client-inspector/package.json +++ b/clients/client-inspector/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-inspector", "description": "AWS SDK for JavaScript Inspector Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-inspector", diff --git a/clients/client-inspector2/CHANGELOG.md b/clients/client-inspector2/CHANGELOG.md index 640a2d5078455..d7015e069de0d 100644 --- a/clients/client-inspector2/CHANGELOG.md +++ b/clients/client-inspector2/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-inspector2 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-inspector2 diff --git a/clients/client-inspector2/package.json b/clients/client-inspector2/package.json index 9ec82d7145b47..5afaa68a5f087 100644 --- a/clients/client-inspector2/package.json +++ b/clients/client-inspector2/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-inspector2", "description": "AWS SDK for JavaScript Inspector2 Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-inspector2", diff --git a/clients/client-internetmonitor/CHANGELOG.md b/clients/client-internetmonitor/CHANGELOG.md index 23d942eea8386..70ceb88a53f71 100644 --- a/clients/client-internetmonitor/CHANGELOG.md +++ b/clients/client-internetmonitor/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-internetmonitor + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-internetmonitor diff --git a/clients/client-internetmonitor/package.json b/clients/client-internetmonitor/package.json index 47b23afa449dc..9360097fe2abf 100644 --- a/clients/client-internetmonitor/package.json +++ b/clients/client-internetmonitor/package.json @@ -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.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-internetmonitor", diff --git a/clients/client-iot-1click-devices-service/CHANGELOG.md b/clients/client-iot-1click-devices-service/CHANGELOG.md index e29db8216d034..5776d318fb7be 100644 --- a/clients/client-iot-1click-devices-service/CHANGELOG.md +++ b/clients/client-iot-1click-devices-service/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-iot-1click-devices-service + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-iot-1click-devices-service diff --git a/clients/client-iot-1click-devices-service/package.json b/clients/client-iot-1click-devices-service/package.json index 164c7fc03c951..e9c80020e884f 100644 --- a/clients/client-iot-1click-devices-service/package.json +++ b/clients/client-iot-1click-devices-service/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-iot-1click-devices-service", "description": "AWS SDK for JavaScript Iot 1click Devices Service Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-iot-1click-devices-service", diff --git a/clients/client-iot-1click-projects/CHANGELOG.md b/clients/client-iot-1click-projects/CHANGELOG.md index c879e8dd4cf49..1a9b67de20af8 100644 --- a/clients/client-iot-1click-projects/CHANGELOG.md +++ b/clients/client-iot-1click-projects/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-iot-1click-projects + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-iot-1click-projects diff --git a/clients/client-iot-1click-projects/package.json b/clients/client-iot-1click-projects/package.json index b2aa3362ca983..45d7ab99fda17 100644 --- a/clients/client-iot-1click-projects/package.json +++ b/clients/client-iot-1click-projects/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-iot-1click-projects", "description": "AWS SDK for JavaScript Iot 1click Projects Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-iot-1click-projects", diff --git a/clients/client-iot-data-plane/CHANGELOG.md b/clients/client-iot-data-plane/CHANGELOG.md index 15de88541a2aa..b999318ac8ace 100644 --- a/clients/client-iot-data-plane/CHANGELOG.md +++ b/clients/client-iot-data-plane/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-iot-data-plane + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-iot-data-plane diff --git a/clients/client-iot-data-plane/package.json b/clients/client-iot-data-plane/package.json index 2c8dc30137399..e94b53c89e910 100644 --- a/clients/client-iot-data-plane/package.json +++ b/clients/client-iot-data-plane/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-iot-data-plane", "description": "AWS SDK for JavaScript Iot Data Plane Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-iot-data-plane", diff --git a/clients/client-iot-events-data/CHANGELOG.md b/clients/client-iot-events-data/CHANGELOG.md index 71e57a1c6446a..58c8e37bf3889 100644 --- a/clients/client-iot-events-data/CHANGELOG.md +++ b/clients/client-iot-events-data/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-iot-events-data + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-iot-events-data diff --git a/clients/client-iot-events-data/package.json b/clients/client-iot-events-data/package.json index 6ac629b3fcb30..bcacc91253706 100644 --- a/clients/client-iot-events-data/package.json +++ b/clients/client-iot-events-data/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-iot-events-data", "description": "AWS SDK for JavaScript Iot Events Data Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-iot-events-data", diff --git a/clients/client-iot-events/CHANGELOG.md b/clients/client-iot-events/CHANGELOG.md index cf84dd2ac8f47..85c3c5dd95c2f 100644 --- a/clients/client-iot-events/CHANGELOG.md +++ b/clients/client-iot-events/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-iot-events + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-iot-events diff --git a/clients/client-iot-events/package.json b/clients/client-iot-events/package.json index 388634017f535..b7c16094b70e1 100644 --- a/clients/client-iot-events/package.json +++ b/clients/client-iot-events/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-iot-events", "description": "AWS SDK for JavaScript Iot Events Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-iot-events", diff --git a/clients/client-iot-jobs-data-plane/CHANGELOG.md b/clients/client-iot-jobs-data-plane/CHANGELOG.md index 021f4e7d8b401..188b42b54d51b 100644 --- a/clients/client-iot-jobs-data-plane/CHANGELOG.md +++ b/clients/client-iot-jobs-data-plane/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-iot-jobs-data-plane + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-iot-jobs-data-plane diff --git a/clients/client-iot-jobs-data-plane/package.json b/clients/client-iot-jobs-data-plane/package.json index d8a2b0ad3d18b..4a3ae7c722071 100644 --- a/clients/client-iot-jobs-data-plane/package.json +++ b/clients/client-iot-jobs-data-plane/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-iot-jobs-data-plane", "description": "AWS SDK for JavaScript Iot Jobs Data Plane Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-iot-jobs-data-plane", diff --git a/clients/client-iot-wireless/CHANGELOG.md b/clients/client-iot-wireless/CHANGELOG.md index 9ba18b2f21253..573a75ea6af52 100644 --- a/clients/client-iot-wireless/CHANGELOG.md +++ b/clients/client-iot-wireless/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-iot-wireless + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-iot-wireless diff --git a/clients/client-iot-wireless/package.json b/clients/client-iot-wireless/package.json index 77d68fe7acaf4..c6d53c221dd40 100644 --- a/clients/client-iot-wireless/package.json +++ b/clients/client-iot-wireless/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-iot-wireless", "description": "AWS SDK for JavaScript Iot Wireless Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-iot-wireless", diff --git a/clients/client-iot/CHANGELOG.md b/clients/client-iot/CHANGELOG.md index 50fb30b0e99bd..e6c67ca2422ce 100644 --- a/clients/client-iot/CHANGELOG.md +++ b/clients/client-iot/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-iot + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-iot diff --git a/clients/client-iot/package.json b/clients/client-iot/package.json index 084549651b2b8..9ce0ba85b7e2e 100644 --- a/clients/client-iot/package.json +++ b/clients/client-iot/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-iot", "description": "AWS SDK for JavaScript Iot Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-iot", diff --git a/clients/client-iotanalytics/CHANGELOG.md b/clients/client-iotanalytics/CHANGELOG.md index dd2d31b36d62e..4071ae414aa85 100644 --- a/clients/client-iotanalytics/CHANGELOG.md +++ b/clients/client-iotanalytics/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-iotanalytics + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-iotanalytics diff --git a/clients/client-iotanalytics/package.json b/clients/client-iotanalytics/package.json index 63def05dcc31c..1158adc2aae44 100644 --- a/clients/client-iotanalytics/package.json +++ b/clients/client-iotanalytics/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-iotanalytics", "description": "AWS SDK for JavaScript Iotanalytics Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-iotanalytics", diff --git a/clients/client-iotdeviceadvisor/CHANGELOG.md b/clients/client-iotdeviceadvisor/CHANGELOG.md index 9fd4db3df8e1e..2f65923e2d830 100644 --- a/clients/client-iotdeviceadvisor/CHANGELOG.md +++ b/clients/client-iotdeviceadvisor/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-iotdeviceadvisor + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-iotdeviceadvisor diff --git a/clients/client-iotdeviceadvisor/package.json b/clients/client-iotdeviceadvisor/package.json index cd66207536e35..23baadfede872 100644 --- a/clients/client-iotdeviceadvisor/package.json +++ b/clients/client-iotdeviceadvisor/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-iotdeviceadvisor", "description": "AWS SDK for JavaScript Iotdeviceadvisor Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-iotdeviceadvisor", diff --git a/clients/client-iotfleethub/CHANGELOG.md b/clients/client-iotfleethub/CHANGELOG.md index b48ce687ab820..b2b90a4dbdaa9 100644 --- a/clients/client-iotfleethub/CHANGELOG.md +++ b/clients/client-iotfleethub/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-iotfleethub + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-iotfleethub diff --git a/clients/client-iotfleethub/package.json b/clients/client-iotfleethub/package.json index 8537b7f798f85..a8b73cdfddd07 100644 --- a/clients/client-iotfleethub/package.json +++ b/clients/client-iotfleethub/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-iotfleethub", "description": "AWS SDK for JavaScript Iotfleethub Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-iotfleethub", diff --git a/clients/client-iotfleetwise/CHANGELOG.md b/clients/client-iotfleetwise/CHANGELOG.md index 95fc5fa12c4bb..08bf777ccb735 100644 --- a/clients/client-iotfleetwise/CHANGELOG.md +++ b/clients/client-iotfleetwise/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-iotfleetwise + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-iotfleetwise diff --git a/clients/client-iotfleetwise/package.json b/clients/client-iotfleetwise/package.json index 10ed09dbcbb10..e2cbdd3daf514 100644 --- a/clients/client-iotfleetwise/package.json +++ b/clients/client-iotfleetwise/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-iotfleetwise", "description": "AWS SDK for JavaScript Iotfleetwise Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-iotfleetwise", diff --git a/clients/client-iotsecuretunneling/CHANGELOG.md b/clients/client-iotsecuretunneling/CHANGELOG.md index 65beaa2ab477b..60bb64c0e3adb 100644 --- a/clients/client-iotsecuretunneling/CHANGELOG.md +++ b/clients/client-iotsecuretunneling/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-iotsecuretunneling + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-iotsecuretunneling diff --git a/clients/client-iotsecuretunneling/package.json b/clients/client-iotsecuretunneling/package.json index f5779431f301e..5fbb9732cff1a 100644 --- a/clients/client-iotsecuretunneling/package.json +++ b/clients/client-iotsecuretunneling/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-iotsecuretunneling", "description": "AWS SDK for JavaScript Iotsecuretunneling Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-iotsecuretunneling", diff --git a/clients/client-iotsitewise/CHANGELOG.md b/clients/client-iotsitewise/CHANGELOG.md index e0ced2ca4ab22..c28f1940e116b 100644 --- a/clients/client-iotsitewise/CHANGELOG.md +++ b/clients/client-iotsitewise/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-iotsitewise + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-iotsitewise diff --git a/clients/client-iotsitewise/package.json b/clients/client-iotsitewise/package.json index 0f99270a0c707..fa1b8021045c9 100644 --- a/clients/client-iotsitewise/package.json +++ b/clients/client-iotsitewise/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-iotsitewise", "description": "AWS SDK for JavaScript Iotsitewise Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-iotsitewise", diff --git a/clients/client-iotthingsgraph/CHANGELOG.md b/clients/client-iotthingsgraph/CHANGELOG.md index cb8f002f5bf80..33d0050f25930 100644 --- a/clients/client-iotthingsgraph/CHANGELOG.md +++ b/clients/client-iotthingsgraph/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-iotthingsgraph + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-iotthingsgraph diff --git a/clients/client-iotthingsgraph/package.json b/clients/client-iotthingsgraph/package.json index 68c788660e400..4e4f4757cf295 100644 --- a/clients/client-iotthingsgraph/package.json +++ b/clients/client-iotthingsgraph/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-iotthingsgraph", "description": "AWS SDK for JavaScript Iotthingsgraph Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-iotthingsgraph", diff --git a/clients/client-iottwinmaker/CHANGELOG.md b/clients/client-iottwinmaker/CHANGELOG.md index 33fff1e41235f..adb00c7b7c1f1 100644 --- a/clients/client-iottwinmaker/CHANGELOG.md +++ b/clients/client-iottwinmaker/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-iottwinmaker + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-iottwinmaker diff --git a/clients/client-iottwinmaker/package.json b/clients/client-iottwinmaker/package.json index e892e00482248..5b425a6174b42 100644 --- a/clients/client-iottwinmaker/package.json +++ b/clients/client-iottwinmaker/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-iottwinmaker", "description": "AWS SDK for JavaScript Iottwinmaker Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-iottwinmaker", diff --git a/clients/client-ivs-realtime/CHANGELOG.md b/clients/client-ivs-realtime/CHANGELOG.md index c62419593c591..0f4db1da6a309 100644 --- a/clients/client-ivs-realtime/CHANGELOG.md +++ b/clients/client-ivs-realtime/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-ivs-realtime + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-ivs-realtime diff --git a/clients/client-ivs-realtime/package.json b/clients/client-ivs-realtime/package.json index 28f9625958f55..3e4479a6d5f64 100644 --- a/clients/client-ivs-realtime/package.json +++ b/clients/client-ivs-realtime/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-ivs-realtime", "description": "AWS SDK for JavaScript Ivs Realtime Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-ivs-realtime", diff --git a/clients/client-ivs/CHANGELOG.md b/clients/client-ivs/CHANGELOG.md index e4e8730ad2637..cd65294babc22 100644 --- a/clients/client-ivs/CHANGELOG.md +++ b/clients/client-ivs/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-ivs + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-ivs diff --git a/clients/client-ivs/package.json b/clients/client-ivs/package.json index 76dd4dc1b4a9f..8023d1e880a93 100644 --- a/clients/client-ivs/package.json +++ b/clients/client-ivs/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-ivs", "description": "AWS SDK for JavaScript Ivs Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-ivs", diff --git a/clients/client-ivschat/CHANGELOG.md b/clients/client-ivschat/CHANGELOG.md index 8dc2fd9f1b4d5..478eced607bea 100644 --- a/clients/client-ivschat/CHANGELOG.md +++ b/clients/client-ivschat/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-ivschat + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-ivschat diff --git a/clients/client-ivschat/package.json b/clients/client-ivschat/package.json index f2bf642bfb518..da5c9816d853d 100644 --- a/clients/client-ivschat/package.json +++ b/clients/client-ivschat/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-ivschat", "description": "AWS SDK for JavaScript Ivschat Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-ivschat", diff --git a/clients/client-kafka/CHANGELOG.md b/clients/client-kafka/CHANGELOG.md index 1c7f97b4bf6ed..b32f44bc9a9df 100644 --- a/clients/client-kafka/CHANGELOG.md +++ b/clients/client-kafka/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-kafka + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-kafka diff --git a/clients/client-kafka/package.json b/clients/client-kafka/package.json index 6b3bdf57c72d2..f9c36660935a0 100644 --- a/clients/client-kafka/package.json +++ b/clients/client-kafka/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-kafka", "description": "AWS SDK for JavaScript Kafka Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-kafka", diff --git a/clients/client-kafkaconnect/CHANGELOG.md b/clients/client-kafkaconnect/CHANGELOG.md index 19daba762f723..286dd091da7a2 100644 --- a/clients/client-kafkaconnect/CHANGELOG.md +++ b/clients/client-kafkaconnect/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-kafkaconnect + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-kafkaconnect diff --git a/clients/client-kafkaconnect/package.json b/clients/client-kafkaconnect/package.json index ba292aebf6b7b..6d5e182311c89 100644 --- a/clients/client-kafkaconnect/package.json +++ b/clients/client-kafkaconnect/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-kafkaconnect", "description": "AWS SDK for JavaScript Kafkaconnect Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-kafkaconnect", diff --git a/clients/client-kendra-ranking/CHANGELOG.md b/clients/client-kendra-ranking/CHANGELOG.md index 4489cb43880b2..136c3a51e8afd 100644 --- a/clients/client-kendra-ranking/CHANGELOG.md +++ b/clients/client-kendra-ranking/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-kendra-ranking + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-kendra-ranking diff --git a/clients/client-kendra-ranking/package.json b/clients/client-kendra-ranking/package.json index a2e2bdb3d6284..dab0bc9559368 100644 --- a/clients/client-kendra-ranking/package.json +++ b/clients/client-kendra-ranking/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-kendra-ranking", "description": "AWS SDK for JavaScript Kendra Ranking Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-kendra-ranking", diff --git a/clients/client-kendra/CHANGELOG.md b/clients/client-kendra/CHANGELOG.md index 95e93fc383243..9630829bdf136 100644 --- a/clients/client-kendra/CHANGELOG.md +++ b/clients/client-kendra/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-kendra + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-kendra diff --git a/clients/client-kendra/package.json b/clients/client-kendra/package.json index ba5b8b115e477..f9b1e03a3dd60 100644 --- a/clients/client-kendra/package.json +++ b/clients/client-kendra/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-kendra", "description": "AWS SDK for JavaScript Kendra Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-kendra", diff --git a/clients/client-keyspaces/CHANGELOG.md b/clients/client-keyspaces/CHANGELOG.md index 2f9d11873561c..f8471f0e92488 100644 --- a/clients/client-keyspaces/CHANGELOG.md +++ b/clients/client-keyspaces/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-keyspaces + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-keyspaces diff --git a/clients/client-keyspaces/package.json b/clients/client-keyspaces/package.json index cb2eaa209e4f9..6877bd697961b 100644 --- a/clients/client-keyspaces/package.json +++ b/clients/client-keyspaces/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-keyspaces", "description": "AWS SDK for JavaScript Keyspaces Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-keyspaces", diff --git a/clients/client-kinesis-analytics-v2/CHANGELOG.md b/clients/client-kinesis-analytics-v2/CHANGELOG.md index e439d98d22774..a7c1dbe6d665d 100644 --- a/clients/client-kinesis-analytics-v2/CHANGELOG.md +++ b/clients/client-kinesis-analytics-v2/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-kinesis-analytics-v2 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-kinesis-analytics-v2 diff --git a/clients/client-kinesis-analytics-v2/package.json b/clients/client-kinesis-analytics-v2/package.json index 372a83f5f326d..9a1d946856ba1 100644 --- a/clients/client-kinesis-analytics-v2/package.json +++ b/clients/client-kinesis-analytics-v2/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-kinesis-analytics-v2", "description": "AWS SDK for JavaScript Kinesis Analytics V2 Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-kinesis-analytics-v2", diff --git a/clients/client-kinesis-analytics/CHANGELOG.md b/clients/client-kinesis-analytics/CHANGELOG.md index d30293efe7734..8e189eab773d0 100644 --- a/clients/client-kinesis-analytics/CHANGELOG.md +++ b/clients/client-kinesis-analytics/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-kinesis-analytics + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-kinesis-analytics diff --git a/clients/client-kinesis-analytics/package.json b/clients/client-kinesis-analytics/package.json index 78c5709f2070f..01f51e67f0d9e 100644 --- a/clients/client-kinesis-analytics/package.json +++ b/clients/client-kinesis-analytics/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-kinesis-analytics", "description": "AWS SDK for JavaScript Kinesis Analytics Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-kinesis-analytics", diff --git a/clients/client-kinesis-video-archived-media/CHANGELOG.md b/clients/client-kinesis-video-archived-media/CHANGELOG.md index a9dc42b4a26ec..276ff6fa3cda1 100644 --- a/clients/client-kinesis-video-archived-media/CHANGELOG.md +++ b/clients/client-kinesis-video-archived-media/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-kinesis-video-archived-media + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-kinesis-video-archived-media diff --git a/clients/client-kinesis-video-archived-media/package.json b/clients/client-kinesis-video-archived-media/package.json index 98d49898038a2..be6a79e57cf9e 100644 --- a/clients/client-kinesis-video-archived-media/package.json +++ b/clients/client-kinesis-video-archived-media/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-kinesis-video-archived-media", "description": "AWS SDK for JavaScript Kinesis Video Archived Media Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-kinesis-video-archived-media", diff --git a/clients/client-kinesis-video-media/CHANGELOG.md b/clients/client-kinesis-video-media/CHANGELOG.md index ee2cc4bf23e07..7366e87491e31 100644 --- a/clients/client-kinesis-video-media/CHANGELOG.md +++ b/clients/client-kinesis-video-media/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-kinesis-video-media + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-kinesis-video-media diff --git a/clients/client-kinesis-video-media/package.json b/clients/client-kinesis-video-media/package.json index a41d75311024d..ca2db01fe866c 100644 --- a/clients/client-kinesis-video-media/package.json +++ b/clients/client-kinesis-video-media/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-kinesis-video-media", "description": "AWS SDK for JavaScript Kinesis Video Media Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-kinesis-video-media", diff --git a/clients/client-kinesis-video-signaling/CHANGELOG.md b/clients/client-kinesis-video-signaling/CHANGELOG.md index 6c2768873e86a..889e373029776 100644 --- a/clients/client-kinesis-video-signaling/CHANGELOG.md +++ b/clients/client-kinesis-video-signaling/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-kinesis-video-signaling + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-kinesis-video-signaling diff --git a/clients/client-kinesis-video-signaling/package.json b/clients/client-kinesis-video-signaling/package.json index 6a9619820d7d0..94f7b7464a8ea 100644 --- a/clients/client-kinesis-video-signaling/package.json +++ b/clients/client-kinesis-video-signaling/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-kinesis-video-signaling", "description": "AWS SDK for JavaScript Kinesis Video Signaling Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-kinesis-video-signaling", diff --git a/clients/client-kinesis-video-webrtc-storage/CHANGELOG.md b/clients/client-kinesis-video-webrtc-storage/CHANGELOG.md index c062a03dbb052..aa88f683f67d7 100644 --- a/clients/client-kinesis-video-webrtc-storage/CHANGELOG.md +++ b/clients/client-kinesis-video-webrtc-storage/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-kinesis-video-webrtc-storage + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-kinesis-video-webrtc-storage diff --git a/clients/client-kinesis-video-webrtc-storage/package.json b/clients/client-kinesis-video-webrtc-storage/package.json index dd4d2036355ba..da4fde8724c88 100644 --- a/clients/client-kinesis-video-webrtc-storage/package.json +++ b/clients/client-kinesis-video-webrtc-storage/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-kinesis-video-webrtc-storage", "description": "AWS SDK for JavaScript Kinesis Video Webrtc Storage Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-kinesis-video-webrtc-storage", diff --git a/clients/client-kinesis-video/CHANGELOG.md b/clients/client-kinesis-video/CHANGELOG.md index 4a37660b78a7f..1c3694055ac93 100644 --- a/clients/client-kinesis-video/CHANGELOG.md +++ b/clients/client-kinesis-video/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-kinesis-video + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-kinesis-video diff --git a/clients/client-kinesis-video/package.json b/clients/client-kinesis-video/package.json index 85b7886d0b6e1..1987bb51edc63 100644 --- a/clients/client-kinesis-video/package.json +++ b/clients/client-kinesis-video/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-kinesis-video", "description": "AWS SDK for JavaScript Kinesis Video Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-kinesis-video", diff --git a/clients/client-kinesis/CHANGELOG.md b/clients/client-kinesis/CHANGELOG.md index aa941f46286fa..f0b41ec0251ef 100644 --- a/clients/client-kinesis/CHANGELOG.md +++ b/clients/client-kinesis/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-kinesis + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-kinesis diff --git a/clients/client-kinesis/package.json b/clients/client-kinesis/package.json index 2b2b48b57b2d1..06dc940ff6f49 100644 --- a/clients/client-kinesis/package.json +++ b/clients/client-kinesis/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-kinesis", "description": "AWS SDK for JavaScript Kinesis Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-kinesis", diff --git a/clients/client-kms/CHANGELOG.md b/clients/client-kms/CHANGELOG.md index 7f88bb772f5cf..96604b0de606f 100644 --- a/clients/client-kms/CHANGELOG.md +++ b/clients/client-kms/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-kms + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-kms diff --git a/clients/client-kms/package.json b/clients/client-kms/package.json index 47dc9ce1b425c..fede28f25156e 100644 --- a/clients/client-kms/package.json +++ b/clients/client-kms/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-kms", "description": "AWS SDK for JavaScript Kms Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-kms", diff --git a/clients/client-lakeformation/CHANGELOG.md b/clients/client-lakeformation/CHANGELOG.md index 0fb88b018171f..314ce5027ec65 100644 --- a/clients/client-lakeformation/CHANGELOG.md +++ b/clients/client-lakeformation/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-lakeformation + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-lakeformation diff --git a/clients/client-lakeformation/package.json b/clients/client-lakeformation/package.json index 52ce6faf0aa9e..9a3518b10af83 100644 --- a/clients/client-lakeformation/package.json +++ b/clients/client-lakeformation/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-lakeformation", "description": "AWS SDK for JavaScript Lakeformation Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-lakeformation", diff --git a/clients/client-lambda/CHANGELOG.md b/clients/client-lambda/CHANGELOG.md index 5ea00804a45ce..ef1f74aa5030c 100644 --- a/clients/client-lambda/CHANGELOG.md +++ b/clients/client-lambda/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-lambda + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-lambda diff --git a/clients/client-lambda/package.json b/clients/client-lambda/package.json index f2457016279cb..8091afa9df1fb 100644 --- a/clients/client-lambda/package.json +++ b/clients/client-lambda/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-lambda", "description": "AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-lambda", diff --git a/clients/client-launch-wizard/CHANGELOG.md b/clients/client-launch-wizard/CHANGELOG.md index 9e0b41363fe9a..395f4920e000b 100644 --- a/clients/client-launch-wizard/CHANGELOG.md +++ b/clients/client-launch-wizard/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-launch-wizard + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-launch-wizard diff --git a/clients/client-launch-wizard/package.json b/clients/client-launch-wizard/package.json index 512e608e04135..55fb3beff7ed1 100644 --- a/clients/client-launch-wizard/package.json +++ b/clients/client-launch-wizard/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-launch-wizard", "description": "AWS SDK for JavaScript Launch Wizard Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-launch-wizard", diff --git a/clients/client-lex-model-building-service/CHANGELOG.md b/clients/client-lex-model-building-service/CHANGELOG.md index af76338a50d53..be73a9837e73a 100644 --- a/clients/client-lex-model-building-service/CHANGELOG.md +++ b/clients/client-lex-model-building-service/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-lex-model-building-service + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-lex-model-building-service diff --git a/clients/client-lex-model-building-service/package.json b/clients/client-lex-model-building-service/package.json index 9fec83750b31c..908f61a1ddd92 100644 --- a/clients/client-lex-model-building-service/package.json +++ b/clients/client-lex-model-building-service/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-lex-model-building-service", "description": "AWS SDK for JavaScript Lex Model Building Service Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-lex-model-building-service", diff --git a/clients/client-lex-models-v2/CHANGELOG.md b/clients/client-lex-models-v2/CHANGELOG.md index 1d7e3adf7d78a..a51a87abd3aa0 100644 --- a/clients/client-lex-models-v2/CHANGELOG.md +++ b/clients/client-lex-models-v2/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-lex-models-v2 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-lex-models-v2 diff --git a/clients/client-lex-models-v2/package.json b/clients/client-lex-models-v2/package.json index b14b526273254..5bfc70b340b49 100644 --- a/clients/client-lex-models-v2/package.json +++ b/clients/client-lex-models-v2/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-lex-models-v2", "description": "AWS SDK for JavaScript Lex Models V2 Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-lex-models-v2", diff --git a/clients/client-lex-runtime-service/CHANGELOG.md b/clients/client-lex-runtime-service/CHANGELOG.md index 85c350d41c6d1..9bc58b9b88274 100644 --- a/clients/client-lex-runtime-service/CHANGELOG.md +++ b/clients/client-lex-runtime-service/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-lex-runtime-service + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-lex-runtime-service diff --git a/clients/client-lex-runtime-service/package.json b/clients/client-lex-runtime-service/package.json index 3fd6b46083f00..310ae31f92d36 100644 --- a/clients/client-lex-runtime-service/package.json +++ b/clients/client-lex-runtime-service/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-lex-runtime-service", "description": "AWS SDK for JavaScript Lex Runtime Service Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-lex-runtime-service", diff --git a/clients/client-lex-runtime-v2/CHANGELOG.md b/clients/client-lex-runtime-v2/CHANGELOG.md index 24b039f8cba33..2d249bfda791f 100644 --- a/clients/client-lex-runtime-v2/CHANGELOG.md +++ b/clients/client-lex-runtime-v2/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-lex-runtime-v2 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-lex-runtime-v2 diff --git a/clients/client-lex-runtime-v2/package.json b/clients/client-lex-runtime-v2/package.json index dad1178072973..230c90db2fb8e 100644 --- a/clients/client-lex-runtime-v2/package.json +++ b/clients/client-lex-runtime-v2/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-lex-runtime-v2", "description": "AWS SDK for JavaScript Lex Runtime V2 Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-lex-runtime-v2", diff --git a/clients/client-license-manager-linux-subscriptions/CHANGELOG.md b/clients/client-license-manager-linux-subscriptions/CHANGELOG.md index 98c6db69a7749..aecdf52a69fed 100644 --- a/clients/client-license-manager-linux-subscriptions/CHANGELOG.md +++ b/clients/client-license-manager-linux-subscriptions/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-license-manager-linux-subscriptions + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-license-manager-linux-subscriptions diff --git a/clients/client-license-manager-linux-subscriptions/package.json b/clients/client-license-manager-linux-subscriptions/package.json index 914b35906ca1c..4d68949acb328 100644 --- a/clients/client-license-manager-linux-subscriptions/package.json +++ b/clients/client-license-manager-linux-subscriptions/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-license-manager-linux-subscriptions", "description": "AWS SDK for JavaScript License Manager Linux Subscriptions Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-license-manager-linux-subscriptions", diff --git a/clients/client-license-manager-user-subscriptions/CHANGELOG.md b/clients/client-license-manager-user-subscriptions/CHANGELOG.md index 4d5dc52315ff2..0c0428a584494 100644 --- a/clients/client-license-manager-user-subscriptions/CHANGELOG.md +++ b/clients/client-license-manager-user-subscriptions/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-license-manager-user-subscriptions + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-license-manager-user-subscriptions diff --git a/clients/client-license-manager-user-subscriptions/package.json b/clients/client-license-manager-user-subscriptions/package.json index 0bf434431d8f3..4226ccbaf6227 100644 --- a/clients/client-license-manager-user-subscriptions/package.json +++ b/clients/client-license-manager-user-subscriptions/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-license-manager-user-subscriptions", "description": "AWS SDK for JavaScript License Manager User Subscriptions Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-license-manager-user-subscriptions", diff --git a/clients/client-license-manager/CHANGELOG.md b/clients/client-license-manager/CHANGELOG.md index faab434e63866..5c414fdddc7f2 100644 --- a/clients/client-license-manager/CHANGELOG.md +++ b/clients/client-license-manager/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-license-manager + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-license-manager diff --git a/clients/client-license-manager/package.json b/clients/client-license-manager/package.json index 35a2fb68d698a..90a7fb054cf08 100644 --- a/clients/client-license-manager/package.json +++ b/clients/client-license-manager/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-license-manager", "description": "AWS SDK for JavaScript License Manager Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-license-manager", diff --git a/clients/client-lightsail/CHANGELOG.md b/clients/client-lightsail/CHANGELOG.md index d420bca5fa323..b3c827dc9ee8a 100644 --- a/clients/client-lightsail/CHANGELOG.md +++ b/clients/client-lightsail/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-lightsail + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-lightsail diff --git a/clients/client-lightsail/package.json b/clients/client-lightsail/package.json index 4dabee311bcdb..188241e354da7 100644 --- a/clients/client-lightsail/package.json +++ b/clients/client-lightsail/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-lightsail", "description": "AWS SDK for JavaScript Lightsail Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-lightsail", diff --git a/clients/client-location/CHANGELOG.md b/clients/client-location/CHANGELOG.md index c1eac2670fe90..47feaa081fd59 100644 --- a/clients/client-location/CHANGELOG.md +++ b/clients/client-location/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-location + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-location diff --git a/clients/client-location/package.json b/clients/client-location/package.json index b40044831f5a5..3877bf4b3c898 100644 --- a/clients/client-location/package.json +++ b/clients/client-location/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-location", "description": "AWS SDK for JavaScript Location Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-location", diff --git a/clients/client-lookoutequipment/CHANGELOG.md b/clients/client-lookoutequipment/CHANGELOG.md index 5ef8ce8384fd8..53f9db9d5077e 100644 --- a/clients/client-lookoutequipment/CHANGELOG.md +++ b/clients/client-lookoutequipment/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-lookoutequipment + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-lookoutequipment diff --git a/clients/client-lookoutequipment/package.json b/clients/client-lookoutequipment/package.json index fe5a2441a733f..a339504006d3f 100644 --- a/clients/client-lookoutequipment/package.json +++ b/clients/client-lookoutequipment/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-lookoutequipment", "description": "AWS SDK for JavaScript Lookoutequipment Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-lookoutequipment", diff --git a/clients/client-lookoutmetrics/CHANGELOG.md b/clients/client-lookoutmetrics/CHANGELOG.md index 2368b69dab523..f48784eb4af92 100644 --- a/clients/client-lookoutmetrics/CHANGELOG.md +++ b/clients/client-lookoutmetrics/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-lookoutmetrics + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-lookoutmetrics diff --git a/clients/client-lookoutmetrics/package.json b/clients/client-lookoutmetrics/package.json index 43427363606fb..8c6a96d0b12b3 100644 --- a/clients/client-lookoutmetrics/package.json +++ b/clients/client-lookoutmetrics/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-lookoutmetrics", "description": "AWS SDK for JavaScript Lookoutmetrics Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-lookoutmetrics", diff --git a/clients/client-lookoutvision/CHANGELOG.md b/clients/client-lookoutvision/CHANGELOG.md index f399127d975da..336ec340f4599 100644 --- a/clients/client-lookoutvision/CHANGELOG.md +++ b/clients/client-lookoutvision/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-lookoutvision + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-lookoutvision diff --git a/clients/client-lookoutvision/package.json b/clients/client-lookoutvision/package.json index a30147c281184..8402b7ea40891 100644 --- a/clients/client-lookoutvision/package.json +++ b/clients/client-lookoutvision/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-lookoutvision", "description": "AWS SDK for JavaScript Lookoutvision Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-lookoutvision", diff --git a/clients/client-m2/CHANGELOG.md b/clients/client-m2/CHANGELOG.md index f337a4d2324c8..5f605a4cedf37 100644 --- a/clients/client-m2/CHANGELOG.md +++ b/clients/client-m2/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-m2 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-m2 diff --git a/clients/client-m2/package.json b/clients/client-m2/package.json index fd24b9b4f175e..4e09ed453716c 100644 --- a/clients/client-m2/package.json +++ b/clients/client-m2/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-m2", "description": "AWS SDK for JavaScript M2 Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-m2", diff --git a/clients/client-machine-learning/CHANGELOG.md b/clients/client-machine-learning/CHANGELOG.md index 2004d97f7d544..29d7a36219550 100644 --- a/clients/client-machine-learning/CHANGELOG.md +++ b/clients/client-machine-learning/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-machine-learning + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-machine-learning diff --git a/clients/client-machine-learning/package.json b/clients/client-machine-learning/package.json index 9dac0dcf9f89d..27f7708ccdd37 100644 --- a/clients/client-machine-learning/package.json +++ b/clients/client-machine-learning/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-machine-learning", "description": "AWS SDK for JavaScript Machine Learning Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-machine-learning", diff --git a/clients/client-macie2/CHANGELOG.md b/clients/client-macie2/CHANGELOG.md index d7302790c1d5d..5d0fa0f267bc6 100644 --- a/clients/client-macie2/CHANGELOG.md +++ b/clients/client-macie2/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-macie2 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-macie2 diff --git a/clients/client-macie2/package.json b/clients/client-macie2/package.json index 29304b5ca6c49..c7553147fa30a 100644 --- a/clients/client-macie2/package.json +++ b/clients/client-macie2/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-macie2", "description": "AWS SDK for JavaScript Macie2 Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-macie2", diff --git a/clients/client-mailmanager/CHANGELOG.md b/clients/client-mailmanager/CHANGELOG.md index fa74de84001b2..a2931e3518424 100644 --- a/clients/client-mailmanager/CHANGELOG.md +++ b/clients/client-mailmanager/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-mailmanager + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-mailmanager diff --git a/clients/client-mailmanager/package.json b/clients/client-mailmanager/package.json index 8236d123fa78f..2c13bf5d7e2c7 100644 --- a/clients/client-mailmanager/package.json +++ b/clients/client-mailmanager/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-mailmanager", "description": "AWS SDK for JavaScript Mailmanager Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/clients/client-managedblockchain-query/CHANGELOG.md b/clients/client-managedblockchain-query/CHANGELOG.md index 50fde16071d9c..6eb75eea7ac19 100644 --- a/clients/client-managedblockchain-query/CHANGELOG.md +++ b/clients/client-managedblockchain-query/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-managedblockchain-query + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-managedblockchain-query diff --git a/clients/client-managedblockchain-query/package.json b/clients/client-managedblockchain-query/package.json index 8db6f947cf48b..57cb1af052184 100644 --- a/clients/client-managedblockchain-query/package.json +++ b/clients/client-managedblockchain-query/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-managedblockchain-query", "description": "AWS SDK for JavaScript Managedblockchain Query Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-managedblockchain-query", diff --git a/clients/client-managedblockchain/CHANGELOG.md b/clients/client-managedblockchain/CHANGELOG.md index 4b1b7f1c7e62d..12a66a227bb19 100644 --- a/clients/client-managedblockchain/CHANGELOG.md +++ b/clients/client-managedblockchain/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-managedblockchain + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-managedblockchain diff --git a/clients/client-managedblockchain/package.json b/clients/client-managedblockchain/package.json index 6550ff60fad15..f09126c6a1a4b 100644 --- a/clients/client-managedblockchain/package.json +++ b/clients/client-managedblockchain/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-managedblockchain", "description": "AWS SDK for JavaScript Managedblockchain Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-managedblockchain", diff --git a/clients/client-marketplace-agreement/CHANGELOG.md b/clients/client-marketplace-agreement/CHANGELOG.md index 97129e22b8bb3..784ac4fd1a5f2 100644 --- a/clients/client-marketplace-agreement/CHANGELOG.md +++ b/clients/client-marketplace-agreement/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-marketplace-agreement + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-marketplace-agreement diff --git a/clients/client-marketplace-agreement/package.json b/clients/client-marketplace-agreement/package.json index eaec12f860956..117098bfcf271 100644 --- a/clients/client-marketplace-agreement/package.json +++ b/clients/client-marketplace-agreement/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-marketplace-agreement", "description": "AWS SDK for JavaScript Marketplace Agreement Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-marketplace-agreement", diff --git a/clients/client-marketplace-catalog/CHANGELOG.md b/clients/client-marketplace-catalog/CHANGELOG.md index 42e406a541956..905021699825e 100644 --- a/clients/client-marketplace-catalog/CHANGELOG.md +++ b/clients/client-marketplace-catalog/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-marketplace-catalog + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-marketplace-catalog diff --git a/clients/client-marketplace-catalog/package.json b/clients/client-marketplace-catalog/package.json index 729fe1fab660e..a98e728925424 100644 --- a/clients/client-marketplace-catalog/package.json +++ b/clients/client-marketplace-catalog/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-marketplace-catalog", "description": "AWS SDK for JavaScript Marketplace Catalog Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-marketplace-catalog", diff --git a/clients/client-marketplace-commerce-analytics/CHANGELOG.md b/clients/client-marketplace-commerce-analytics/CHANGELOG.md index fde14129f6b08..6bdf65da95df9 100644 --- a/clients/client-marketplace-commerce-analytics/CHANGELOG.md +++ b/clients/client-marketplace-commerce-analytics/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-marketplace-commerce-analytics + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-marketplace-commerce-analytics diff --git a/clients/client-marketplace-commerce-analytics/package.json b/clients/client-marketplace-commerce-analytics/package.json index 758e762afbd61..a23c045694910 100644 --- a/clients/client-marketplace-commerce-analytics/package.json +++ b/clients/client-marketplace-commerce-analytics/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-marketplace-commerce-analytics", "description": "AWS SDK for JavaScript Marketplace Commerce Analytics Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-marketplace-commerce-analytics", diff --git a/clients/client-marketplace-deployment/CHANGELOG.md b/clients/client-marketplace-deployment/CHANGELOG.md index cbc6787d9547d..a8a2c2e86e6c8 100644 --- a/clients/client-marketplace-deployment/CHANGELOG.md +++ b/clients/client-marketplace-deployment/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-marketplace-deployment + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-marketplace-deployment diff --git a/clients/client-marketplace-deployment/package.json b/clients/client-marketplace-deployment/package.json index ce0cb5ddde911..ae140eb20a662 100644 --- a/clients/client-marketplace-deployment/package.json +++ b/clients/client-marketplace-deployment/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-marketplace-deployment", "description": "AWS SDK for JavaScript Marketplace Deployment Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-marketplace-deployment", diff --git a/clients/client-marketplace-entitlement-service/CHANGELOG.md b/clients/client-marketplace-entitlement-service/CHANGELOG.md index 84686a5c22c6f..d0ca566125a08 100644 --- a/clients/client-marketplace-entitlement-service/CHANGELOG.md +++ b/clients/client-marketplace-entitlement-service/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-marketplace-entitlement-service + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-marketplace-entitlement-service diff --git a/clients/client-marketplace-entitlement-service/package.json b/clients/client-marketplace-entitlement-service/package.json index 376129e58ceea..ac0240ec2afc4 100644 --- a/clients/client-marketplace-entitlement-service/package.json +++ b/clients/client-marketplace-entitlement-service/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-marketplace-entitlement-service", "description": "AWS SDK for JavaScript Marketplace Entitlement Service Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-marketplace-entitlement-service", diff --git a/clients/client-marketplace-metering/CHANGELOG.md b/clients/client-marketplace-metering/CHANGELOG.md index 60653c142087f..21f576eae4afc 100644 --- a/clients/client-marketplace-metering/CHANGELOG.md +++ b/clients/client-marketplace-metering/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-marketplace-metering + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-marketplace-metering diff --git a/clients/client-marketplace-metering/package.json b/clients/client-marketplace-metering/package.json index 59b515a44742f..317936e1f9c56 100644 --- a/clients/client-marketplace-metering/package.json +++ b/clients/client-marketplace-metering/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-marketplace-metering", "description": "AWS SDK for JavaScript Marketplace Metering Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-marketplace-metering", diff --git a/clients/client-mediaconnect/CHANGELOG.md b/clients/client-mediaconnect/CHANGELOG.md index f193eba913796..698bdb12e3462 100644 --- a/clients/client-mediaconnect/CHANGELOG.md +++ b/clients/client-mediaconnect/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-mediaconnect + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-mediaconnect diff --git a/clients/client-mediaconnect/package.json b/clients/client-mediaconnect/package.json index 28f7773f8fb66..cf139552cc9d0 100644 --- a/clients/client-mediaconnect/package.json +++ b/clients/client-mediaconnect/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-mediaconnect", "description": "AWS SDK for JavaScript Mediaconnect Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-mediaconnect", diff --git a/clients/client-mediaconvert/CHANGELOG.md b/clients/client-mediaconvert/CHANGELOG.md index 3e68527af1cd8..9fadda6d74086 100644 --- a/clients/client-mediaconvert/CHANGELOG.md +++ b/clients/client-mediaconvert/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-mediaconvert + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-mediaconvert diff --git a/clients/client-mediaconvert/package.json b/clients/client-mediaconvert/package.json index 2144acd4c3b3b..6e7c7d1effcc8 100644 --- a/clients/client-mediaconvert/package.json +++ b/clients/client-mediaconvert/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-mediaconvert", "description": "AWS SDK for JavaScript Mediaconvert Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-mediaconvert", diff --git a/clients/client-medialive/CHANGELOG.md b/clients/client-medialive/CHANGELOG.md index 4b4c5d16b8800..a9ca71af79cfb 100644 --- a/clients/client-medialive/CHANGELOG.md +++ b/clients/client-medialive/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-medialive + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-medialive diff --git a/clients/client-medialive/package.json b/clients/client-medialive/package.json index f97101d53cf3e..590c698e6f89d 100644 --- a/clients/client-medialive/package.json +++ b/clients/client-medialive/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-medialive", "description": "AWS SDK for JavaScript Medialive Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-medialive", diff --git a/clients/client-mediapackage-vod/CHANGELOG.md b/clients/client-mediapackage-vod/CHANGELOG.md index 58a3279a50778..1b10f05d3f753 100644 --- a/clients/client-mediapackage-vod/CHANGELOG.md +++ b/clients/client-mediapackage-vod/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-mediapackage-vod + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-mediapackage-vod diff --git a/clients/client-mediapackage-vod/package.json b/clients/client-mediapackage-vod/package.json index 49511b9bb75c7..7c26aab13cb50 100644 --- a/clients/client-mediapackage-vod/package.json +++ b/clients/client-mediapackage-vod/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-mediapackage-vod", "description": "AWS SDK for JavaScript Mediapackage Vod Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-mediapackage-vod", diff --git a/clients/client-mediapackage/CHANGELOG.md b/clients/client-mediapackage/CHANGELOG.md index 5a0bbed738933..ec9590ee7d79d 100644 --- a/clients/client-mediapackage/CHANGELOG.md +++ b/clients/client-mediapackage/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-mediapackage + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-mediapackage diff --git a/clients/client-mediapackage/package.json b/clients/client-mediapackage/package.json index 0aadde5b827ba..f8f93c6204bfc 100644 --- a/clients/client-mediapackage/package.json +++ b/clients/client-mediapackage/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-mediapackage", "description": "AWS SDK for JavaScript Mediapackage Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-mediapackage", diff --git a/clients/client-mediapackagev2/CHANGELOG.md b/clients/client-mediapackagev2/CHANGELOG.md index ac8a3d693ed4c..9e4e6d6d5d92e 100644 --- a/clients/client-mediapackagev2/CHANGELOG.md +++ b/clients/client-mediapackagev2/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-mediapackagev2 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-mediapackagev2 diff --git a/clients/client-mediapackagev2/package.json b/clients/client-mediapackagev2/package.json index 641a05fb62f73..729d5ec0e4d44 100644 --- a/clients/client-mediapackagev2/package.json +++ b/clients/client-mediapackagev2/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-mediapackagev2", "description": "AWS SDK for JavaScript Mediapackagev2 Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-mediapackagev2", diff --git a/clients/client-mediastore-data/CHANGELOG.md b/clients/client-mediastore-data/CHANGELOG.md index 487d90c58a546..2e826676d6c6f 100644 --- a/clients/client-mediastore-data/CHANGELOG.md +++ b/clients/client-mediastore-data/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-mediastore-data + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-mediastore-data diff --git a/clients/client-mediastore-data/package.json b/clients/client-mediastore-data/package.json index fa9d922215b0f..7a4c7faa0c52a 100644 --- a/clients/client-mediastore-data/package.json +++ b/clients/client-mediastore-data/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-mediastore-data", "description": "AWS SDK for JavaScript Mediastore Data Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-mediastore-data", diff --git a/clients/client-mediastore/CHANGELOG.md b/clients/client-mediastore/CHANGELOG.md index 0ad612e2f5339..ea2796e5fb754 100644 --- a/clients/client-mediastore/CHANGELOG.md +++ b/clients/client-mediastore/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-mediastore + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-mediastore diff --git a/clients/client-mediastore/package.json b/clients/client-mediastore/package.json index 6d8ff046557ae..2bafdeb053154 100644 --- a/clients/client-mediastore/package.json +++ b/clients/client-mediastore/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-mediastore", "description": "AWS SDK for JavaScript Mediastore Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-mediastore", diff --git a/clients/client-mediatailor/CHANGELOG.md b/clients/client-mediatailor/CHANGELOG.md index 84f3118ef7b29..fc34970d25ad1 100644 --- a/clients/client-mediatailor/CHANGELOG.md +++ b/clients/client-mediatailor/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-mediatailor + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-mediatailor diff --git a/clients/client-mediatailor/package.json b/clients/client-mediatailor/package.json index dbcfdab05c905..5cc9ffad49f7d 100644 --- a/clients/client-mediatailor/package.json +++ b/clients/client-mediatailor/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-mediatailor", "description": "AWS SDK for JavaScript Mediatailor Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-mediatailor", diff --git a/clients/client-medical-imaging/CHANGELOG.md b/clients/client-medical-imaging/CHANGELOG.md index 51c7b9a0d4a5d..d6d03b4b36dcc 100644 --- a/clients/client-medical-imaging/CHANGELOG.md +++ b/clients/client-medical-imaging/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-medical-imaging + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-medical-imaging diff --git a/clients/client-medical-imaging/package.json b/clients/client-medical-imaging/package.json index edf8bd517e371..060ad3c12cb2a 100644 --- a/clients/client-medical-imaging/package.json +++ b/clients/client-medical-imaging/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-medical-imaging", "description": "AWS SDK for JavaScript Medical Imaging Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-medical-imaging", diff --git a/clients/client-memorydb/CHANGELOG.md b/clients/client-memorydb/CHANGELOG.md index a5670d6f5c499..d58a01e185173 100644 --- a/clients/client-memorydb/CHANGELOG.md +++ b/clients/client-memorydb/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-memorydb + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-memorydb diff --git a/clients/client-memorydb/package.json b/clients/client-memorydb/package.json index 6f59bcce51c74..521b3caf51602 100644 --- a/clients/client-memorydb/package.json +++ b/clients/client-memorydb/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-memorydb", "description": "AWS SDK for JavaScript Memorydb Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-memorydb", diff --git a/clients/client-mgn/CHANGELOG.md b/clients/client-mgn/CHANGELOG.md index f1dfe834d3607..94d4d52d4cd7a 100644 --- a/clients/client-mgn/CHANGELOG.md +++ b/clients/client-mgn/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-mgn + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-mgn diff --git a/clients/client-mgn/package.json b/clients/client-mgn/package.json index a9d14d1b2c520..2c9c2681cea4b 100644 --- a/clients/client-mgn/package.json +++ b/clients/client-mgn/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-mgn", "description": "AWS SDK for JavaScript Mgn Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-mgn", diff --git a/clients/client-migration-hub-refactor-spaces/CHANGELOG.md b/clients/client-migration-hub-refactor-spaces/CHANGELOG.md index a7799f9f1c779..6dab32972e16c 100644 --- a/clients/client-migration-hub-refactor-spaces/CHANGELOG.md +++ b/clients/client-migration-hub-refactor-spaces/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-migration-hub-refactor-spaces + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-migration-hub-refactor-spaces diff --git a/clients/client-migration-hub-refactor-spaces/package.json b/clients/client-migration-hub-refactor-spaces/package.json index 25f03aaa1ef6f..6d20d11a5f08d 100644 --- a/clients/client-migration-hub-refactor-spaces/package.json +++ b/clients/client-migration-hub-refactor-spaces/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-migration-hub-refactor-spaces", "description": "AWS SDK for JavaScript Migration Hub Refactor Spaces Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-migration-hub-refactor-spaces", diff --git a/clients/client-migration-hub/CHANGELOG.md b/clients/client-migration-hub/CHANGELOG.md index 48e0c59a6f8a5..048d51b8aed51 100644 --- a/clients/client-migration-hub/CHANGELOG.md +++ b/clients/client-migration-hub/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-migration-hub + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-migration-hub diff --git a/clients/client-migration-hub/package.json b/clients/client-migration-hub/package.json index 7627480e1984d..63b694c2010c6 100644 --- a/clients/client-migration-hub/package.json +++ b/clients/client-migration-hub/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-migration-hub", "description": "AWS SDK for JavaScript Migration Hub Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-migration-hub", diff --git a/clients/client-migrationhub-config/CHANGELOG.md b/clients/client-migrationhub-config/CHANGELOG.md index 244533d9bc3ad..791ed2037b19a 100644 --- a/clients/client-migrationhub-config/CHANGELOG.md +++ b/clients/client-migrationhub-config/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-migrationhub-config + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-migrationhub-config diff --git a/clients/client-migrationhub-config/package.json b/clients/client-migrationhub-config/package.json index bc2ef5988aeb9..f88b93a6ee397 100644 --- a/clients/client-migrationhub-config/package.json +++ b/clients/client-migrationhub-config/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-migrationhub-config", "description": "AWS SDK for JavaScript Migrationhub Config Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-migrationhub-config", diff --git a/clients/client-migrationhuborchestrator/CHANGELOG.md b/clients/client-migrationhuborchestrator/CHANGELOG.md index d608687fefa6b..e0b71f32bc4f3 100644 --- a/clients/client-migrationhuborchestrator/CHANGELOG.md +++ b/clients/client-migrationhuborchestrator/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-migrationhuborchestrator + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-migrationhuborchestrator diff --git a/clients/client-migrationhuborchestrator/package.json b/clients/client-migrationhuborchestrator/package.json index 03a2bea96a243..b754a55be7d9c 100644 --- a/clients/client-migrationhuborchestrator/package.json +++ b/clients/client-migrationhuborchestrator/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-migrationhuborchestrator", "description": "AWS SDK for JavaScript Migrationhuborchestrator Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-migrationhuborchestrator", diff --git a/clients/client-migrationhubstrategy/CHANGELOG.md b/clients/client-migrationhubstrategy/CHANGELOG.md index 982d35d59dbaf..7e05193c118ef 100644 --- a/clients/client-migrationhubstrategy/CHANGELOG.md +++ b/clients/client-migrationhubstrategy/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-migrationhubstrategy + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-migrationhubstrategy diff --git a/clients/client-migrationhubstrategy/package.json b/clients/client-migrationhubstrategy/package.json index 705d1a51dae97..434907a83d04a 100644 --- a/clients/client-migrationhubstrategy/package.json +++ b/clients/client-migrationhubstrategy/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-migrationhubstrategy", "description": "AWS SDK for JavaScript Migrationhubstrategy Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-migrationhubstrategy", diff --git a/clients/client-mq/CHANGELOG.md b/clients/client-mq/CHANGELOG.md index dcd617efc2155..b744ae2c74ad5 100644 --- a/clients/client-mq/CHANGELOG.md +++ b/clients/client-mq/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-mq + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-mq diff --git a/clients/client-mq/package.json b/clients/client-mq/package.json index 5b11ff5e05296..fd87958da0973 100644 --- a/clients/client-mq/package.json +++ b/clients/client-mq/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-mq", "description": "AWS SDK for JavaScript Mq Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-mq", diff --git a/clients/client-mturk/CHANGELOG.md b/clients/client-mturk/CHANGELOG.md index eeefada5247e7..8f2dca33f9b46 100644 --- a/clients/client-mturk/CHANGELOG.md +++ b/clients/client-mturk/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-mturk + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-mturk diff --git a/clients/client-mturk/package.json b/clients/client-mturk/package.json index b089ee8a5ef69..9e4e814bc2ef5 100644 --- a/clients/client-mturk/package.json +++ b/clients/client-mturk/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-mturk", "description": "AWS SDK for JavaScript Mturk Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-mturk", diff --git a/clients/client-mwaa/CHANGELOG.md b/clients/client-mwaa/CHANGELOG.md index e7090658d20d4..be2b66fbc4b69 100644 --- a/clients/client-mwaa/CHANGELOG.md +++ b/clients/client-mwaa/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-mwaa + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-mwaa diff --git a/clients/client-mwaa/package.json b/clients/client-mwaa/package.json index 148b979ee6ba7..8cad618e8d717 100644 --- a/clients/client-mwaa/package.json +++ b/clients/client-mwaa/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-mwaa", "description": "AWS SDK for JavaScript Mwaa Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-mwaa", diff --git a/clients/client-neptune-graph/CHANGELOG.md b/clients/client-neptune-graph/CHANGELOG.md index ed16989548861..0f524c5536985 100644 --- a/clients/client-neptune-graph/CHANGELOG.md +++ b/clients/client-neptune-graph/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-neptune-graph + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-neptune-graph diff --git a/clients/client-neptune-graph/package.json b/clients/client-neptune-graph/package.json index 985a77aefdb9e..07a708f4402d8 100644 --- a/clients/client-neptune-graph/package.json +++ b/clients/client-neptune-graph/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-neptune-graph", "description": "AWS SDK for JavaScript Neptune Graph Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-neptune-graph", diff --git a/clients/client-neptune/CHANGELOG.md b/clients/client-neptune/CHANGELOG.md index 670c9d065b3f0..b261fd9ce61ec 100644 --- a/clients/client-neptune/CHANGELOG.md +++ b/clients/client-neptune/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-neptune + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-neptune diff --git a/clients/client-neptune/package.json b/clients/client-neptune/package.json index cbeea69174693..ce672629790dc 100644 --- a/clients/client-neptune/package.json +++ b/clients/client-neptune/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-neptune", "description": "AWS SDK for JavaScript Neptune Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-neptune", diff --git a/clients/client-neptunedata/CHANGELOG.md b/clients/client-neptunedata/CHANGELOG.md index 4bb1e7639ec60..c38a1b4fa8ebd 100644 --- a/clients/client-neptunedata/CHANGELOG.md +++ b/clients/client-neptunedata/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-neptunedata + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-neptunedata diff --git a/clients/client-neptunedata/package.json b/clients/client-neptunedata/package.json index abfec39b6ae64..b7c2ef48cf935 100644 --- a/clients/client-neptunedata/package.json +++ b/clients/client-neptunedata/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-neptunedata", "description": "AWS SDK for JavaScript Neptunedata Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-neptunedata", diff --git a/clients/client-network-firewall/CHANGELOG.md b/clients/client-network-firewall/CHANGELOG.md index 28b131bd80add..586627a24870e 100644 --- a/clients/client-network-firewall/CHANGELOG.md +++ b/clients/client-network-firewall/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-network-firewall + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-network-firewall diff --git a/clients/client-network-firewall/package.json b/clients/client-network-firewall/package.json index 5a15665299550..d986735b58be1 100644 --- a/clients/client-network-firewall/package.json +++ b/clients/client-network-firewall/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-network-firewall", "description": "AWS SDK for JavaScript Network Firewall Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-network-firewall", diff --git a/clients/client-networkmanager/CHANGELOG.md b/clients/client-networkmanager/CHANGELOG.md index 4c595370f9af0..29ddb5c92807c 100644 --- a/clients/client-networkmanager/CHANGELOG.md +++ b/clients/client-networkmanager/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-networkmanager + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-networkmanager diff --git a/clients/client-networkmanager/package.json b/clients/client-networkmanager/package.json index bb0192a5846c0..789e709c7ea0b 100644 --- a/clients/client-networkmanager/package.json +++ b/clients/client-networkmanager/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-networkmanager", "description": "AWS SDK for JavaScript Networkmanager Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-networkmanager", diff --git a/clients/client-networkmonitor/CHANGELOG.md b/clients/client-networkmonitor/CHANGELOG.md index 1dba22ab41b07..11e2e74f02914 100644 --- a/clients/client-networkmonitor/CHANGELOG.md +++ b/clients/client-networkmonitor/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-networkmonitor + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-networkmonitor diff --git a/clients/client-networkmonitor/package.json b/clients/client-networkmonitor/package.json index e29889f468dca..e38149a19ad15 100644 --- a/clients/client-networkmonitor/package.json +++ b/clients/client-networkmonitor/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-networkmonitor", "description": "AWS SDK for JavaScript Networkmonitor Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-networkmonitor", diff --git a/clients/client-nimble/CHANGELOG.md b/clients/client-nimble/CHANGELOG.md index e8e4a1de8035c..ca65573603dfb 100644 --- a/clients/client-nimble/CHANGELOG.md +++ b/clients/client-nimble/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-nimble + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-nimble diff --git a/clients/client-nimble/package.json b/clients/client-nimble/package.json index 9648a1a8dcba2..7379aab6e81ad 100644 --- a/clients/client-nimble/package.json +++ b/clients/client-nimble/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-nimble", "description": "AWS SDK for JavaScript Nimble Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-nimble", diff --git a/clients/client-oam/CHANGELOG.md b/clients/client-oam/CHANGELOG.md index 7f0131af97f93..9f54223acbd13 100644 --- a/clients/client-oam/CHANGELOG.md +++ b/clients/client-oam/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-oam + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-oam diff --git a/clients/client-oam/package.json b/clients/client-oam/package.json index a55db4981cdfd..89987f4055856 100644 --- a/clients/client-oam/package.json +++ b/clients/client-oam/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-oam", "description": "AWS SDK for JavaScript Oam Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-oam", diff --git a/clients/client-omics/CHANGELOG.md b/clients/client-omics/CHANGELOG.md index 065a3ceb507d7..3bc6730bdb580 100644 --- a/clients/client-omics/CHANGELOG.md +++ b/clients/client-omics/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-omics + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-omics diff --git a/clients/client-omics/package.json b/clients/client-omics/package.json index 233d0ddb9a99d..2d37e63e40c20 100644 --- a/clients/client-omics/package.json +++ b/clients/client-omics/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-omics", "description": "AWS SDK for JavaScript Omics Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-omics", diff --git a/clients/client-opensearch/CHANGELOG.md b/clients/client-opensearch/CHANGELOG.md index 6552d98688d5d..3fa7b066ec460 100644 --- a/clients/client-opensearch/CHANGELOG.md +++ b/clients/client-opensearch/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-opensearch + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-opensearch diff --git a/clients/client-opensearch/package.json b/clients/client-opensearch/package.json index 8cc80ed28cb60..69e155e657944 100644 --- a/clients/client-opensearch/package.json +++ b/clients/client-opensearch/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-opensearch", "description": "AWS SDK for JavaScript Opensearch Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-opensearch", diff --git a/clients/client-opensearchserverless/CHANGELOG.md b/clients/client-opensearchserverless/CHANGELOG.md index 8812c380de47e..34450cbecac17 100644 --- a/clients/client-opensearchserverless/CHANGELOG.md +++ b/clients/client-opensearchserverless/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-opensearchserverless + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-opensearchserverless diff --git a/clients/client-opensearchserverless/package.json b/clients/client-opensearchserverless/package.json index b847b8fc698c7..fa2af745df183 100644 --- a/clients/client-opensearchserverless/package.json +++ b/clients/client-opensearchserverless/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-opensearchserverless", "description": "AWS SDK for JavaScript Opensearchserverless Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-opensearchserverless", diff --git a/clients/client-opsworks/CHANGELOG.md b/clients/client-opsworks/CHANGELOG.md index e0bbd787b3d69..f7c097e04ffa7 100644 --- a/clients/client-opsworks/CHANGELOG.md +++ b/clients/client-opsworks/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-opsworks + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-opsworks diff --git a/clients/client-opsworks/package.json b/clients/client-opsworks/package.json index c67c6ef742797..cb9677d6c113b 100644 --- a/clients/client-opsworks/package.json +++ b/clients/client-opsworks/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-opsworks", "description": "AWS SDK for JavaScript Opsworks Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-opsworks", diff --git a/clients/client-opsworkscm/CHANGELOG.md b/clients/client-opsworkscm/CHANGELOG.md index f8a3ce90040d7..dad3c2c30300d 100644 --- a/clients/client-opsworkscm/CHANGELOG.md +++ b/clients/client-opsworkscm/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-opsworkscm + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-opsworkscm diff --git a/clients/client-opsworkscm/package.json b/clients/client-opsworkscm/package.json index ca98f149be35e..68daa9b63bd2f 100644 --- a/clients/client-opsworkscm/package.json +++ b/clients/client-opsworkscm/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-opsworkscm", "description": "AWS SDK for JavaScript Opsworkscm Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-opsworkscm", diff --git a/clients/client-organizations/CHANGELOG.md b/clients/client-organizations/CHANGELOG.md index 09afa89387ad5..f5971d687b384 100644 --- a/clients/client-organizations/CHANGELOG.md +++ b/clients/client-organizations/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-organizations + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-organizations diff --git a/clients/client-organizations/package.json b/clients/client-organizations/package.json index 8e5e84b9e39b5..fa73ae6935bce 100644 --- a/clients/client-organizations/package.json +++ b/clients/client-organizations/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-organizations", "description": "AWS SDK for JavaScript Organizations Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-organizations", diff --git a/clients/client-osis/CHANGELOG.md b/clients/client-osis/CHANGELOG.md index eba4f4bc1bcc1..a731b3e30143d 100644 --- a/clients/client-osis/CHANGELOG.md +++ b/clients/client-osis/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-osis + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-osis diff --git a/clients/client-osis/package.json b/clients/client-osis/package.json index 9ae52348ed228..ae92756206594 100644 --- a/clients/client-osis/package.json +++ b/clients/client-osis/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-osis", "description": "AWS SDK for JavaScript Osis Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-osis", diff --git a/clients/client-outposts/CHANGELOG.md b/clients/client-outposts/CHANGELOG.md index 707d9a6bce643..759408425618e 100644 --- a/clients/client-outposts/CHANGELOG.md +++ b/clients/client-outposts/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-outposts + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-outposts diff --git a/clients/client-outposts/package.json b/clients/client-outposts/package.json index a0849ef11fdd1..d70782a5c91e0 100644 --- a/clients/client-outposts/package.json +++ b/clients/client-outposts/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-outposts", "description": "AWS SDK for JavaScript Outposts Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-outposts", diff --git a/clients/client-panorama/CHANGELOG.md b/clients/client-panorama/CHANGELOG.md index 4ca39e2108a31..f066c8ffd8d76 100644 --- a/clients/client-panorama/CHANGELOG.md +++ b/clients/client-panorama/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-panorama + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-panorama diff --git a/clients/client-panorama/package.json b/clients/client-panorama/package.json index 7816cf1c0961c..d7f8eec016f9c 100644 --- a/clients/client-panorama/package.json +++ b/clients/client-panorama/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-panorama", "description": "AWS SDK for JavaScript Panorama Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-panorama", diff --git a/clients/client-payment-cryptography-data/CHANGELOG.md b/clients/client-payment-cryptography-data/CHANGELOG.md index f72a0cd325901..375d6b8bee90e 100644 --- a/clients/client-payment-cryptography-data/CHANGELOG.md +++ b/clients/client-payment-cryptography-data/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-payment-cryptography-data + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-payment-cryptography-data diff --git a/clients/client-payment-cryptography-data/package.json b/clients/client-payment-cryptography-data/package.json index 25ef12b2e8298..dcd02fc08ae45 100644 --- a/clients/client-payment-cryptography-data/package.json +++ b/clients/client-payment-cryptography-data/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-payment-cryptography-data", "description": "AWS SDK for JavaScript Payment Cryptography Data Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-payment-cryptography-data", diff --git a/clients/client-payment-cryptography/CHANGELOG.md b/clients/client-payment-cryptography/CHANGELOG.md index c841f7706db7c..dabb90beb9162 100644 --- a/clients/client-payment-cryptography/CHANGELOG.md +++ b/clients/client-payment-cryptography/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-payment-cryptography + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-payment-cryptography diff --git a/clients/client-payment-cryptography/package.json b/clients/client-payment-cryptography/package.json index a5ed9570c975e..b478b847b6645 100644 --- a/clients/client-payment-cryptography/package.json +++ b/clients/client-payment-cryptography/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-payment-cryptography", "description": "AWS SDK for JavaScript Payment Cryptography Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-payment-cryptography", diff --git a/clients/client-pca-connector-ad/CHANGELOG.md b/clients/client-pca-connector-ad/CHANGELOG.md index 1bdd53cb0d58c..25a7df8457aea 100644 --- a/clients/client-pca-connector-ad/CHANGELOG.md +++ b/clients/client-pca-connector-ad/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-pca-connector-ad + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-pca-connector-ad diff --git a/clients/client-pca-connector-ad/package.json b/clients/client-pca-connector-ad/package.json index 02aa190aa02b4..dc3fce964dc5d 100644 --- a/clients/client-pca-connector-ad/package.json +++ b/clients/client-pca-connector-ad/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-pca-connector-ad", "description": "AWS SDK for JavaScript Pca Connector Ad Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-pca-connector-ad", diff --git a/clients/client-pca-connector-scep/CHANGELOG.md b/clients/client-pca-connector-scep/CHANGELOG.md index 6eb8ec8be6350..ff22e9827ecd3 100644 --- a/clients/client-pca-connector-scep/CHANGELOG.md +++ b/clients/client-pca-connector-scep/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-pca-connector-scep + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-pca-connector-scep diff --git a/clients/client-pca-connector-scep/package.json b/clients/client-pca-connector-scep/package.json index fea0dfef816b6..f98919a4e6b14 100644 --- a/clients/client-pca-connector-scep/package.json +++ b/clients/client-pca-connector-scep/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-pca-connector-scep", "description": "AWS SDK for JavaScript Pca Connector Scep Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/clients/client-personalize-events/CHANGELOG.md b/clients/client-personalize-events/CHANGELOG.md index 3f6f8aa65c0b2..70e7449aec0e2 100644 --- a/clients/client-personalize-events/CHANGELOG.md +++ b/clients/client-personalize-events/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-personalize-events + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-personalize-events diff --git a/clients/client-personalize-events/package.json b/clients/client-personalize-events/package.json index f848d189227d4..2c7ca164d1a23 100644 --- a/clients/client-personalize-events/package.json +++ b/clients/client-personalize-events/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-personalize-events", "description": "AWS SDK for JavaScript Personalize Events Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-personalize-events", diff --git a/clients/client-personalize-runtime/CHANGELOG.md b/clients/client-personalize-runtime/CHANGELOG.md index b40a3cf4c5e48..8847b11342a1c 100644 --- a/clients/client-personalize-runtime/CHANGELOG.md +++ b/clients/client-personalize-runtime/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-personalize-runtime + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-personalize-runtime diff --git a/clients/client-personalize-runtime/package.json b/clients/client-personalize-runtime/package.json index 8f9c180221c21..c479151bc55b9 100644 --- a/clients/client-personalize-runtime/package.json +++ b/clients/client-personalize-runtime/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-personalize-runtime", "description": "AWS SDK for JavaScript Personalize Runtime Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-personalize-runtime", diff --git a/clients/client-personalize/CHANGELOG.md b/clients/client-personalize/CHANGELOG.md index 38dcfba73effe..f9654e94b7199 100644 --- a/clients/client-personalize/CHANGELOG.md +++ b/clients/client-personalize/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-personalize + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-personalize diff --git a/clients/client-personalize/package.json b/clients/client-personalize/package.json index 6f45f649bbebe..9d6691908d021 100644 --- a/clients/client-personalize/package.json +++ b/clients/client-personalize/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-personalize", "description": "AWS SDK for JavaScript Personalize Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-personalize", diff --git a/clients/client-pi/CHANGELOG.md b/clients/client-pi/CHANGELOG.md index 31ccfee6faf13..4cbbd89da3d87 100644 --- a/clients/client-pi/CHANGELOG.md +++ b/clients/client-pi/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-pi + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-pi diff --git a/clients/client-pi/package.json b/clients/client-pi/package.json index 671bc70cc21e0..db1319dd4e7bc 100644 --- a/clients/client-pi/package.json +++ b/clients/client-pi/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-pi", "description": "AWS SDK for JavaScript Pi Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-pi", diff --git a/clients/client-pinpoint-email/CHANGELOG.md b/clients/client-pinpoint-email/CHANGELOG.md index 074bc4e960b56..1fa0443423c1a 100644 --- a/clients/client-pinpoint-email/CHANGELOG.md +++ b/clients/client-pinpoint-email/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-pinpoint-email + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-pinpoint-email diff --git a/clients/client-pinpoint-email/package.json b/clients/client-pinpoint-email/package.json index 575074535d273..1da506360881d 100644 --- a/clients/client-pinpoint-email/package.json +++ b/clients/client-pinpoint-email/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-pinpoint-email", "description": "AWS SDK for JavaScript Pinpoint Email Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-pinpoint-email", diff --git a/clients/client-pinpoint-sms-voice-v2/CHANGELOG.md b/clients/client-pinpoint-sms-voice-v2/CHANGELOG.md index bfca508e211a5..fb724121257f0 100644 --- a/clients/client-pinpoint-sms-voice-v2/CHANGELOG.md +++ b/clients/client-pinpoint-sms-voice-v2/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-pinpoint-sms-voice-v2 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-pinpoint-sms-voice-v2 diff --git a/clients/client-pinpoint-sms-voice-v2/package.json b/clients/client-pinpoint-sms-voice-v2/package.json index 8c00874c5f351..ba97407696f74 100644 --- a/clients/client-pinpoint-sms-voice-v2/package.json +++ b/clients/client-pinpoint-sms-voice-v2/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-pinpoint-sms-voice-v2", "description": "AWS SDK for JavaScript Pinpoint Sms Voice V2 Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-pinpoint-sms-voice-v2", diff --git a/clients/client-pinpoint-sms-voice/CHANGELOG.md b/clients/client-pinpoint-sms-voice/CHANGELOG.md index a9d6290470fb5..e4fead9b0a832 100644 --- a/clients/client-pinpoint-sms-voice/CHANGELOG.md +++ b/clients/client-pinpoint-sms-voice/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-pinpoint-sms-voice + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-pinpoint-sms-voice diff --git a/clients/client-pinpoint-sms-voice/package.json b/clients/client-pinpoint-sms-voice/package.json index 01e7956923c24..efadac9abf361 100644 --- a/clients/client-pinpoint-sms-voice/package.json +++ b/clients/client-pinpoint-sms-voice/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-pinpoint-sms-voice", "description": "AWS SDK for JavaScript Pinpoint Sms Voice Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-pinpoint-sms-voice", diff --git a/clients/client-pinpoint/CHANGELOG.md b/clients/client-pinpoint/CHANGELOG.md index 336770f2944e9..a9e8db2dc17b7 100644 --- a/clients/client-pinpoint/CHANGELOG.md +++ b/clients/client-pinpoint/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-pinpoint + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-pinpoint diff --git a/clients/client-pinpoint/package.json b/clients/client-pinpoint/package.json index 46c3383a25055..b6bf3124ca5c1 100644 --- a/clients/client-pinpoint/package.json +++ b/clients/client-pinpoint/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-pinpoint", "description": "AWS SDK for JavaScript Pinpoint Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-pinpoint", diff --git a/clients/client-pipes/CHANGELOG.md b/clients/client-pipes/CHANGELOG.md index 5080c4f6635aa..378c3b5ab5b44 100644 --- a/clients/client-pipes/CHANGELOG.md +++ b/clients/client-pipes/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-pipes + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-pipes diff --git a/clients/client-pipes/package.json b/clients/client-pipes/package.json index 12b17ecbcfc5a..44003db362361 100644 --- a/clients/client-pipes/package.json +++ b/clients/client-pipes/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-pipes", "description": "AWS SDK for JavaScript Pipes Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-pipes", diff --git a/clients/client-polly/CHANGELOG.md b/clients/client-polly/CHANGELOG.md index 49e41743cc899..c9ef4d882bd95 100644 --- a/clients/client-polly/CHANGELOG.md +++ b/clients/client-polly/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-polly + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-polly diff --git a/clients/client-polly/package.json b/clients/client-polly/package.json index 061b6131b2c07..5427b086ddf81 100644 --- a/clients/client-polly/package.json +++ b/clients/client-polly/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-polly", "description": "AWS SDK for JavaScript Polly Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-polly", diff --git a/clients/client-pricing/CHANGELOG.md b/clients/client-pricing/CHANGELOG.md index f15e757d46aea..2f03aa7aa5217 100644 --- a/clients/client-pricing/CHANGELOG.md +++ b/clients/client-pricing/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-pricing + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-pricing diff --git a/clients/client-pricing/package.json b/clients/client-pricing/package.json index e9faa970fea51..ba2228b791e84 100644 --- a/clients/client-pricing/package.json +++ b/clients/client-pricing/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-pricing", "description": "AWS SDK for JavaScript Pricing Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-pricing", diff --git a/clients/client-privatenetworks/CHANGELOG.md b/clients/client-privatenetworks/CHANGELOG.md index 6e9a4b8d1230d..dc2f9c53a1a4e 100644 --- a/clients/client-privatenetworks/CHANGELOG.md +++ b/clients/client-privatenetworks/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-privatenetworks + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-privatenetworks diff --git a/clients/client-privatenetworks/package.json b/clients/client-privatenetworks/package.json index 42891a59f2b80..327a514b0cdea 100644 --- a/clients/client-privatenetworks/package.json +++ b/clients/client-privatenetworks/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-privatenetworks", "description": "AWS SDK for JavaScript Privatenetworks Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-privatenetworks", diff --git a/clients/client-proton/CHANGELOG.md b/clients/client-proton/CHANGELOG.md index bff355f9faf19..3cd1f6fa783f2 100644 --- a/clients/client-proton/CHANGELOG.md +++ b/clients/client-proton/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-proton + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-proton diff --git a/clients/client-proton/package.json b/clients/client-proton/package.json index 1d2546eedf7e9..e07134137ea3e 100644 --- a/clients/client-proton/package.json +++ b/clients/client-proton/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-proton", "description": "AWS SDK for JavaScript Proton Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-proton", diff --git a/clients/client-qapps/CHANGELOG.md b/clients/client-qapps/CHANGELOG.md index e7da099de7859..c40bde2b30314 100644 --- a/clients/client-qapps/CHANGELOG.md +++ b/clients/client-qapps/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-qapps + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-qapps diff --git a/clients/client-qapps/package.json b/clients/client-qapps/package.json index 97ad76322fb9f..30d18e6930aac 100644 --- a/clients/client-qapps/package.json +++ b/clients/client-qapps/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-qapps", "description": "AWS SDK for JavaScript Qapps Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/clients/client-qbusiness/CHANGELOG.md b/clients/client-qbusiness/CHANGELOG.md index ccd37b9ab83b8..b3f0294082127 100644 --- a/clients/client-qbusiness/CHANGELOG.md +++ b/clients/client-qbusiness/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-qbusiness + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-qbusiness diff --git a/clients/client-qbusiness/package.json b/clients/client-qbusiness/package.json index 9a61fa1b0216d..997e3062ea2a2 100644 --- a/clients/client-qbusiness/package.json +++ b/clients/client-qbusiness/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-qbusiness", "description": "AWS SDK for JavaScript Qbusiness Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-qbusiness", diff --git a/clients/client-qconnect/CHANGELOG.md b/clients/client-qconnect/CHANGELOG.md index a31b59b67cd33..ca048ad629e15 100644 --- a/clients/client-qconnect/CHANGELOG.md +++ b/clients/client-qconnect/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-qconnect + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-qconnect diff --git a/clients/client-qconnect/package.json b/clients/client-qconnect/package.json index f65077a47fc1b..357c7733a8653 100644 --- a/clients/client-qconnect/package.json +++ b/clients/client-qconnect/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-qconnect", "description": "AWS SDK for JavaScript Qconnect Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-qconnect", diff --git a/clients/client-qldb-session/CHANGELOG.md b/clients/client-qldb-session/CHANGELOG.md index b7dedd286c9f1..794923155d182 100644 --- a/clients/client-qldb-session/CHANGELOG.md +++ b/clients/client-qldb-session/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-qldb-session + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-qldb-session diff --git a/clients/client-qldb-session/package.json b/clients/client-qldb-session/package.json index 5cfe10f68610a..6c2a2fdf6fe8e 100644 --- a/clients/client-qldb-session/package.json +++ b/clients/client-qldb-session/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-qldb-session", "description": "AWS SDK for JavaScript Qldb Session Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-qldb-session", diff --git a/clients/client-qldb/CHANGELOG.md b/clients/client-qldb/CHANGELOG.md index acf9b3e7ff9b5..c759cb2c304e9 100644 --- a/clients/client-qldb/CHANGELOG.md +++ b/clients/client-qldb/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-qldb + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-qldb diff --git a/clients/client-qldb/package.json b/clients/client-qldb/package.json index cef65524f800c..aa6e814d5aa17 100644 --- a/clients/client-qldb/package.json +++ b/clients/client-qldb/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-qldb", "description": "AWS SDK for JavaScript Qldb Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-qldb", diff --git a/clients/client-quicksight/CHANGELOG.md b/clients/client-quicksight/CHANGELOG.md index e44cea12d5dfa..cb06e4e8152e0 100644 --- a/clients/client-quicksight/CHANGELOG.md +++ b/clients/client-quicksight/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-quicksight + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-quicksight diff --git a/clients/client-quicksight/package.json b/clients/client-quicksight/package.json index d7414a103a0dc..242550abdbcd0 100644 --- a/clients/client-quicksight/package.json +++ b/clients/client-quicksight/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-quicksight", "description": "AWS SDK for JavaScript Quicksight Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-quicksight", diff --git a/clients/client-ram/CHANGELOG.md b/clients/client-ram/CHANGELOG.md index f7f5c75c79561..a566eccd90f63 100644 --- a/clients/client-ram/CHANGELOG.md +++ b/clients/client-ram/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-ram + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-ram diff --git a/clients/client-ram/package.json b/clients/client-ram/package.json index 75d8fb3f8406c..e3f81143ebd6d 100644 --- a/clients/client-ram/package.json +++ b/clients/client-ram/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-ram", "description": "AWS SDK for JavaScript Ram Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-ram", diff --git a/clients/client-rbin/CHANGELOG.md b/clients/client-rbin/CHANGELOG.md index 4f9ec88042d8a..ed11745966241 100644 --- a/clients/client-rbin/CHANGELOG.md +++ b/clients/client-rbin/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-rbin + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-rbin diff --git a/clients/client-rbin/package.json b/clients/client-rbin/package.json index 85aa2f8a9dbd2..31ab29f13e65d 100644 --- a/clients/client-rbin/package.json +++ b/clients/client-rbin/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-rbin", "description": "AWS SDK for JavaScript Rbin Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-rbin", diff --git a/clients/client-rds-data/CHANGELOG.md b/clients/client-rds-data/CHANGELOG.md index 21862197ea8fb..7034f78dc915c 100644 --- a/clients/client-rds-data/CHANGELOG.md +++ b/clients/client-rds-data/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-rds-data + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-rds-data diff --git a/clients/client-rds-data/package.json b/clients/client-rds-data/package.json index eb87deda8dc53..075ec84b7708a 100644 --- a/clients/client-rds-data/package.json +++ b/clients/client-rds-data/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-rds-data", "description": "AWS SDK for JavaScript Rds Data Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-rds-data", diff --git a/clients/client-rds/CHANGELOG.md b/clients/client-rds/CHANGELOG.md index 700bd3eeff9f3..586288d991730 100644 --- a/clients/client-rds/CHANGELOG.md +++ b/clients/client-rds/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-rds + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-rds diff --git a/clients/client-rds/package.json b/clients/client-rds/package.json index 6c0705f9d20f2..bbd259f7f1406 100644 --- a/clients/client-rds/package.json +++ b/clients/client-rds/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-rds", "description": "AWS SDK for JavaScript Rds Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-rds", diff --git a/clients/client-redshift-data/CHANGELOG.md b/clients/client-redshift-data/CHANGELOG.md index e9b5ce4f49532..7f4b3013d99bd 100644 --- a/clients/client-redshift-data/CHANGELOG.md +++ b/clients/client-redshift-data/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-redshift-data + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-redshift-data diff --git a/clients/client-redshift-data/package.json b/clients/client-redshift-data/package.json index 798d4f32acbee..792953d3bba49 100644 --- a/clients/client-redshift-data/package.json +++ b/clients/client-redshift-data/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-redshift-data", "description": "AWS SDK for JavaScript Redshift Data Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-redshift-data", diff --git a/clients/client-redshift-serverless/CHANGELOG.md b/clients/client-redshift-serverless/CHANGELOG.md index 5d39c6aac5c64..175cd2ffc0620 100644 --- a/clients/client-redshift-serverless/CHANGELOG.md +++ b/clients/client-redshift-serverless/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-redshift-serverless + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-redshift-serverless diff --git a/clients/client-redshift-serverless/package.json b/clients/client-redshift-serverless/package.json index e59bc7d128172..13a3fdeb7323f 100644 --- a/clients/client-redshift-serverless/package.json +++ b/clients/client-redshift-serverless/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-redshift-serverless", "description": "AWS SDK for JavaScript Redshift Serverless Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-redshift-serverless", diff --git a/clients/client-redshift/CHANGELOG.md b/clients/client-redshift/CHANGELOG.md index 72e56672eccc8..23deb991ff385 100644 --- a/clients/client-redshift/CHANGELOG.md +++ b/clients/client-redshift/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-redshift + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-redshift diff --git a/clients/client-redshift/package.json b/clients/client-redshift/package.json index fa448d7eb53ff..18c4e0a0db77e 100644 --- a/clients/client-redshift/package.json +++ b/clients/client-redshift/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-redshift", "description": "AWS SDK for JavaScript Redshift Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-redshift", diff --git a/clients/client-rekognition/CHANGELOG.md b/clients/client-rekognition/CHANGELOG.md index 8a642c405621b..245f844e90ccb 100644 --- a/clients/client-rekognition/CHANGELOG.md +++ b/clients/client-rekognition/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-rekognition + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-rekognition diff --git a/clients/client-rekognition/package.json b/clients/client-rekognition/package.json index 4a685001f5700..b5fdb89c11fe6 100644 --- a/clients/client-rekognition/package.json +++ b/clients/client-rekognition/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-rekognition", "description": "AWS SDK for JavaScript Rekognition Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-rekognition", diff --git a/clients/client-rekognitionstreaming/CHANGELOG.md b/clients/client-rekognitionstreaming/CHANGELOG.md index ebba605260bd7..beae4cd5dc06b 100644 --- a/clients/client-rekognitionstreaming/CHANGELOG.md +++ b/clients/client-rekognitionstreaming/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-rekognitionstreaming + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-rekognitionstreaming diff --git a/clients/client-rekognitionstreaming/package.json b/clients/client-rekognitionstreaming/package.json index 4c0fb7b0b4270..9ebce6a6483ad 100644 --- a/clients/client-rekognitionstreaming/package.json +++ b/clients/client-rekognitionstreaming/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-rekognitionstreaming", "description": "AWS SDK for JavaScript Rekognitionstreaming Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-rekognitionstreaming", diff --git a/clients/client-repostspace/CHANGELOG.md b/clients/client-repostspace/CHANGELOG.md index bdc83abc450d0..5d873341c0bd4 100644 --- a/clients/client-repostspace/CHANGELOG.md +++ b/clients/client-repostspace/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-repostspace + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-repostspace diff --git a/clients/client-repostspace/package.json b/clients/client-repostspace/package.json index 77722670b0a26..2fdd031cd9826 100644 --- a/clients/client-repostspace/package.json +++ b/clients/client-repostspace/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-repostspace", "description": "AWS SDK for JavaScript Repostspace Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-repostspace", diff --git a/clients/client-resiliencehub/CHANGELOG.md b/clients/client-resiliencehub/CHANGELOG.md index 36a50280cbc86..fe21cb916d9be 100644 --- a/clients/client-resiliencehub/CHANGELOG.md +++ b/clients/client-resiliencehub/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-resiliencehub + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-resiliencehub diff --git a/clients/client-resiliencehub/package.json b/clients/client-resiliencehub/package.json index ea53ff1999229..19d00c55e0a21 100644 --- a/clients/client-resiliencehub/package.json +++ b/clients/client-resiliencehub/package.json @@ -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.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-resiliencehub", diff --git a/clients/client-resource-explorer-2/CHANGELOG.md b/clients/client-resource-explorer-2/CHANGELOG.md index ddc6f2a5353bb..69ce24d667c14 100644 --- a/clients/client-resource-explorer-2/CHANGELOG.md +++ b/clients/client-resource-explorer-2/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-resource-explorer-2 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-resource-explorer-2 diff --git a/clients/client-resource-explorer-2/package.json b/clients/client-resource-explorer-2/package.json index c626401579e8f..811fde4dca72b 100644 --- a/clients/client-resource-explorer-2/package.json +++ b/clients/client-resource-explorer-2/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-resource-explorer-2", "description": "AWS SDK for JavaScript Resource Explorer 2 Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-resource-explorer-2", diff --git a/clients/client-resource-groups-tagging-api/CHANGELOG.md b/clients/client-resource-groups-tagging-api/CHANGELOG.md index 2b7421a7e495e..826e79951c3ef 100644 --- a/clients/client-resource-groups-tagging-api/CHANGELOG.md +++ b/clients/client-resource-groups-tagging-api/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-resource-groups-tagging-api + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-resource-groups-tagging-api diff --git a/clients/client-resource-groups-tagging-api/package.json b/clients/client-resource-groups-tagging-api/package.json index 3ffe8861ce0f8..2d9a89e29819d 100644 --- a/clients/client-resource-groups-tagging-api/package.json +++ b/clients/client-resource-groups-tagging-api/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-resource-groups-tagging-api", "description": "AWS SDK for JavaScript Resource Groups Tagging Api Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-resource-groups-tagging-api", diff --git a/clients/client-resource-groups/CHANGELOG.md b/clients/client-resource-groups/CHANGELOG.md index 909575f0a1877..50a342bb80dbc 100644 --- a/clients/client-resource-groups/CHANGELOG.md +++ b/clients/client-resource-groups/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-resource-groups + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-resource-groups diff --git a/clients/client-resource-groups/package.json b/clients/client-resource-groups/package.json index 992ebf3f75f6d..8700e5c136f01 100644 --- a/clients/client-resource-groups/package.json +++ b/clients/client-resource-groups/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-resource-groups", "description": "AWS SDK for JavaScript Resource Groups Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-resource-groups", diff --git a/clients/client-robomaker/CHANGELOG.md b/clients/client-robomaker/CHANGELOG.md index 16ba77c9ecdff..6e724536e49cd 100644 --- a/clients/client-robomaker/CHANGELOG.md +++ b/clients/client-robomaker/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-robomaker + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-robomaker diff --git a/clients/client-robomaker/package.json b/clients/client-robomaker/package.json index 69a9fae1cc7c3..c4d3793c91fe1 100644 --- a/clients/client-robomaker/package.json +++ b/clients/client-robomaker/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-robomaker", "description": "AWS SDK for JavaScript Robomaker Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-robomaker", diff --git a/clients/client-rolesanywhere/CHANGELOG.md b/clients/client-rolesanywhere/CHANGELOG.md index 729da8961b9e8..ce505dbdc4301 100644 --- a/clients/client-rolesanywhere/CHANGELOG.md +++ b/clients/client-rolesanywhere/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-rolesanywhere + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-rolesanywhere diff --git a/clients/client-rolesanywhere/package.json b/clients/client-rolesanywhere/package.json index 5c85b0c495394..6a32567342b80 100644 --- a/clients/client-rolesanywhere/package.json +++ b/clients/client-rolesanywhere/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-rolesanywhere", "description": "AWS SDK for JavaScript Rolesanywhere Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-rolesanywhere", diff --git a/clients/client-route-53-domains/CHANGELOG.md b/clients/client-route-53-domains/CHANGELOG.md index 4688e26f42f81..5820304802549 100644 --- a/clients/client-route-53-domains/CHANGELOG.md +++ b/clients/client-route-53-domains/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-route-53-domains + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-route-53-domains diff --git a/clients/client-route-53-domains/package.json b/clients/client-route-53-domains/package.json index 76c82a644501c..e4076808ed918 100644 --- a/clients/client-route-53-domains/package.json +++ b/clients/client-route-53-domains/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-route-53-domains", "description": "AWS SDK for JavaScript Route 53 Domains Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-route-53-domains", diff --git a/clients/client-route-53/CHANGELOG.md b/clients/client-route-53/CHANGELOG.md index 796e2d9ed7358..c7d9b6ae4af2b 100644 --- a/clients/client-route-53/CHANGELOG.md +++ b/clients/client-route-53/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-route-53 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-route-53 diff --git a/clients/client-route-53/package.json b/clients/client-route-53/package.json index 8e650020b2267..5b3ccdd89a767 100644 --- a/clients/client-route-53/package.json +++ b/clients/client-route-53/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-route-53", "description": "AWS SDK for JavaScript Route 53 Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-route-53", diff --git a/clients/client-route53-recovery-cluster/CHANGELOG.md b/clients/client-route53-recovery-cluster/CHANGELOG.md index 1e62c5a85a93a..ae4b46e92789a 100644 --- a/clients/client-route53-recovery-cluster/CHANGELOG.md +++ b/clients/client-route53-recovery-cluster/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster diff --git a/clients/client-route53-recovery-cluster/package.json b/clients/client-route53-recovery-cluster/package.json index 9deffc75d3ab4..1278de9cb12b6 100644 --- a/clients/client-route53-recovery-cluster/package.json +++ b/clients/client-route53-recovery-cluster/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-route53-recovery-cluster", "description": "AWS SDK for JavaScript Route53 Recovery Cluster Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-route53-recovery-cluster", diff --git a/clients/client-route53-recovery-control-config/CHANGELOG.md b/clients/client-route53-recovery-control-config/CHANGELOG.md index 595169129e759..b9bf625246a19 100644 --- a/clients/client-route53-recovery-control-config/CHANGELOG.md +++ b/clients/client-route53-recovery-control-config/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-route53-recovery-control-config + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-route53-recovery-control-config diff --git a/clients/client-route53-recovery-control-config/package.json b/clients/client-route53-recovery-control-config/package.json index 5a223b539fe5f..c9fbbc8641aa0 100644 --- a/clients/client-route53-recovery-control-config/package.json +++ b/clients/client-route53-recovery-control-config/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-route53-recovery-control-config", "description": "AWS SDK for JavaScript Route53 Recovery Control Config Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-route53-recovery-control-config", diff --git a/clients/client-route53-recovery-readiness/CHANGELOG.md b/clients/client-route53-recovery-readiness/CHANGELOG.md index a32270fb2d5db..fe917c8c9d105 100644 --- a/clients/client-route53-recovery-readiness/CHANGELOG.md +++ b/clients/client-route53-recovery-readiness/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-route53-recovery-readiness + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-route53-recovery-readiness diff --git a/clients/client-route53-recovery-readiness/package.json b/clients/client-route53-recovery-readiness/package.json index 0922b3ef48a4f..09ca248d96256 100644 --- a/clients/client-route53-recovery-readiness/package.json +++ b/clients/client-route53-recovery-readiness/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-route53-recovery-readiness", "description": "AWS SDK for JavaScript Route53 Recovery Readiness Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-route53-recovery-readiness", diff --git a/clients/client-route53profiles/CHANGELOG.md b/clients/client-route53profiles/CHANGELOG.md index 6b471cbd3ff97..b267f044164fc 100644 --- a/clients/client-route53profiles/CHANGELOG.md +++ b/clients/client-route53profiles/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-route53profiles + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-route53profiles diff --git a/clients/client-route53profiles/package.json b/clients/client-route53profiles/package.json index 5dda0a758cb8d..224feb4b5c52f 100644 --- a/clients/client-route53profiles/package.json +++ b/clients/client-route53profiles/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-route53profiles", "description": "AWS SDK for JavaScript Route53profiles Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/clients/client-route53resolver/CHANGELOG.md b/clients/client-route53resolver/CHANGELOG.md index dea042592a426..e01aa9491eb25 100644 --- a/clients/client-route53resolver/CHANGELOG.md +++ b/clients/client-route53resolver/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-route53resolver + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-route53resolver diff --git a/clients/client-route53resolver/package.json b/clients/client-route53resolver/package.json index cc68ea0839713..061f5355baf81 100644 --- a/clients/client-route53resolver/package.json +++ b/clients/client-route53resolver/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-route53resolver", "description": "AWS SDK for JavaScript Route53resolver Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-route53resolver", diff --git a/clients/client-rum/CHANGELOG.md b/clients/client-rum/CHANGELOG.md index d7dd55d50fc3d..d72369698c59e 100644 --- a/clients/client-rum/CHANGELOG.md +++ b/clients/client-rum/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-rum + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-rum diff --git a/clients/client-rum/package.json b/clients/client-rum/package.json index df3a513201262..aefe90b20b767 100644 --- a/clients/client-rum/package.json +++ b/clients/client-rum/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-rum", "description": "AWS SDK for JavaScript Rum Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-rum", diff --git a/clients/client-s3-control/CHANGELOG.md b/clients/client-s3-control/CHANGELOG.md index be981c4e1c29a..e6d8e61d457e3 100644 --- a/clients/client-s3-control/CHANGELOG.md +++ b/clients/client-s3-control/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-s3-control + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-s3-control diff --git a/clients/client-s3-control/package.json b/clients/client-s3-control/package.json index 4a669dc5a5417..5f4c129e72ee4 100644 --- a/clients/client-s3-control/package.json +++ b/clients/client-s3-control/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-s3-control", "description": "AWS SDK for JavaScript S3 Control Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-s3-control", diff --git a/clients/client-s3/CHANGELOG.md b/clients/client-s3/CHANGELOG.md index 7e05e399aed8e..8537852ca1ae6 100644 --- a/clients/client-s3/CHANGELOG.md +++ b/clients/client-s3/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + + +### Features + +* **client-s3:** Amazon Simple Storage Service / Features : Adds support for pagination in the S3 ListBuckets API. ([f31c6ea](https://github.com/aws/aws-sdk-js-v3/commit/f31c6ea7efbf19998274e65d1cd87380ff21f191)) + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-s3 diff --git a/clients/client-s3/package.json b/clients/client-s3/package.json index 7e178378f9517..b2543faa3c5b0 100644 --- a/clients/client-s3/package.json +++ b/clients/client-s3/package.json @@ -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.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-s3", diff --git a/clients/client-s3outposts/CHANGELOG.md b/clients/client-s3outposts/CHANGELOG.md index d8ef42b7bcfee..a84b1b2fac80c 100644 --- a/clients/client-s3outposts/CHANGELOG.md +++ b/clients/client-s3outposts/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-s3outposts + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-s3outposts diff --git a/clients/client-s3outposts/package.json b/clients/client-s3outposts/package.json index f4e62991d9ada..7ff4ce139ed39 100644 --- a/clients/client-s3outposts/package.json +++ b/clients/client-s3outposts/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-s3outposts", "description": "AWS SDK for JavaScript S3outposts Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-s3outposts", diff --git a/clients/client-sagemaker-a2i-runtime/CHANGELOG.md b/clients/client-sagemaker-a2i-runtime/CHANGELOG.md index 0240cd56891a3..9f7dfb0ca5af2 100644 --- a/clients/client-sagemaker-a2i-runtime/CHANGELOG.md +++ b/clients/client-sagemaker-a2i-runtime/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-sagemaker-a2i-runtime + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-sagemaker-a2i-runtime diff --git a/clients/client-sagemaker-a2i-runtime/package.json b/clients/client-sagemaker-a2i-runtime/package.json index ab24eddaae084..5eb172e28899f 100644 --- a/clients/client-sagemaker-a2i-runtime/package.json +++ b/clients/client-sagemaker-a2i-runtime/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-sagemaker-a2i-runtime", "description": "AWS SDK for JavaScript Sagemaker A2i Runtime Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-sagemaker-a2i-runtime", diff --git a/clients/client-sagemaker-edge/CHANGELOG.md b/clients/client-sagemaker-edge/CHANGELOG.md index da4d4f1e6217a..d68cfcc4f188e 100644 --- a/clients/client-sagemaker-edge/CHANGELOG.md +++ b/clients/client-sagemaker-edge/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-sagemaker-edge + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-sagemaker-edge diff --git a/clients/client-sagemaker-edge/package.json b/clients/client-sagemaker-edge/package.json index f0e7f732921ad..373965cd01810 100644 --- a/clients/client-sagemaker-edge/package.json +++ b/clients/client-sagemaker-edge/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-sagemaker-edge", "description": "AWS SDK for JavaScript Sagemaker Edge Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-sagemaker-edge", diff --git a/clients/client-sagemaker-featurestore-runtime/CHANGELOG.md b/clients/client-sagemaker-featurestore-runtime/CHANGELOG.md index b317a2afafcca..122d99d003cae 100644 --- a/clients/client-sagemaker-featurestore-runtime/CHANGELOG.md +++ b/clients/client-sagemaker-featurestore-runtime/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-sagemaker-featurestore-runtime + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-sagemaker-featurestore-runtime diff --git a/clients/client-sagemaker-featurestore-runtime/package.json b/clients/client-sagemaker-featurestore-runtime/package.json index 26cac6d94784d..122f2461f9fda 100644 --- a/clients/client-sagemaker-featurestore-runtime/package.json +++ b/clients/client-sagemaker-featurestore-runtime/package.json @@ -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.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-sagemaker-featurestore-runtime", diff --git a/clients/client-sagemaker-geospatial/CHANGELOG.md b/clients/client-sagemaker-geospatial/CHANGELOG.md index cef57bb1ed7f6..8e9271edb3668 100644 --- a/clients/client-sagemaker-geospatial/CHANGELOG.md +++ b/clients/client-sagemaker-geospatial/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-sagemaker-geospatial + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-sagemaker-geospatial diff --git a/clients/client-sagemaker-geospatial/package.json b/clients/client-sagemaker-geospatial/package.json index 071b583ee0d5c..cf02a97b8f441 100644 --- a/clients/client-sagemaker-geospatial/package.json +++ b/clients/client-sagemaker-geospatial/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-sagemaker-geospatial", "description": "AWS SDK for JavaScript Sagemaker Geospatial Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-sagemaker-geospatial", diff --git a/clients/client-sagemaker-metrics/CHANGELOG.md b/clients/client-sagemaker-metrics/CHANGELOG.md index dc61b39333ac0..c3b6e30a230f4 100644 --- a/clients/client-sagemaker-metrics/CHANGELOG.md +++ b/clients/client-sagemaker-metrics/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-sagemaker-metrics + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-sagemaker-metrics diff --git a/clients/client-sagemaker-metrics/package.json b/clients/client-sagemaker-metrics/package.json index 7f7f2750fda6c..13f602348ae9c 100644 --- a/clients/client-sagemaker-metrics/package.json +++ b/clients/client-sagemaker-metrics/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-sagemaker-metrics", "description": "AWS SDK for JavaScript Sagemaker Metrics Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-sagemaker-metrics", diff --git a/clients/client-sagemaker-runtime/CHANGELOG.md b/clients/client-sagemaker-runtime/CHANGELOG.md index 95ac19a739166..9538aa90789eb 100644 --- a/clients/client-sagemaker-runtime/CHANGELOG.md +++ b/clients/client-sagemaker-runtime/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-sagemaker-runtime + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-sagemaker-runtime diff --git a/clients/client-sagemaker-runtime/package.json b/clients/client-sagemaker-runtime/package.json index da52e04df5e60..10b99d1994edc 100644 --- a/clients/client-sagemaker-runtime/package.json +++ b/clients/client-sagemaker-runtime/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-sagemaker-runtime", "description": "AWS SDK for JavaScript Sagemaker Runtime Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-sagemaker-runtime", diff --git a/clients/client-sagemaker/CHANGELOG.md b/clients/client-sagemaker/CHANGELOG.md index c93471aa5fe95..f13315de677d6 100644 --- a/clients/client-sagemaker/CHANGELOG.md +++ b/clients/client-sagemaker/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-sagemaker + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-sagemaker diff --git a/clients/client-sagemaker/package.json b/clients/client-sagemaker/package.json index 03f5daf3d13d6..4a9a95aade142 100644 --- a/clients/client-sagemaker/package.json +++ b/clients/client-sagemaker/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-sagemaker", "description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-sagemaker", diff --git a/clients/client-savingsplans/CHANGELOG.md b/clients/client-savingsplans/CHANGELOG.md index 8ee85774c3849..03459eea22e49 100644 --- a/clients/client-savingsplans/CHANGELOG.md +++ b/clients/client-savingsplans/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-savingsplans + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-savingsplans diff --git a/clients/client-savingsplans/package.json b/clients/client-savingsplans/package.json index 635000447986e..ead8086a9d853 100644 --- a/clients/client-savingsplans/package.json +++ b/clients/client-savingsplans/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-savingsplans", "description": "AWS SDK for JavaScript Savingsplans Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-savingsplans", diff --git a/clients/client-scheduler/CHANGELOG.md b/clients/client-scheduler/CHANGELOG.md index 3a108a95de07f..9ffefc77e04d7 100644 --- a/clients/client-scheduler/CHANGELOG.md +++ b/clients/client-scheduler/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-scheduler + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-scheduler diff --git a/clients/client-scheduler/package.json b/clients/client-scheduler/package.json index bd997fc594413..fafa4743c3f52 100644 --- a/clients/client-scheduler/package.json +++ b/clients/client-scheduler/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-scheduler", "description": "AWS SDK for JavaScript Scheduler Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-scheduler", diff --git a/clients/client-schemas/CHANGELOG.md b/clients/client-schemas/CHANGELOG.md index 897d7fe304fc1..e9ab67e0c427a 100644 --- a/clients/client-schemas/CHANGELOG.md +++ b/clients/client-schemas/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-schemas + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-schemas diff --git a/clients/client-schemas/package.json b/clients/client-schemas/package.json index 40b7bcf3910a0..4ca96526ed080 100644 --- a/clients/client-schemas/package.json +++ b/clients/client-schemas/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-schemas", "description": "AWS SDK for JavaScript Schemas Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-schemas", diff --git a/clients/client-secrets-manager/CHANGELOG.md b/clients/client-secrets-manager/CHANGELOG.md index a317667a8505a..c0fc4167e086a 100644 --- a/clients/client-secrets-manager/CHANGELOG.md +++ b/clients/client-secrets-manager/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-secrets-manager + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-secrets-manager diff --git a/clients/client-secrets-manager/package.json b/clients/client-secrets-manager/package.json index adabf3b4ff272..257118f7cec84 100644 --- a/clients/client-secrets-manager/package.json +++ b/clients/client-secrets-manager/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-secrets-manager", "description": "AWS SDK for JavaScript Secrets Manager Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-secrets-manager", diff --git a/clients/client-securityhub/CHANGELOG.md b/clients/client-securityhub/CHANGELOG.md index 667728860715e..3491e0ef58c39 100644 --- a/clients/client-securityhub/CHANGELOG.md +++ b/clients/client-securityhub/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-securityhub + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-securityhub diff --git a/clients/client-securityhub/package.json b/clients/client-securityhub/package.json index 484606207ce20..6fc6cb6f65156 100644 --- a/clients/client-securityhub/package.json +++ b/clients/client-securityhub/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-securityhub", "description": "AWS SDK for JavaScript Securityhub Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-securityhub", diff --git a/clients/client-securitylake/CHANGELOG.md b/clients/client-securitylake/CHANGELOG.md index 95fb3283402fd..9068144ecddc2 100644 --- a/clients/client-securitylake/CHANGELOG.md +++ b/clients/client-securitylake/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-securitylake + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-securitylake diff --git a/clients/client-securitylake/package.json b/clients/client-securitylake/package.json index e0660867820ac..b8d938c6b7bfe 100644 --- a/clients/client-securitylake/package.json +++ b/clients/client-securitylake/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-securitylake", "description": "AWS SDK for JavaScript Securitylake Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-securitylake", diff --git a/clients/client-serverlessapplicationrepository/CHANGELOG.md b/clients/client-serverlessapplicationrepository/CHANGELOG.md index 31559fa38d93a..bdc026af84432 100644 --- a/clients/client-serverlessapplicationrepository/CHANGELOG.md +++ b/clients/client-serverlessapplicationrepository/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-serverlessapplicationrepository + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-serverlessapplicationrepository diff --git a/clients/client-serverlessapplicationrepository/package.json b/clients/client-serverlessapplicationrepository/package.json index 4f5aee83f1be9..e778dbb5a9460 100644 --- a/clients/client-serverlessapplicationrepository/package.json +++ b/clients/client-serverlessapplicationrepository/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-serverlessapplicationrepository", "description": "AWS SDK for JavaScript Serverlessapplicationrepository Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-serverlessapplicationrepository", diff --git a/clients/client-service-catalog-appregistry/CHANGELOG.md b/clients/client-service-catalog-appregistry/CHANGELOG.md index 90fb4f9956efb..592472cc76eb5 100644 --- a/clients/client-service-catalog-appregistry/CHANGELOG.md +++ b/clients/client-service-catalog-appregistry/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-service-catalog-appregistry + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-service-catalog-appregistry diff --git a/clients/client-service-catalog-appregistry/package.json b/clients/client-service-catalog-appregistry/package.json index 31dd8602de9ea..30916ae5f1641 100644 --- a/clients/client-service-catalog-appregistry/package.json +++ b/clients/client-service-catalog-appregistry/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-service-catalog-appregistry", "description": "AWS SDK for JavaScript Service Catalog Appregistry Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-service-catalog-appregistry", diff --git a/clients/client-service-catalog/CHANGELOG.md b/clients/client-service-catalog/CHANGELOG.md index e6171d4cd2712..0dbcd1a4e2710 100644 --- a/clients/client-service-catalog/CHANGELOG.md +++ b/clients/client-service-catalog/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-service-catalog + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-service-catalog diff --git a/clients/client-service-catalog/package.json b/clients/client-service-catalog/package.json index 059a05c004e66..6166b62908d13 100644 --- a/clients/client-service-catalog/package.json +++ b/clients/client-service-catalog/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-service-catalog", "description": "AWS SDK for JavaScript Service Catalog Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-service-catalog", diff --git a/clients/client-service-quotas/CHANGELOG.md b/clients/client-service-quotas/CHANGELOG.md index 1262f216ddd17..92de445c4253d 100644 --- a/clients/client-service-quotas/CHANGELOG.md +++ b/clients/client-service-quotas/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-service-quotas + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-service-quotas diff --git a/clients/client-service-quotas/package.json b/clients/client-service-quotas/package.json index b7ddddf7a6342..722cfbb2c7244 100644 --- a/clients/client-service-quotas/package.json +++ b/clients/client-service-quotas/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-service-quotas", "description": "AWS SDK for JavaScript Service Quotas Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-service-quotas", diff --git a/clients/client-servicediscovery/CHANGELOG.md b/clients/client-servicediscovery/CHANGELOG.md index 587fdccecb8ad..38f439aea7553 100644 --- a/clients/client-servicediscovery/CHANGELOG.md +++ b/clients/client-servicediscovery/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-servicediscovery + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-servicediscovery diff --git a/clients/client-servicediscovery/package.json b/clients/client-servicediscovery/package.json index b4f757f1eb202..7dc584c282761 100644 --- a/clients/client-servicediscovery/package.json +++ b/clients/client-servicediscovery/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-servicediscovery", "description": "AWS SDK for JavaScript Servicediscovery Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-servicediscovery", diff --git a/clients/client-ses/CHANGELOG.md b/clients/client-ses/CHANGELOG.md index 9cbe17a0ba03c..0674c990fbe44 100644 --- a/clients/client-ses/CHANGELOG.md +++ b/clients/client-ses/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-ses + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-ses diff --git a/clients/client-ses/package.json b/clients/client-ses/package.json index fde948b2bc019..7de8d397a5484 100644 --- a/clients/client-ses/package.json +++ b/clients/client-ses/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-ses", "description": "AWS SDK for JavaScript Ses Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-ses", diff --git a/clients/client-sesv2/CHANGELOG.md b/clients/client-sesv2/CHANGELOG.md index a0230062dc021..7166a3ba0d5a4 100644 --- a/clients/client-sesv2/CHANGELOG.md +++ b/clients/client-sesv2/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-sesv2 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-sesv2 diff --git a/clients/client-sesv2/package.json b/clients/client-sesv2/package.json index 354cbb511fa05..f0aebe66c5362 100644 --- a/clients/client-sesv2/package.json +++ b/clients/client-sesv2/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-sesv2", "description": "AWS SDK for JavaScript Sesv2 Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-sesv2", diff --git a/clients/client-sfn/CHANGELOG.md b/clients/client-sfn/CHANGELOG.md index be83559b2790d..f5c7ae43b926e 100644 --- a/clients/client-sfn/CHANGELOG.md +++ b/clients/client-sfn/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-sfn + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-sfn diff --git a/clients/client-sfn/package.json b/clients/client-sfn/package.json index edf131e55d74c..74b45ba2beb2f 100644 --- a/clients/client-sfn/package.json +++ b/clients/client-sfn/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-sfn", "description": "AWS SDK for JavaScript Sfn Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-sfn", diff --git a/clients/client-shield/CHANGELOG.md b/clients/client-shield/CHANGELOG.md index 5ba14989a6ccb..09cda753829a6 100644 --- a/clients/client-shield/CHANGELOG.md +++ b/clients/client-shield/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-shield + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-shield diff --git a/clients/client-shield/package.json b/clients/client-shield/package.json index 684a006bcefba..0ae213ef793f7 100644 --- a/clients/client-shield/package.json +++ b/clients/client-shield/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-shield", "description": "AWS SDK for JavaScript Shield Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-shield", diff --git a/clients/client-signer/CHANGELOG.md b/clients/client-signer/CHANGELOG.md index 5595f12b3e0ba..4d726cdc774f1 100644 --- a/clients/client-signer/CHANGELOG.md +++ b/clients/client-signer/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-signer + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-signer diff --git a/clients/client-signer/package.json b/clients/client-signer/package.json index 77ea47d05f553..6f606a6124168 100644 --- a/clients/client-signer/package.json +++ b/clients/client-signer/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-signer", "description": "AWS SDK for JavaScript Signer Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-signer", diff --git a/clients/client-simspaceweaver/CHANGELOG.md b/clients/client-simspaceweaver/CHANGELOG.md index 4bfcbe01b8cbe..bf716eda6210a 100644 --- a/clients/client-simspaceweaver/CHANGELOG.md +++ b/clients/client-simspaceweaver/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-simspaceweaver + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-simspaceweaver diff --git a/clients/client-simspaceweaver/package.json b/clients/client-simspaceweaver/package.json index 9794b7f6a215a..334b723930e15 100644 --- a/clients/client-simspaceweaver/package.json +++ b/clients/client-simspaceweaver/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-simspaceweaver", "description": "AWS SDK for JavaScript Simspaceweaver Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-simspaceweaver", diff --git a/clients/client-sms/CHANGELOG.md b/clients/client-sms/CHANGELOG.md index 3c821d585b557..4e88d99969294 100644 --- a/clients/client-sms/CHANGELOG.md +++ b/clients/client-sms/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-sms + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-sms diff --git a/clients/client-sms/package.json b/clients/client-sms/package.json index 3043fec8dd442..23ee42340e2cb 100644 --- a/clients/client-sms/package.json +++ b/clients/client-sms/package.json @@ -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.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-sms", diff --git a/clients/client-snow-device-management/CHANGELOG.md b/clients/client-snow-device-management/CHANGELOG.md index f72e7e05a5c60..20de1baeabfb0 100644 --- a/clients/client-snow-device-management/CHANGELOG.md +++ b/clients/client-snow-device-management/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-snow-device-management + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-snow-device-management diff --git a/clients/client-snow-device-management/package.json b/clients/client-snow-device-management/package.json index f34b66b1ddfc8..60646c1d6582c 100644 --- a/clients/client-snow-device-management/package.json +++ b/clients/client-snow-device-management/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-snow-device-management", "description": "AWS SDK for JavaScript Snow Device Management Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-snow-device-management", diff --git a/clients/client-snowball/CHANGELOG.md b/clients/client-snowball/CHANGELOG.md index 2416d5f36fe8f..8c2cfb207d8e4 100644 --- a/clients/client-snowball/CHANGELOG.md +++ b/clients/client-snowball/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-snowball + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-snowball diff --git a/clients/client-snowball/package.json b/clients/client-snowball/package.json index 9b1a44574e4ab..f0ff206f32572 100644 --- a/clients/client-snowball/package.json +++ b/clients/client-snowball/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-snowball", "description": "AWS SDK for JavaScript Snowball Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-snowball", diff --git a/clients/client-sns/CHANGELOG.md b/clients/client-sns/CHANGELOG.md index c041c7bbb46a2..78ad011c1d66a 100644 --- a/clients/client-sns/CHANGELOG.md +++ b/clients/client-sns/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-sns + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-sns diff --git a/clients/client-sns/package.json b/clients/client-sns/package.json index 675482f20b3c0..71c02535f2103 100644 --- a/clients/client-sns/package.json +++ b/clients/client-sns/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-sns", "description": "AWS SDK for JavaScript Sns Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-sns", diff --git a/clients/client-sqs/CHANGELOG.md b/clients/client-sqs/CHANGELOG.md index 9e492f1410b57..c972f40e021ac 100644 --- a/clients/client-sqs/CHANGELOG.md +++ b/clients/client-sqs/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-sqs + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-sqs diff --git a/clients/client-sqs/package.json b/clients/client-sqs/package.json index 210ab8d89fcb3..77abdf51bd929 100644 --- a/clients/client-sqs/package.json +++ b/clients/client-sqs/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-sqs", "description": "AWS SDK for JavaScript Sqs Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-sqs", diff --git a/clients/client-ssm-contacts/CHANGELOG.md b/clients/client-ssm-contacts/CHANGELOG.md index 19dec1fe4afd2..58bf92e8c27ff 100644 --- a/clients/client-ssm-contacts/CHANGELOG.md +++ b/clients/client-ssm-contacts/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-ssm-contacts + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-ssm-contacts diff --git a/clients/client-ssm-contacts/package.json b/clients/client-ssm-contacts/package.json index 214aa77998595..466ed718c467e 100644 --- a/clients/client-ssm-contacts/package.json +++ b/clients/client-ssm-contacts/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-ssm-contacts", "description": "AWS SDK for JavaScript Ssm Contacts Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-ssm-contacts", diff --git a/clients/client-ssm-incidents/CHANGELOG.md b/clients/client-ssm-incidents/CHANGELOG.md index 345e87ea82699..9a236caf3bb26 100644 --- a/clients/client-ssm-incidents/CHANGELOG.md +++ b/clients/client-ssm-incidents/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-ssm-incidents + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-ssm-incidents diff --git a/clients/client-ssm-incidents/package.json b/clients/client-ssm-incidents/package.json index 8a70316e84c2e..d73019ca13475 100644 --- a/clients/client-ssm-incidents/package.json +++ b/clients/client-ssm-incidents/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-ssm-incidents", "description": "AWS SDK for JavaScript Ssm Incidents Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-ssm-incidents", diff --git a/clients/client-ssm-quicksetup/CHANGELOG.md b/clients/client-ssm-quicksetup/CHANGELOG.md index d0e9780cbe322..9904b6e69df37 100644 --- a/clients/client-ssm-quicksetup/CHANGELOG.md +++ b/clients/client-ssm-quicksetup/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-ssm-quicksetup + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-ssm-quicksetup diff --git a/clients/client-ssm-quicksetup/package.json b/clients/client-ssm-quicksetup/package.json index 576d018d792b6..5123eeb6460ab 100644 --- a/clients/client-ssm-quicksetup/package.json +++ b/clients/client-ssm-quicksetup/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-ssm-quicksetup", "description": "AWS SDK for JavaScript Ssm Quicksetup Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/clients/client-ssm-sap/CHANGELOG.md b/clients/client-ssm-sap/CHANGELOG.md index e8529001bc710..b5d3b074c4731 100644 --- a/clients/client-ssm-sap/CHANGELOG.md +++ b/clients/client-ssm-sap/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-ssm-sap + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-ssm-sap diff --git a/clients/client-ssm-sap/package.json b/clients/client-ssm-sap/package.json index d7d4b74fd72df..b86a24c515925 100644 --- a/clients/client-ssm-sap/package.json +++ b/clients/client-ssm-sap/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-ssm-sap", "description": "AWS SDK for JavaScript Ssm Sap Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-ssm-sap", diff --git a/clients/client-ssm/CHANGELOG.md b/clients/client-ssm/CHANGELOG.md index 3d909fa0590ff..6d579b0d10b45 100644 --- a/clients/client-ssm/CHANGELOG.md +++ b/clients/client-ssm/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-ssm + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-ssm diff --git a/clients/client-ssm/package.json b/clients/client-ssm/package.json index b221d4cb5c393..0c3f6339ebf3a 100644 --- a/clients/client-ssm/package.json +++ b/clients/client-ssm/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-ssm", "description": "AWS SDK for JavaScript Ssm Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-ssm", diff --git a/clients/client-sso-admin/CHANGELOG.md b/clients/client-sso-admin/CHANGELOG.md index d74291cb274c0..fec74c6ab73bb 100644 --- a/clients/client-sso-admin/CHANGELOG.md +++ b/clients/client-sso-admin/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-sso-admin + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-sso-admin diff --git a/clients/client-sso-admin/package.json b/clients/client-sso-admin/package.json index 7dd7cdba45a75..aba2758eab6a2 100644 --- a/clients/client-sso-admin/package.json +++ b/clients/client-sso-admin/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-sso-admin", "description": "AWS SDK for JavaScript Sso Admin Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-sso-admin", diff --git a/clients/client-sso-oidc/CHANGELOG.md b/clients/client-sso-oidc/CHANGELOG.md index 8cdab1eee80a2..70bb93c7d6abe 100644 --- a/clients/client-sso-oidc/CHANGELOG.md +++ b/clients/client-sso-oidc/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-sso-oidc + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-sso-oidc diff --git a/clients/client-sso-oidc/package.json b/clients/client-sso-oidc/package.json index 775b03470148b..376234d7f25de 100644 --- a/clients/client-sso-oidc/package.json +++ b/clients/client-sso-oidc/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-sso-oidc", "description": "AWS SDK for JavaScript Sso Oidc Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-sso-oidc", diff --git a/clients/client-sso/CHANGELOG.md b/clients/client-sso/CHANGELOG.md index 5635f7821ec1d..596f6884d6642 100644 --- a/clients/client-sso/CHANGELOG.md +++ b/clients/client-sso/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-sso + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-sso diff --git a/clients/client-sso/package.json b/clients/client-sso/package.json index 583893c2b9226..9308d492f0ea6 100644 --- a/clients/client-sso/package.json +++ b/clients/client-sso/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-sso", "description": "AWS SDK for JavaScript Sso Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-sso", diff --git a/clients/client-storage-gateway/CHANGELOG.md b/clients/client-storage-gateway/CHANGELOG.md index 47bde9e14db56..f61592ebebdb2 100644 --- a/clients/client-storage-gateway/CHANGELOG.md +++ b/clients/client-storage-gateway/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-storage-gateway + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-storage-gateway diff --git a/clients/client-storage-gateway/package.json b/clients/client-storage-gateway/package.json index 3e9c102640dd1..c9d4f18210fef 100644 --- a/clients/client-storage-gateway/package.json +++ b/clients/client-storage-gateway/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-storage-gateway", "description": "AWS SDK for JavaScript Storage Gateway Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-storage-gateway", diff --git a/clients/client-sts/CHANGELOG.md b/clients/client-sts/CHANGELOG.md index aad149b8f88fe..cfdd6d43690fd 100644 --- a/clients/client-sts/CHANGELOG.md +++ b/clients/client-sts/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + + +### Bug Fixes + +* **credential-providers:** avoid sharing http2 requestHandler with inner STS ([#6389](https://github.com/aws/aws-sdk-js-v3/issues/6389)) ([d7b1610](https://github.com/aws/aws-sdk-js-v3/commit/d7b161064452a259ebb26502a14ef17159cb1f90)) + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-sts diff --git a/clients/client-sts/package.json b/clients/client-sts/package.json index ee3c731e5f2d7..e96aeb800fae1 100644 --- a/clients/client-sts/package.json +++ b/clients/client-sts/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-sts", "description": "AWS SDK for JavaScript Sts Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-sts", diff --git a/clients/client-supplychain/CHANGELOG.md b/clients/client-supplychain/CHANGELOG.md index 2a42e656bfa65..0a09bdeeb8870 100644 --- a/clients/client-supplychain/CHANGELOG.md +++ b/clients/client-supplychain/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-supplychain + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-supplychain diff --git a/clients/client-supplychain/package.json b/clients/client-supplychain/package.json index 526e2d995a320..a8c3e445f8ccf 100644 --- a/clients/client-supplychain/package.json +++ b/clients/client-supplychain/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-supplychain", "description": "AWS SDK for JavaScript Supplychain Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-supplychain", diff --git a/clients/client-support-app/CHANGELOG.md b/clients/client-support-app/CHANGELOG.md index 07954fe4121b9..7e0f4f7542af0 100644 --- a/clients/client-support-app/CHANGELOG.md +++ b/clients/client-support-app/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-support-app + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-support-app diff --git a/clients/client-support-app/package.json b/clients/client-support-app/package.json index f2af9c2e291c5..4a57ceff78929 100644 --- a/clients/client-support-app/package.json +++ b/clients/client-support-app/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-support-app", "description": "AWS SDK for JavaScript Support App Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-support-app", diff --git a/clients/client-support/CHANGELOG.md b/clients/client-support/CHANGELOG.md index 6d38a839df040..a9244396a3e13 100644 --- a/clients/client-support/CHANGELOG.md +++ b/clients/client-support/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-support + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-support diff --git a/clients/client-support/package.json b/clients/client-support/package.json index 2d0c74c0c7674..527edcea4175a 100644 --- a/clients/client-support/package.json +++ b/clients/client-support/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-support", "description": "AWS SDK for JavaScript Support Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-support", diff --git a/clients/client-swf/CHANGELOG.md b/clients/client-swf/CHANGELOG.md index d1c054e910fd3..7c131f47f5328 100644 --- a/clients/client-swf/CHANGELOG.md +++ b/clients/client-swf/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-swf + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-swf diff --git a/clients/client-swf/package.json b/clients/client-swf/package.json index 78b3072e24852..2c9ab5b5cb2e0 100644 --- a/clients/client-swf/package.json +++ b/clients/client-swf/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-swf", "description": "AWS SDK for JavaScript Swf Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-swf", diff --git a/clients/client-synthetics/CHANGELOG.md b/clients/client-synthetics/CHANGELOG.md index 492730e51519e..453ec9c0ae125 100644 --- a/clients/client-synthetics/CHANGELOG.md +++ b/clients/client-synthetics/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-synthetics + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-synthetics diff --git a/clients/client-synthetics/package.json b/clients/client-synthetics/package.json index 201cd5e433e51..57cea08b7e5f1 100644 --- a/clients/client-synthetics/package.json +++ b/clients/client-synthetics/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-synthetics", "description": "AWS SDK for JavaScript Synthetics Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-synthetics", diff --git a/clients/client-taxsettings/CHANGELOG.md b/clients/client-taxsettings/CHANGELOG.md index 06fcc8c7d48b6..6b46961a10adc 100644 --- a/clients/client-taxsettings/CHANGELOG.md +++ b/clients/client-taxsettings/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-taxsettings + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-taxsettings diff --git a/clients/client-taxsettings/package.json b/clients/client-taxsettings/package.json index 8550b967c68a6..7a57799ce4765 100644 --- a/clients/client-taxsettings/package.json +++ b/clients/client-taxsettings/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-taxsettings", "description": "AWS SDK for JavaScript Taxsettings Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/clients/client-textract/CHANGELOG.md b/clients/client-textract/CHANGELOG.md index 93cd84d44f9e6..685412176b082 100644 --- a/clients/client-textract/CHANGELOG.md +++ b/clients/client-textract/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-textract + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-textract diff --git a/clients/client-textract/package.json b/clients/client-textract/package.json index 958219854916a..ba53b88759cf5 100644 --- a/clients/client-textract/package.json +++ b/clients/client-textract/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-textract", "description": "AWS SDK for JavaScript Textract Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-textract", diff --git a/clients/client-timestream-influxdb/CHANGELOG.md b/clients/client-timestream-influxdb/CHANGELOG.md index ec8344a638c51..410bc1a7af01c 100644 --- a/clients/client-timestream-influxdb/CHANGELOG.md +++ b/clients/client-timestream-influxdb/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-timestream-influxdb + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-timestream-influxdb diff --git a/clients/client-timestream-influxdb/package.json b/clients/client-timestream-influxdb/package.json index 100af296b0643..548de285e0665 100644 --- a/clients/client-timestream-influxdb/package.json +++ b/clients/client-timestream-influxdb/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-timestream-influxdb", "description": "AWS SDK for JavaScript Timestream Influxdb Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/clients/client-timestream-query/CHANGELOG.md b/clients/client-timestream-query/CHANGELOG.md index 58db6427a3d0e..355939a3cb182 100644 --- a/clients/client-timestream-query/CHANGELOG.md +++ b/clients/client-timestream-query/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-timestream-query + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-timestream-query diff --git a/clients/client-timestream-query/package.json b/clients/client-timestream-query/package.json index 05c5ad20338ed..d690885a07f61 100644 --- a/clients/client-timestream-query/package.json +++ b/clients/client-timestream-query/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-timestream-query", "description": "AWS SDK for JavaScript Timestream Query Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-timestream-query", diff --git a/clients/client-timestream-write/CHANGELOG.md b/clients/client-timestream-write/CHANGELOG.md index 4e92e83248586..9317b4cc878d5 100644 --- a/clients/client-timestream-write/CHANGELOG.md +++ b/clients/client-timestream-write/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-timestream-write + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-timestream-write diff --git a/clients/client-timestream-write/package.json b/clients/client-timestream-write/package.json index f226f7da99e91..ef86f14429453 100644 --- a/clients/client-timestream-write/package.json +++ b/clients/client-timestream-write/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-timestream-write", "description": "AWS SDK for JavaScript Timestream Write Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-timestream-write", diff --git a/clients/client-tnb/CHANGELOG.md b/clients/client-tnb/CHANGELOG.md index 152617883d7b0..0d70b1b9de96a 100644 --- a/clients/client-tnb/CHANGELOG.md +++ b/clients/client-tnb/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-tnb + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-tnb diff --git a/clients/client-tnb/package.json b/clients/client-tnb/package.json index be167738bf6cd..ff77616b176e8 100644 --- a/clients/client-tnb/package.json +++ b/clients/client-tnb/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-tnb", "description": "AWS SDK for JavaScript Tnb Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-tnb", diff --git a/clients/client-transcribe-streaming/CHANGELOG.md b/clients/client-transcribe-streaming/CHANGELOG.md index 70133a8b3e8ce..de3d39b17d9bc 100644 --- a/clients/client-transcribe-streaming/CHANGELOG.md +++ b/clients/client-transcribe-streaming/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-transcribe-streaming + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-transcribe-streaming diff --git a/clients/client-transcribe-streaming/package.json b/clients/client-transcribe-streaming/package.json index 65c7f9f934798..b559428216a34 100644 --- a/clients/client-transcribe-streaming/package.json +++ b/clients/client-transcribe-streaming/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-transcribe-streaming", "description": "AWS SDK for JavaScript Transcribe Streaming Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-transcribe-streaming", diff --git a/clients/client-transcribe/CHANGELOG.md b/clients/client-transcribe/CHANGELOG.md index b6a29ae06bfee..43c166fbb20fb 100644 --- a/clients/client-transcribe/CHANGELOG.md +++ b/clients/client-transcribe/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-transcribe + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-transcribe diff --git a/clients/client-transcribe/package.json b/clients/client-transcribe/package.json index 522f6bc61a0ee..45bfb9aa86448 100644 --- a/clients/client-transcribe/package.json +++ b/clients/client-transcribe/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-transcribe", "description": "AWS SDK for JavaScript Transcribe Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-transcribe", diff --git a/clients/client-transfer/CHANGELOG.md b/clients/client-transfer/CHANGELOG.md index a5f0107811eed..fe5bdc1b4444a 100644 --- a/clients/client-transfer/CHANGELOG.md +++ b/clients/client-transfer/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-transfer + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-transfer diff --git a/clients/client-transfer/package.json b/clients/client-transfer/package.json index aa6af7dc398d2..068b758e15ae1 100644 --- a/clients/client-transfer/package.json +++ b/clients/client-transfer/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-transfer", "description": "AWS SDK for JavaScript Transfer Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-transfer", diff --git a/clients/client-translate/CHANGELOG.md b/clients/client-translate/CHANGELOG.md index a2f64690a6999..a00ee87cd53f3 100644 --- a/clients/client-translate/CHANGELOG.md +++ b/clients/client-translate/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-translate + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-translate diff --git a/clients/client-translate/package.json b/clients/client-translate/package.json index 34cd12d0b9bb1..d43e72dda4230 100644 --- a/clients/client-translate/package.json +++ b/clients/client-translate/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-translate", "description": "AWS SDK for JavaScript Translate Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-translate", diff --git a/clients/client-trustedadvisor/CHANGELOG.md b/clients/client-trustedadvisor/CHANGELOG.md index 40cf6e92bf83f..17d0c2e0988bf 100644 --- a/clients/client-trustedadvisor/CHANGELOG.md +++ b/clients/client-trustedadvisor/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-trustedadvisor + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-trustedadvisor diff --git a/clients/client-trustedadvisor/package.json b/clients/client-trustedadvisor/package.json index 8cc99fc89eab6..7e29d1197a461 100644 --- a/clients/client-trustedadvisor/package.json +++ b/clients/client-trustedadvisor/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-trustedadvisor", "description": "AWS SDK for JavaScript Trustedadvisor Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-trustedadvisor", diff --git a/clients/client-verifiedpermissions/CHANGELOG.md b/clients/client-verifiedpermissions/CHANGELOG.md index 2ea906481a089..dbda1398e1136 100644 --- a/clients/client-verifiedpermissions/CHANGELOG.md +++ b/clients/client-verifiedpermissions/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-verifiedpermissions + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-verifiedpermissions diff --git a/clients/client-verifiedpermissions/package.json b/clients/client-verifiedpermissions/package.json index 50ad00d73af70..2cfc0ca2bb5ac 100644 --- a/clients/client-verifiedpermissions/package.json +++ b/clients/client-verifiedpermissions/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-verifiedpermissions", "description": "AWS SDK for JavaScript Verifiedpermissions Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-verifiedpermissions", diff --git a/clients/client-voice-id/CHANGELOG.md b/clients/client-voice-id/CHANGELOG.md index 07d37ebf3b5a9..a7e1035605eb0 100644 --- a/clients/client-voice-id/CHANGELOG.md +++ b/clients/client-voice-id/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-voice-id + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-voice-id diff --git a/clients/client-voice-id/package.json b/clients/client-voice-id/package.json index 23821f72c7163..54f98f3a61eb2 100644 --- a/clients/client-voice-id/package.json +++ b/clients/client-voice-id/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-voice-id", "description": "AWS SDK for JavaScript Voice Id Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-voice-id", diff --git a/clients/client-vpc-lattice/CHANGELOG.md b/clients/client-vpc-lattice/CHANGELOG.md index 3756c2aa3b6ca..b5cf041ca6f59 100644 --- a/clients/client-vpc-lattice/CHANGELOG.md +++ b/clients/client-vpc-lattice/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-vpc-lattice + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-vpc-lattice diff --git a/clients/client-vpc-lattice/package.json b/clients/client-vpc-lattice/package.json index cc80fd79458ce..3e0aa78aee98c 100644 --- a/clients/client-vpc-lattice/package.json +++ b/clients/client-vpc-lattice/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-vpc-lattice", "description": "AWS SDK for JavaScript Vpc Lattice Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-vpc-lattice", diff --git a/clients/client-waf-regional/CHANGELOG.md b/clients/client-waf-regional/CHANGELOG.md index efa1101e4ccb5..1112056aa0e10 100644 --- a/clients/client-waf-regional/CHANGELOG.md +++ b/clients/client-waf-regional/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-waf-regional + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-waf-regional diff --git a/clients/client-waf-regional/package.json b/clients/client-waf-regional/package.json index d2668d79ce863..af2c63bb6664e 100644 --- a/clients/client-waf-regional/package.json +++ b/clients/client-waf-regional/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-waf-regional", "description": "AWS SDK for JavaScript Waf Regional Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-waf-regional", diff --git a/clients/client-waf/CHANGELOG.md b/clients/client-waf/CHANGELOG.md index deda5e3248c83..5e554539513ce 100644 --- a/clients/client-waf/CHANGELOG.md +++ b/clients/client-waf/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-waf + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-waf diff --git a/clients/client-waf/package.json b/clients/client-waf/package.json index af53974b62421..ab7a36dab0ddb 100644 --- a/clients/client-waf/package.json +++ b/clients/client-waf/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-waf", "description": "AWS SDK for JavaScript Waf Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-waf", diff --git a/clients/client-wafv2/CHANGELOG.md b/clients/client-wafv2/CHANGELOG.md index 3bad98334bd8f..bad5a72eed667 100644 --- a/clients/client-wafv2/CHANGELOG.md +++ b/clients/client-wafv2/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-wafv2 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-wafv2 diff --git a/clients/client-wafv2/package.json b/clients/client-wafv2/package.json index 6ed31f03cc259..d3ae5d49a49a4 100644 --- a/clients/client-wafv2/package.json +++ b/clients/client-wafv2/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-wafv2", "description": "AWS SDK for JavaScript Wafv2 Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-wafv2", diff --git a/clients/client-wellarchitected/CHANGELOG.md b/clients/client-wellarchitected/CHANGELOG.md index 9e345fcfc8b9d..260ac3c275b9a 100644 --- a/clients/client-wellarchitected/CHANGELOG.md +++ b/clients/client-wellarchitected/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-wellarchitected + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-wellarchitected diff --git a/clients/client-wellarchitected/package.json b/clients/client-wellarchitected/package.json index c8207848a8a60..c8d12b6acc742 100644 --- a/clients/client-wellarchitected/package.json +++ b/clients/client-wellarchitected/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-wellarchitected", "description": "AWS SDK for JavaScript Wellarchitected Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-wellarchitected", diff --git a/clients/client-wisdom/CHANGELOG.md b/clients/client-wisdom/CHANGELOG.md index aeb0013ffe0fa..18a93e362c1a0 100644 --- a/clients/client-wisdom/CHANGELOG.md +++ b/clients/client-wisdom/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-wisdom + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-wisdom diff --git a/clients/client-wisdom/package.json b/clients/client-wisdom/package.json index 74c42419c66a0..42d9b330ba9dc 100644 --- a/clients/client-wisdom/package.json +++ b/clients/client-wisdom/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-wisdom", "description": "AWS SDK for JavaScript Wisdom Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-wisdom", diff --git a/clients/client-workdocs/CHANGELOG.md b/clients/client-workdocs/CHANGELOG.md index ec88aa4a9f130..28a4a260620bc 100644 --- a/clients/client-workdocs/CHANGELOG.md +++ b/clients/client-workdocs/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-workdocs + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-workdocs diff --git a/clients/client-workdocs/package.json b/clients/client-workdocs/package.json index 1149c1d38d7d4..363428629dcaa 100644 --- a/clients/client-workdocs/package.json +++ b/clients/client-workdocs/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-workdocs", "description": "AWS SDK for JavaScript Workdocs Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-workdocs", diff --git a/clients/client-worklink/CHANGELOG.md b/clients/client-worklink/CHANGELOG.md index 5b549880f5ae8..84c7e6591fad2 100644 --- a/clients/client-worklink/CHANGELOG.md +++ b/clients/client-worklink/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-worklink + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-worklink diff --git a/clients/client-worklink/package.json b/clients/client-worklink/package.json index d434864bdf37c..d9e80877a3511 100644 --- a/clients/client-worklink/package.json +++ b/clients/client-worklink/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-worklink", "description": "AWS SDK for JavaScript Worklink Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-worklink", diff --git a/clients/client-workmail/CHANGELOG.md b/clients/client-workmail/CHANGELOG.md index 5e4020dc68f90..2e7cf1cd265bf 100644 --- a/clients/client-workmail/CHANGELOG.md +++ b/clients/client-workmail/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-workmail + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-workmail diff --git a/clients/client-workmail/package.json b/clients/client-workmail/package.json index b49f738e34349..be6d3de09e30c 100644 --- a/clients/client-workmail/package.json +++ b/clients/client-workmail/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-workmail", "description": "AWS SDK for JavaScript Workmail Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-workmail", diff --git a/clients/client-workmailmessageflow/CHANGELOG.md b/clients/client-workmailmessageflow/CHANGELOG.md index 11c2eae2ee6de..d132878aaed81 100644 --- a/clients/client-workmailmessageflow/CHANGELOG.md +++ b/clients/client-workmailmessageflow/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-workmailmessageflow + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-workmailmessageflow diff --git a/clients/client-workmailmessageflow/package.json b/clients/client-workmailmessageflow/package.json index 4ce74b388a546..d7e327248d43e 100644 --- a/clients/client-workmailmessageflow/package.json +++ b/clients/client-workmailmessageflow/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-workmailmessageflow", "description": "AWS SDK for JavaScript Workmailmessageflow Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-workmailmessageflow", diff --git a/clients/client-workspaces-thin-client/CHANGELOG.md b/clients/client-workspaces-thin-client/CHANGELOG.md index 0fb7e3fe749d7..4c79a97c65714 100644 --- a/clients/client-workspaces-thin-client/CHANGELOG.md +++ b/clients/client-workspaces-thin-client/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-workspaces-thin-client + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-workspaces-thin-client diff --git a/clients/client-workspaces-thin-client/package.json b/clients/client-workspaces-thin-client/package.json index 67655c0240ddb..f2bfad78a0a1f 100644 --- a/clients/client-workspaces-thin-client/package.json +++ b/clients/client-workspaces-thin-client/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-workspaces-thin-client", "description": "AWS SDK for JavaScript Workspaces Thin Client Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-workspaces-thin-client", diff --git a/clients/client-workspaces-web/CHANGELOG.md b/clients/client-workspaces-web/CHANGELOG.md index 59534e4b46254..2cf024b9f3efa 100644 --- a/clients/client-workspaces-web/CHANGELOG.md +++ b/clients/client-workspaces-web/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-workspaces-web + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-workspaces-web diff --git a/clients/client-workspaces-web/package.json b/clients/client-workspaces-web/package.json index 404b48b38f022..73a7825a5b555 100644 --- a/clients/client-workspaces-web/package.json +++ b/clients/client-workspaces-web/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-workspaces-web", "description": "AWS SDK for JavaScript Workspaces Web Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-workspaces-web", diff --git a/clients/client-workspaces/CHANGELOG.md b/clients/client-workspaces/CHANGELOG.md index fd5e0241566bc..c2f17a164579a 100644 --- a/clients/client-workspaces/CHANGELOG.md +++ b/clients/client-workspaces/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-workspaces + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-workspaces diff --git a/clients/client-workspaces/package.json b/clients/client-workspaces/package.json index ee84c2785b431..1fab85de0f3df 100644 --- a/clients/client-workspaces/package.json +++ b/clients/client-workspaces/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-workspaces", "description": "AWS SDK for JavaScript Workspaces Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-workspaces", diff --git a/clients/client-xray/CHANGELOG.md b/clients/client-xray/CHANGELOG.md index 4f8533edb13b8..8234592e3e221 100644 --- a/clients/client-xray/CHANGELOG.md +++ b/clients/client-xray/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/client-xray + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/client-xray diff --git a/clients/client-xray/package.json b/clients/client-xray/package.json index cbe7d38d520ca..91fae8765492f 100644 --- a/clients/client-xray/package.json +++ b/clients/client-xray/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-xray", "description": "AWS SDK for JavaScript Xray Client for Node.js, Browser and React Native", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-xray", diff --git a/lerna.json b/lerna.json index a500cd6b6e995..684324131e23f 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.631.0", + "version": "3.632.0", "npmClient": "yarn", "useWorkspaces": true, "command": { diff --git a/lib/lib-dynamodb/CHANGELOG.md b/lib/lib-dynamodb/CHANGELOG.md index 82a990402f7be..0c49a43cba0a8 100644 --- a/lib/lib-dynamodb/CHANGELOG.md +++ b/lib/lib-dynamodb/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + + +### Bug Fixes + +* **lib-dynamodb:** missing `@smithy/core` dependency in `@aws-sdk/lib-dynamodb` ([#6384](https://github.com/aws/aws-sdk-js-v3/issues/6384)) ([84fd78b](https://github.com/aws/aws-sdk-js-v3/commit/84fd78ba51b3362b48ea983c263dd368b88f4287)) + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/lib-dynamodb diff --git a/lib/lib-dynamodb/package.json b/lib/lib-dynamodb/package.json index 7e43fdf21a1d5..9ce321eb4a70c 100644 --- a/lib/lib-dynamodb/package.json +++ b/lib/lib-dynamodb/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/lib-dynamodb", - "version": "3.631.0", + "version": "3.632.0", "description": "The document client simplifies working with items in Amazon DynamoDB by abstracting away the notion of attribute values.", "main": "./dist-cjs/index.js", "module": "./dist-es/index.js", diff --git a/lib/lib-storage/CHANGELOG.md b/lib/lib-storage/CHANGELOG.md index 2a07584337c22..6c7957117cefa 100644 --- a/lib/lib-storage/CHANGELOG.md +++ b/lib/lib-storage/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/lib-storage + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/lib-storage diff --git a/lib/lib-storage/package.json b/lib/lib-storage/package.json index 1280e1bcef806..7870e8b80338b 100644 --- a/lib/lib-storage/package.json +++ b/lib/lib-storage/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/lib-storage", - "version": "3.631.0", + "version": "3.632.0", "description": "Storage higher order operation", "main": "./dist-cjs/index.js", "module": "./dist-es/index.js", diff --git a/packages/credential-provider-cognito-identity/CHANGELOG.md b/packages/credential-provider-cognito-identity/CHANGELOG.md index 95365db87ebc6..df271db2b1e14 100644 --- a/packages/credential-provider-cognito-identity/CHANGELOG.md +++ b/packages/credential-provider-cognito-identity/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/credential-provider-cognito-identity + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/credential-provider-cognito-identity diff --git a/packages/credential-provider-cognito-identity/package.json b/packages/credential-provider-cognito-identity/package.json index fa3054c31ce21..950c8a41a3731 100644 --- a/packages/credential-provider-cognito-identity/package.json +++ b/packages/credential-provider-cognito-identity/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/credential-provider-cognito-identity", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline credential-provider-cognito-identity", diff --git a/packages/credential-provider-ini/CHANGELOG.md b/packages/credential-provider-ini/CHANGELOG.md index 89ce7fbd44e03..70ff21729a77a 100644 --- a/packages/credential-provider-ini/CHANGELOG.md +++ b/packages/credential-provider-ini/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/credential-provider-ini + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/credential-provider-ini diff --git a/packages/credential-provider-ini/package.json b/packages/credential-provider-ini/package.json index 1b0aba98c8c8e..2dfa1702fc0de 100644 --- a/packages/credential-provider-ini/package.json +++ b/packages/credential-provider-ini/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/credential-provider-ini", - "version": "3.631.0", + "version": "3.632.0", "description": "AWS credential provider that sources credentials from ~/.aws/credentials and ~/.aws/config", "main": "./dist-cjs/index.js", "module": "./dist-es/index.js", diff --git a/packages/credential-provider-node/CHANGELOG.md b/packages/credential-provider-node/CHANGELOG.md index 1df29ecf8a4b2..224659a46ab2a 100644 --- a/packages/credential-provider-node/CHANGELOG.md +++ b/packages/credential-provider-node/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/credential-provider-node + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/credential-provider-node diff --git a/packages/credential-provider-node/package.json b/packages/credential-provider-node/package.json index 717798d5f003b..28b1f49ab6a78 100644 --- a/packages/credential-provider-node/package.json +++ b/packages/credential-provider-node/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/credential-provider-node", - "version": "3.631.0", + "version": "3.632.0", "description": "AWS credential provider that sources credentials from a Node.JS environment. ", "engines": { "node": ">=16.0.0" diff --git a/packages/credential-provider-sso/CHANGELOG.md b/packages/credential-provider-sso/CHANGELOG.md index 076f1746b2f0d..853bbbacdc9e7 100644 --- a/packages/credential-provider-sso/CHANGELOG.md +++ b/packages/credential-provider-sso/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/credential-provider-sso + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/credential-provider-sso diff --git a/packages/credential-provider-sso/package.json b/packages/credential-provider-sso/package.json index 9d3262848fa7d..c9582ac600060 100644 --- a/packages/credential-provider-sso/package.json +++ b/packages/credential-provider-sso/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/credential-provider-sso", - "version": "3.631.0", + "version": "3.632.0", "description": "AWS credential provider that exchanges a resolved SSO login token file for temporary AWS credentials", "main": "./dist-cjs/index.js", "module": "./dist-es/index.js", diff --git a/packages/credential-providers/CHANGELOG.md b/packages/credential-providers/CHANGELOG.md index 318f4fa05f827..61c5889afe82a 100644 --- a/packages/credential-providers/CHANGELOG.md +++ b/packages/credential-providers/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/credential-providers + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/credential-providers diff --git a/packages/credential-providers/package.json b/packages/credential-providers/package.json index 844d98835996b..095d9e809b1ed 100644 --- a/packages/credential-providers/package.json +++ b/packages/credential-providers/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/credential-providers", - "version": "3.631.0", + "version": "3.632.0", "description": "A collection of credential providers, without requiring service clients like STS, Cognito", "main": "./dist-cjs/index.js", "module": "./dist-es/index.js", diff --git a/packages/ec2-metadata-service/CHANGELOG.md b/packages/ec2-metadata-service/CHANGELOG.md index b1496dfde3443..f604cebf7796a 100644 --- a/packages/ec2-metadata-service/CHANGELOG.md +++ b/packages/ec2-metadata-service/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/ec2-metadata-service + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/ec2-metadata-service diff --git a/packages/ec2-metadata-service/package.json b/packages/ec2-metadata-service/package.json index 8539a69ed90d2..b2d1bfc6d0cb0 100644 --- a/packages/ec2-metadata-service/package.json +++ b/packages/ec2-metadata-service/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/ec2-metadata-service", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline ec2-metadata-service", diff --git a/packages/karma-credential-loader/CHANGELOG.md b/packages/karma-credential-loader/CHANGELOG.md index 13f0beffc561e..768632e9cfc15 100644 --- a/packages/karma-credential-loader/CHANGELOG.md +++ b/packages/karma-credential-loader/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/karma-credential-loader + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/karma-credential-loader diff --git a/packages/karma-credential-loader/package.json b/packages/karma-credential-loader/package.json index ba6a847f455d8..783436139b4bd 100644 --- a/packages/karma-credential-loader/package.json +++ b/packages/karma-credential-loader/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/karma-credential-loader", - "version": "3.631.0", + "version": "3.632.0", "private": true, "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", diff --git a/packages/middleware-sdk-s3-control/CHANGELOG.md b/packages/middleware-sdk-s3-control/CHANGELOG.md index 310e53693486d..7c7f736003e62 100644 --- a/packages/middleware-sdk-s3-control/CHANGELOG.md +++ b/packages/middleware-sdk-s3-control/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/middleware-sdk-s3-control + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/middleware-sdk-s3-control diff --git a/packages/middleware-sdk-s3-control/package.json b/packages/middleware-sdk-s3-control/package.json index bdbec41d75c8d..c646a6f5cc29c 100644 --- a/packages/middleware-sdk-s3-control/package.json +++ b/packages/middleware-sdk-s3-control/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/middleware-sdk-s3-control", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline middleware-sdk-s3-control", diff --git a/packages/middleware-user-agent/CHANGELOG.md b/packages/middleware-user-agent/CHANGELOG.md index e1d99100725ca..b0bd18808b52b 100644 --- a/packages/middleware-user-agent/CHANGELOG.md +++ b/packages/middleware-user-agent/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/middleware-user-agent + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/middleware-user-agent diff --git a/packages/middleware-user-agent/package.json b/packages/middleware-user-agent/package.json index 06bf805642f26..97408545caef9 100644 --- a/packages/middleware-user-agent/package.json +++ b/packages/middleware-user-agent/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/middleware-user-agent", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline middleware-user-agent", diff --git a/packages/polly-request-presigner/CHANGELOG.md b/packages/polly-request-presigner/CHANGELOG.md index 93caae64443ae..c8620d071adb3 100644 --- a/packages/polly-request-presigner/CHANGELOG.md +++ b/packages/polly-request-presigner/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/polly-request-presigner + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/polly-request-presigner diff --git a/packages/polly-request-presigner/package.json b/packages/polly-request-presigner/package.json index eb9c90f8559d1..b250d11467613 100644 --- a/packages/polly-request-presigner/package.json +++ b/packages/polly-request-presigner/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/polly-request-presigner", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline polly-request-presigner", diff --git a/packages/rds-signer/CHANGELOG.md b/packages/rds-signer/CHANGELOG.md index 24e7f97d74238..ee7fdbcce6869 100644 --- a/packages/rds-signer/CHANGELOG.md +++ b/packages/rds-signer/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/rds-signer + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/rds-signer diff --git a/packages/rds-signer/package.json b/packages/rds-signer/package.json index 7f1975f0660c8..8ec00990ce457 100644 --- a/packages/rds-signer/package.json +++ b/packages/rds-signer/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/rds-signer", - "version": "3.631.0", + "version": "3.632.0", "description": "RDS utility for generating a password that can be used for IAM authentication to an RDS DB.", "main": "./dist-cjs/index.js", "module": "./dist-es/index.js", diff --git a/packages/s3-presigned-post/CHANGELOG.md b/packages/s3-presigned-post/CHANGELOG.md index be41c89a7a7a6..23944d1e545cb 100644 --- a/packages/s3-presigned-post/CHANGELOG.md +++ b/packages/s3-presigned-post/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/s3-presigned-post + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/s3-presigned-post diff --git a/packages/s3-presigned-post/package.json b/packages/s3-presigned-post/package.json index 8d8d04598e47e..5e334ffd1008a 100644 --- a/packages/s3-presigned-post/package.json +++ b/packages/s3-presigned-post/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/s3-presigned-post", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline s3-presigned-post", diff --git a/packages/s3-request-presigner/CHANGELOG.md b/packages/s3-request-presigner/CHANGELOG.md index a6e59a00d77a1..26dc08e0fd9d0 100644 --- a/packages/s3-request-presigner/CHANGELOG.md +++ b/packages/s3-request-presigner/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/s3-request-presigner + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/s3-request-presigner diff --git a/packages/s3-request-presigner/package.json b/packages/s3-request-presigner/package.json index 922fc42e09fab..d2c25f0acad58 100644 --- a/packages/s3-request-presigner/package.json +++ b/packages/s3-request-presigner/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/s3-request-presigner", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline s3-request-presigner", diff --git a/packages/util-dynamodb/CHANGELOG.md b/packages/util-dynamodb/CHANGELOG.md index 44f4d49898b5f..cda20ce6446f9 100644 --- a/packages/util-dynamodb/CHANGELOG.md +++ b/packages/util-dynamodb/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/util-dynamodb + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/util-dynamodb diff --git a/packages/util-dynamodb/package.json b/packages/util-dynamodb/package.json index 3dc12840568de..18743878dc6d6 100644 --- a/packages/util-dynamodb/package.json +++ b/packages/util-dynamodb/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/util-dynamodb", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline util-dynamodb", diff --git a/packages/util-endpoints/CHANGELOG.md b/packages/util-endpoints/CHANGELOG.md index 41833455b3cd1..353968ad17694 100644 --- a/packages/util-endpoints/CHANGELOG.md +++ b/packages/util-endpoints/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + + +### Bug Fixes + +* **util-endpoints:** parseArn when resourcePath contains both delimiters ([#6387](https://github.com/aws/aws-sdk-js-v3/issues/6387)) ([63cb133](https://github.com/aws/aws-sdk-js-v3/commit/63cb133fcfedaf307e06c5f519aea1b58cdeb77b)) + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) diff --git a/packages/util-endpoints/package.json b/packages/util-endpoints/package.json index 4d865d0181b87..ecffaa8336877 100644 --- a/packages/util-endpoints/package.json +++ b/packages/util-endpoints/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/util-endpoints", - "version": "3.631.0", + "version": "3.632.0", "description": "Utilities to help with endpoint resolution", "main": "./dist-cjs/index.js", "module": "./dist-es/index.js", diff --git a/private/aws-client-api-test/CHANGELOG.md b/private/aws-client-api-test/CHANGELOG.md index 25d9eb932b9b4..de5d82d5a23ca 100644 --- a/private/aws-client-api-test/CHANGELOG.md +++ b/private/aws-client-api-test/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/aws-client-api-test + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/aws-client-api-test diff --git a/private/aws-client-api-test/package.json b/private/aws-client-api-test/package.json index 00d9937c06bea..4a94fa171e1f2 100644 --- a/private/aws-client-api-test/package.json +++ b/private/aws-client-api-test/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/aws-client-api-test", "description": "Test suite for client interface stability", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/private/aws-client-retry-test/CHANGELOG.md b/private/aws-client-retry-test/CHANGELOG.md index d7fe54af68bc1..3fb0af612be6b 100644 --- a/private/aws-client-retry-test/CHANGELOG.md +++ b/private/aws-client-retry-test/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/aws-client-retry-test + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/aws-client-retry-test diff --git a/private/aws-client-retry-test/package.json b/private/aws-client-retry-test/package.json index 26b713a5b3804..00dba5fa86ae7 100644 --- a/private/aws-client-retry-test/package.json +++ b/private/aws-client-retry-test/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/aws-client-retry-test", "description": "Integration test suite for middleware-retry", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/private/aws-echo-service/CHANGELOG.md b/private/aws-echo-service/CHANGELOG.md index c9b79e653b909..803841442a2c4 100644 --- a/private/aws-echo-service/CHANGELOG.md +++ b/private/aws-echo-service/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/aws-echo-service + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/aws-echo-service diff --git a/private/aws-echo-service/package.json b/private/aws-echo-service/package.json index 0a6f9ef53534b..22dd3625a6903 100644 --- a/private/aws-echo-service/package.json +++ b/private/aws-echo-service/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/aws-echo-service", "description": "@aws-sdk/aws-echo-service client", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/private/aws-middleware-test/CHANGELOG.md b/private/aws-middleware-test/CHANGELOG.md index 528afe8ad468c..5ad50a2e656bf 100644 --- a/private/aws-middleware-test/CHANGELOG.md +++ b/private/aws-middleware-test/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/aws-middleware-test + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/aws-middleware-test diff --git a/private/aws-middleware-test/package.json b/private/aws-middleware-test/package.json index d39c0f477e1a0..1e3f6da4c2581 100644 --- a/private/aws-middleware-test/package.json +++ b/private/aws-middleware-test/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/aws-middleware-test", "description": "Integration test suite for AWS middleware", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "exit 0", "build:cjs": "exit 0", diff --git a/private/aws-protocoltests-ec2/CHANGELOG.md b/private/aws-protocoltests-ec2/CHANGELOG.md index 6530a5f3dc05d..e1af327da635f 100644 --- a/private/aws-protocoltests-ec2/CHANGELOG.md +++ b/private/aws-protocoltests-ec2/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/aws-protocoltests-ec2 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/aws-protocoltests-ec2 diff --git a/private/aws-protocoltests-ec2/package.json b/private/aws-protocoltests-ec2/package.json index 7fafbaaae684a..898018289c89c 100644 --- a/private/aws-protocoltests-ec2/package.json +++ b/private/aws-protocoltests-ec2/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/aws-protocoltests-ec2", "description": "@aws-sdk/aws-protocoltests-ec2 client", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/private/aws-protocoltests-json-10/CHANGELOG.md b/private/aws-protocoltests-json-10/CHANGELOG.md index d319d5efe2714..51d8df2ea11ae 100644 --- a/private/aws-protocoltests-json-10/CHANGELOG.md +++ b/private/aws-protocoltests-json-10/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/aws-protocoltests-json-10 + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/aws-protocoltests-json-10 diff --git a/private/aws-protocoltests-json-10/package.json b/private/aws-protocoltests-json-10/package.json index 7992e89971ade..299389b4075f3 100644 --- a/private/aws-protocoltests-json-10/package.json +++ b/private/aws-protocoltests-json-10/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/aws-protocoltests-json-10", "description": "@aws-sdk/aws-protocoltests-json-10 client", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/private/aws-protocoltests-json-machinelearning/CHANGELOG.md b/private/aws-protocoltests-json-machinelearning/CHANGELOG.md index 76a296d7be882..1cc51d858b1ff 100644 --- a/private/aws-protocoltests-json-machinelearning/CHANGELOG.md +++ b/private/aws-protocoltests-json-machinelearning/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/aws-protocoltests-json-machinelearning + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/aws-protocoltests-json-machinelearning diff --git a/private/aws-protocoltests-json-machinelearning/package.json b/private/aws-protocoltests-json-machinelearning/package.json index 0ef1a25f42243..e7e6c0cc8635a 100644 --- a/private/aws-protocoltests-json-machinelearning/package.json +++ b/private/aws-protocoltests-json-machinelearning/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/aws-protocoltests-json-machinelearning", "description": "@aws-sdk/aws-protocoltests-json-machinelearning client", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/private/aws-protocoltests-json/CHANGELOG.md b/private/aws-protocoltests-json/CHANGELOG.md index 7d9e105e95f07..d95d15647d89e 100644 --- a/private/aws-protocoltests-json/CHANGELOG.md +++ b/private/aws-protocoltests-json/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/aws-protocoltests-json + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/aws-protocoltests-json diff --git a/private/aws-protocoltests-json/package.json b/private/aws-protocoltests-json/package.json index 4c68a26b29c7c..1d369204e5321 100644 --- a/private/aws-protocoltests-json/package.json +++ b/private/aws-protocoltests-json/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/aws-protocoltests-json", "description": "@aws-sdk/aws-protocoltests-json client", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/private/aws-protocoltests-query/CHANGELOG.md b/private/aws-protocoltests-query/CHANGELOG.md index ab9913312356e..9c3ae3cb09718 100644 --- a/private/aws-protocoltests-query/CHANGELOG.md +++ b/private/aws-protocoltests-query/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/aws-protocoltests-query + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/aws-protocoltests-query diff --git a/private/aws-protocoltests-query/package.json b/private/aws-protocoltests-query/package.json index 151be3c139562..381ebe86ee1a8 100644 --- a/private/aws-protocoltests-query/package.json +++ b/private/aws-protocoltests-query/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/aws-protocoltests-query", "description": "@aws-sdk/aws-protocoltests-query client", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/private/aws-protocoltests-restjson-apigateway/CHANGELOG.md b/private/aws-protocoltests-restjson-apigateway/CHANGELOG.md index 68df81c910111..35606ee44a548 100644 --- a/private/aws-protocoltests-restjson-apigateway/CHANGELOG.md +++ b/private/aws-protocoltests-restjson-apigateway/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/aws-protocoltests-restjson-apigateway + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/aws-protocoltests-restjson-apigateway diff --git a/private/aws-protocoltests-restjson-apigateway/package.json b/private/aws-protocoltests-restjson-apigateway/package.json index 65291de30a096..c69ff3994df74 100644 --- a/private/aws-protocoltests-restjson-apigateway/package.json +++ b/private/aws-protocoltests-restjson-apigateway/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/aws-protocoltests-restjson-apigateway", "description": "@aws-sdk/aws-protocoltests-restjson-apigateway client", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/private/aws-protocoltests-restjson-glacier/CHANGELOG.md b/private/aws-protocoltests-restjson-glacier/CHANGELOG.md index d887f4a0cbc01..30cde0f15b19d 100644 --- a/private/aws-protocoltests-restjson-glacier/CHANGELOG.md +++ b/private/aws-protocoltests-restjson-glacier/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/aws-protocoltests-restjson-glacier + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/aws-protocoltests-restjson-glacier diff --git a/private/aws-protocoltests-restjson-glacier/package.json b/private/aws-protocoltests-restjson-glacier/package.json index 737e1620daed0..c49d6169e1a25 100644 --- a/private/aws-protocoltests-restjson-glacier/package.json +++ b/private/aws-protocoltests-restjson-glacier/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/aws-protocoltests-restjson-glacier", "description": "@aws-sdk/aws-protocoltests-restjson-glacier client", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/private/aws-protocoltests-restjson/CHANGELOG.md b/private/aws-protocoltests-restjson/CHANGELOG.md index c75355fa1fa66..26fa9386c294d 100644 --- a/private/aws-protocoltests-restjson/CHANGELOG.md +++ b/private/aws-protocoltests-restjson/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/aws-protocoltests-restjson + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/aws-protocoltests-restjson diff --git a/private/aws-protocoltests-restjson/package.json b/private/aws-protocoltests-restjson/package.json index 01ad8c25a3787..f4ac3b61e2814 100644 --- a/private/aws-protocoltests-restjson/package.json +++ b/private/aws-protocoltests-restjson/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/aws-protocoltests-restjson", "description": "@aws-sdk/aws-protocoltests-restjson client", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/private/aws-protocoltests-restxml/CHANGELOG.md b/private/aws-protocoltests-restxml/CHANGELOG.md index a7d7fc4acccbb..5c416aaed9303 100644 --- a/private/aws-protocoltests-restxml/CHANGELOG.md +++ b/private/aws-protocoltests-restxml/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/aws-protocoltests-restxml + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/aws-protocoltests-restxml diff --git a/private/aws-protocoltests-restxml/package.json b/private/aws-protocoltests-restxml/package.json index 958cc4a8c91fd..5e634323ae27c 100644 --- a/private/aws-protocoltests-restxml/package.json +++ b/private/aws-protocoltests-restxml/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/aws-protocoltests-restxml", "description": "@aws-sdk/aws-protocoltests-restxml client", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/private/aws-util-test/CHANGELOG.md b/private/aws-util-test/CHANGELOG.md index eb336d092baa6..44fcbbb14d23d 100644 --- a/private/aws-util-test/CHANGELOG.md +++ b/private/aws-util-test/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/aws-util-test + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/aws-util-test diff --git a/private/aws-util-test/package.json b/private/aws-util-test/package.json index 71f93a73772c7..ca2ba97e172be 100644 --- a/private/aws-util-test/package.json +++ b/private/aws-util-test/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/aws-util-test", - "version": "3.631.0", + "version": "3.632.0", "private": true, "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:types'", diff --git a/private/weather-experimental-identity-and-auth/CHANGELOG.md b/private/weather-experimental-identity-and-auth/CHANGELOG.md index 28530071a6bc1..f38e5a8c7f29e 100644 --- a/private/weather-experimental-identity-and-auth/CHANGELOG.md +++ b/private/weather-experimental-identity-and-auth/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/weather-experimental-identity-and-auth + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/weather-experimental-identity-and-auth diff --git a/private/weather-experimental-identity-and-auth/package.json b/private/weather-experimental-identity-and-auth/package.json index e64afb297863d..db4706975d2f1 100644 --- a/private/weather-experimental-identity-and-auth/package.json +++ b/private/weather-experimental-identity-and-auth/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/weather-experimental-identity-and-auth", "description": "@aws-sdk/weather-experimental-identity-and-auth client", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/private/weather-legacy-auth/CHANGELOG.md b/private/weather-legacy-auth/CHANGELOG.md index 22954e451ebfb..e2ae4a4363729 100644 --- a/private/weather-legacy-auth/CHANGELOG.md +++ b/private/weather-legacy-auth/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/weather-legacy-auth + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/weather-legacy-auth diff --git a/private/weather-legacy-auth/package.json b/private/weather-legacy-auth/package.json index c5c3815ef2bbb..f909750753987 100644 --- a/private/weather-legacy-auth/package.json +++ b/private/weather-legacy-auth/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/weather-legacy-auth", "description": "@aws-sdk/weather-legacy-auth client", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/private/weather/CHANGELOG.md b/private/weather/CHANGELOG.md index 1a51c4719adbf..1d97338c70cd4 100644 --- a/private/weather/CHANGELOG.md +++ b/private/weather/CHANGELOG.md @@ -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.632.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.631.0...v3.632.0) (2024-08-15) + +**Note:** Version bump only for package @aws-sdk/weather + + + + + # [3.631.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.630.0...v3.631.0) (2024-08-14) **Note:** Version bump only for package @aws-sdk/weather diff --git a/private/weather/package.json b/private/weather/package.json index 62a7d1ecb60aa..6ad688a98166d 100644 --- a/private/weather/package.json +++ b/private/weather/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/weather", "description": "@aws-sdk/weather client", - "version": "3.631.0", + "version": "3.632.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json",